Skip to content

Instantly share code, notes, and snippets.

@researchranks
researchranks / 0_reuse_code.js
Created May 11, 2017 09:16
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@researchranks
researchranks / todo.md
Last active May 11, 2017 09:29
todo.md

Markdown Project

Update README

  • add images @rob
  • add urls
@researchranks
researchranks / flower-and-plant-names.csv
Created April 18, 2017 23:09
flower and plant names
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
alder
african rice
african violet
algerian oak quercus
almond
ambrosia
american cress
american dogwood
american nightshade
american white hellebore
@researchranks
researchranks / todo.md
Last active April 18, 2017 21:29
todo testing

Course TODO List

Table of Contents

  • Last Updated @ 04-13-2017

04-13-2017

@researchranks
researchranks / node_browser-sync_path-directories.md
Created January 24, 2017 23:51
node browser-sync | path directories | fixed debugged
browser-sync \
--port=8080 \
--server="public" \
--files="./*/" \
start
browser-sync start \
@researchranks
researchranks / javascript-generator-while-loop-conditional.js
Created December 13, 2016 22:28
javascript generator - while loop conditional
function * counter(){
var c = 0;
var state = yield null;
while(true){
if(state === false){
return;
}
yield c++;
}
@researchranks
researchranks / docker-compose.yml
Created August 15, 2016 19:15
docker-compose (tutum/wordpress:latest)
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/