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
Scalable Backgrounds in CSS | |
https://www.youtube.com/watch?v=TJIcpS34KwY |
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
Sync Settings for Atom |
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
#!/bin/bash | |
sudo chown -R $USER /usr/local | |
#http://howtonode.org/introduction-to-npm |
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
var comics = [ | |
{ | |
pages: 100, | |
price: 100 | |
}, | |
{ | |
pages: 100, | |
price: 50 | |
}, | |
{ |
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
const fetch = require('node-fetch'); | |
function showGitHubUser(handle) { | |
const url = `https://api.github.com/users/${handle}`; | |
fetch(url) | |
.then(response => response.json()) | |
.then(user => { | |
console.log(user.name); | |
console.log(user.location); | |
}); |
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
language: ruby | |
rvm: | |
- 2.3.3 | |
env: | |
global: | |
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true | |
install: gem install jekyll html-proofer | |
script: jekyll build && htmlproofer --http-status-ignore "999" check_html=true ./_site |
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
sudo tar -C /usr/local --strip-components 1 -xzf ~/Downloads/node-v6.3.10-linux-x64.tar.gz | |
ls -l /usr/local/bin/node | |
https://stackoverflow.com/questions/37467252/how-to-install-node-v6-2-0-on-ubuntu |
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
chsh -s $(which zsh) |
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
const animalsArray = [ | |
{ | |
"name": "Lilou", | |
"species": "cat", | |
"size": "small", | |
"weight": 5 | |
}, | |
{ | |
"name": "Maïna", | |
"species": "cat", |
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
The introduction. A short paragraph. Make this personal if appropriate. Eg. "Season greetings, everyone! You asked, Santa listened - this update is exactly what you ask for this Christmas." | |
TL; DR | |
• An extra short summary of these notes goes here. | |
*** NEW *** | |
• This is where you layout any new features. | |
• Explain where abouts these features are within your app. | |
• How do users find these new features? | |
• Which users will this benefits, or how exactly will this benefits them? | |
• E.g. "[Who benefits?] Apple Watch users will be particularly happy with the latest release. [Why?] We now automatically support handoff with your Mac. [Where/how?] Don’t forget to have your bluetooth turned on, you can do it]!" | |
*** IMPROVEMENTS *** |
OlderNewer