Install jQuery 1.9.1 and Browserify-shim
npm install jquery@1.9.1 --save
npm install browserify-shim --save-devAdd the following entries in your package.json
| npm-debug.log | |
| .DS_Store | |
| *.js.map | |
| *.metadata.json | |
| app/**/*.js | |
| npm-debug.log | |
| hooks/ | |
| lib/ |
| machine: | |
| services: | |
| - docker | |
| dependencies: | |
| pre: | |
| - docker run -d --publish=7474:7474 --volume=$HOME/neo4j/data:/data --env=NEO4J_AUTH=none neo4j:3.0 |
Turning an ordered list into a vertical timeline using CSS.
A Pen by jalal (Tim Pushman) on CodePen.
| #!/usr/bin/env python | |
| """ | |
| Convert camel-case to snake-case in python. | |
| e.g.: CamelCase -> snake_case | |
| e.g.: snake_case -> CamelCase | |
| e.g.: CamelCase -> dash-case | |
| e.g.: dash-case -> CamelCase | |
| By: Jay Taylor [@jtaylor] | |
| Me<modifier>: Yahya Kacem <fuj.tyoli@gmail.com> | |
| Original gist: https://gist.github.com/jaytaylor/3660565 |