- add images @rob
- add urls
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
alder | |
african rice | |
african violet | |
algerian oak quercus | |
almond | |
ambrosia | |
american cress | |
american dogwood | |
american nightshade | |
american white hellebore |
browser-sync \
--port=8080 \
--server="public" \
--files="./*/" \
start
browser-sync start \
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
function * counter(){ | |
var c = 0; | |
var state = yield null; | |
while(true){ | |
if(state === false){ | |
return; | |
} | |
yield c++; | |
} |
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
custom_wordpress_app: | |
container_name: wp.dev | |
image: tutum/wordpress:latest | |
ports: | |
- '80:80' | |
volumes: | |
- ./dev/:/var/www/dev | |
- ./theme/twentyfifteen/:/var/www/html/wp-content/themes/twentyfifteen/ |