#Google Extensions ###Just a dump list for now
- After the Deadline
- Pendule
- PageEdit
- Search by Image
- Tape
- pagespeed
- Awesome screenshot
| #!/bin/bash | |
| DIR_PATH=$1 | |
| GIT_PREVIOUS_COMMIT=$(git rev-parse --short "HEAD^") | |
| GIT_COMMIT=$(git rev-parse --short HEAD) | |
| if [ ! -d "$DIR_PATH" ]; then | |
| echo "Directory '$DIR_PATH' not exists" | |
| exit 1 | |
| fi |
#Google Extensions ###Just a dump list for now
#Wordpres Plugins
| // Write a program which gets a users timeline from Twitter and then prints out each odd item. | |
| // Node.js | |
| // Functional programming - No Loop - return a new array of odd values | |
| function returnOdd(arr) { | |
| return arr.filter(function(el, index){ | |
| return index % 2 ? el : null; | |
| }) | |
| } |
| module.exports = function(grunt) { | |
| grunt.loadNpmTasks('grunt-contrib-compass'); | |
| grunt.loadNpmTasks('grunt-autoprefixer'); | |
| grunt.loadNpmTasks('grunt-contrib-cssmin'); | |
| grunt.loadNpmTasks('grunt-contrib-uglify'); | |
| grunt.loadNpmTasks('grunt-contrib-watch'); | |
| grunt.initConfig({ |