Forked from Oliver Knoblich's Pen Flexbox Off Canvas Menu.
A Pen by John Laine on CodePen.
| echo 'Hello World'; |
| <?php | |
| /** | |
| * This file will demonstrate a method to export fields to code. | |
| * You can use this to easily create fields using the UI, export to code | |
| * and then use in a custom module. Upon installation of the module | |
| * your fields and instances will already be set up. | |
| */ | |
| // Create the fields you want using the Drupal UI. | |
| // On the same site, go to example.com/devel/php |
| tar cvzf archive_name.tar.gz dirname/ |
| drush php-eval 'node_access_rebuild();' |
| now=$(date +"%m_%d_%Y") | |
| touch my_file_$now | |
| # Will output something like my_file_08_20_2013 | |
| # You can also do this, which will have the same results | |
| touch my_file_$(date +"%m_%d_%Y") |
| $ tar cvzf archive_name.tar.gz dirname/ |
| { | |
| "directory" : "src/assets/components" | |
| } |
| 'use strict'; | |
| // Load our dependencies. | |
| var gulp = require('gulp'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var htmlMin = require('gulp-htmlmin'); | |
| var useref = require('gulp-useref'); | |
| var uglify = require('gulp-uglify'); | |
| var lazypipe = require('lazypipe'); | |
| var gulpIf = require('gulp-if'); |
| # Useful git commands | |
| git log --oneline --abbrev-commit --all --graph --decorate --color |