#Wordpres Plugins
- Custom Post Type UI
- Advanced Custom Fields
- Duplicate Post
- Duplicator
- Google Analytics by Yoast
- Revolution Slider
- WP Ultimate CSV Importer
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({ |
// 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; | |
}) | |
} |
#Wordpres Plugins
#Google Extensions ###Just a dump list for now
#!/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 |