I hereby claim:
- I am vinceprignano on github.
- I am vinceprignano (https://keybase.io/vinceprignano) on keybase.
- I have a public key whose fingerprint is 31FB 55CB 2378 AE6C 2701 0FB6 5B29 B751 34C1 612C
To claim this, I am signing this object:
| #!/bin/bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| TAILSCALE_REPOSITORY="tailscale/tailscale-synology" | |
| DSM_ARCH="x86_64" | |
| DSM_VERSION="dsm7" |
| --- | |
| apiVersion: apiextensions.k8s.io/v1beta1 | |
| kind: CustomResourceDefinition | |
| metadata: | |
| creationTimestamp: null | |
| name: machines.cluster.k8s.io | |
| spec: | |
| group: cluster.k8s.io | |
| names: |
| --- | |
| apiVersion: apiextensions.k8s.io/v1beta1 | |
| kind: CustomResourceDefinition | |
| metadata: | |
| creationTimestamp: null | |
| name: clusters.cluster.k8s.io | |
| spec: | |
| group: cluster.k8s.io | |
| names: |
| Name: clusters.cluster.k8s.io | |
| Namespace: | |
| Labels: <none> | |
| Annotations: kubectl.kubernetes.io/last-applied-configuration: | |
| {"apiVersion":"apiextensions.k8s.io/v1beta1","kind":"CustomResourceDefinition","metadata":{"annotations":{},"creationTimestamp":null,"name... | |
| API Version: apiextensions.k8s.io/v1beta1 | |
| Kind: CustomResourceDefinition | |
| Metadata: | |
| Creation Timestamp: 2019-06-21T16:15:56Z | |
| Generation: 1 |
| Name: clusters.cluster.k8s.io | |
| Namespace: | |
| Labels: <none> | |
| Annotations: kubectl.kubernetes.io/last-applied-configuration: | |
| {"apiVersion":"apiextensions.k8s.io/v1beta1","kind":"CustomResourceDefinition","metadata":{"annotations":{},"creationTimestamp":null,"name... | |
| API Version: apiextensions.k8s.io/v1beta1 | |
| Kind: CustomResourceDefinition | |
| Metadata: | |
| Creation Timestamp: 2019-06-21T16:03:37Z | |
| Generation: 1 |
| Name: clusters.cluster.k8s.io | |
| Namespace: | |
| Labels: controller-tools.k8s.io=1.0 | |
| Annotations: kubectl.kubernetes.io/last-applied-configuration: | |
| {"apiVersion":"apiextensions.k8s.io/v1beta1","kind":"CustomResourceDefinition","metadata":{"annotations":{},"creationTimestamp":null,"labe... | |
| API Version: apiextensions.k8s.io/v1beta1 | |
| Kind: CustomResourceDefinition | |
| Metadata: | |
| Creation Timestamp: 2019-06-21T16:04:36Z | |
| Generation: 1 |
I hereby claim:
To claim this, I am signing this object:
| upstream app { | |
| server unix:/tmp/unicorn.sock fail_timeout=0; | |
| } | |
| server { | |
| listen 3000; | |
| # Application root, as defined previously | |
| root /write_latex/app; | |
| access_log off; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #include <iostream> | |
| #include <string> | |
| #include <chrono> | |
| #include <thread> | |
| #include <cstdlib> | |
| const int width = 158; // Width of terminal window | |
| const int flipsPerLine = 5; // No. of columns changed per line | |
| const int millisecondsOfSleep = 50; // Delay between lines in millisecond | |
| int main() { | |
| srand(time_t(NULL)); |