This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > @ images:watch /pipeline/source | |
| > nodemon --watch ./src/images --ext gif,png,jpg -x "npm run images:build" --legacy-watch | |
| fs.js:651 | |
| var r = binding.read(fd, buffer, offset, length, position); | |
| ^ | |
| Error: EBADF: bad file descriptor, read | |
| at Error (native) | |
| at Object.fs.readSync (fs.js:651:19) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "_id": "delicious", | |
| "selectors": [ | |
| { | |
| "delay": "", | |
| "id": "per_page_bookmarks_enumeration", | |
| "multiple": false, | |
| "parentSelectors": [ | |
| "_root" | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import json | |
| import urllib | |
| bookmark_file = '<bookmark_file_from_delicious>' | |
| pinboard_token = '<your pinboard token>' | |
| def process_tags(csv_tags): | |
| json_tags = json.loads('{ "tags": %s }' % csv_tags) | |
| json_tags = json_tags['tags'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: kops/v1alpha2 | |
| kind: Cluster | |
| metadata: | |
| name: kops.k8s-int-kops.skyscrape.rs | |
| spec: | |
| api: | |
| loadBalancer: | |
| type: Internal | |
| subnets: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| zookeeper: | |
| image: "confluentinc/cp-zookeeper:4.1.0" | |
| ports: | |
| - "2181:2181" | |
| expose: | |
| - "2181" | |
| environment: | |
| - ZOOKEEPER_CLIENT_PORT=2181 |
OlderNewer