###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
| // Run this in the devtools console, inside the linkedin friend request list | |
| // Make sure to have all the requests displayed in the screen | |
| // If something goes funky, increase the sleep time. | |
| itens = [] | |
| document.querySelectorAll('.invitation-card__action-btn.artdeco-button--secondary').forEach(item => itens.push(item)) | |
| sleep = ms => new Promise(resolve => setTimeout(resolve, ms)) | |
| for (item of itens) { | |
| item.click() |
| { | |
| "extends": [ | |
| "airbnb", | |
| "eslint:recommended", | |
| "plugin:import/errors", | |
| "plugin:import/warnings" | |
| ], | |
| "plugins": [ | |
| "react" | |
| ], |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
Picking the right architecture = Picking the right battles + Managing trade-offs
Your task: write a script to get a nice CSV file of natural gas prices.
Please publish your results in a git repo or a gist. Please include both script and your resulting data -- so the CSV files should be stored in the repo too!
More detail:
| # zsh | |
| EMOJI=(๐ฉ ๐ฆ ๐ ๐ ๐จ ๐ ๐ญ ๐ฝ โ๏ธ ๐ฌ ๐ ๐ท ๐ผ ๐ถ ๐ธ ๐ง ๐ณ ๐ ๐ฃ ๐ป ๐ฎ ๐ฐ ๐ ๐พ ๐ ๐ช ๐ ๐ ๐ ๐ ๐ ) | |
| function random_emoji { | |
| echo -n "$EMOJI[$RANDOM%$#EMOJI+1]" | |
| } | |
| PROMPT="$(random_emoji) " | |
| RPROMPT='%c' |
| { | |
| "name": "my-app", | |
| "version": "1.0.0", | |
| "description": "My test app", | |
| "main": "src/js/index.js", | |
| "scripts": { | |
| "jshint:dist": "jshint src/js/*.js", | |
| "jshint": "npm run jshint:dist", | |
| "jscs": "jscs src/*.js", | |
| "browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js", |
| > git reset --hard <commit> | |
| > git rebase -i upstream/<branch> | |
| > git push -f origin <branch> |