I hereby claim:
- I am narayon on github.
- I am narayon (https://keybase.io/narayon) on keybase.
- I have a public key ASAInUGjO1eaI4pdabI7CM6B2AZpIWk-kPC3n-v3uuRHTQo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # | |
| # Bootstrap script for setting up a new OSX machine | |
| # | |
| # This should be idempotent so it can be run multiple times. | |
| # | |
| # Some apps don't have a cask and so still need to be installed by hand. These | |
| # include: | |
| # | |
| # - Newton (app store) |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Change these settings to match what you are wanting to do | |
| FILE=/File/To/Copy | |
| PATH=/Where/To/Put/File | |
| OPTIONS=`vagrant ssh-config | grep -v '^Host ' | awk -v ORS=' ' 'NF{print "-o " $1 "=" $2}'` | |
| # copy from host to vagrant | |
| # scp ${OPTIONS} $FILE v:$PATH |
| <?php | |
| function get_template_page_url( $template_name ) { | |
| $url = null; | |
| $pages = new \WP_Query( array( | |
| 'post_type' => 'page', | |
| 'meta_key' => '_wp_page_template', | |
| 'meta_value' => $template_name, | |
| ) ); |
| // an example channel service that lets consumers | |
| // subscribe and publish for nuclear reactor meltdowns | |
| var CoreReactorChannel = function($rootScope) { | |
| // local constants for the message ids. | |
| // these are private implementation detail | |
| var ELEVATED_CORE_TEMPERATURE_MESSAGE = "elevatedCoreMessage"; | |
| // publish elevatedCoreTemperature |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference. | |
| * | |
| * All credits go to luetkemj. Thanks! | |
| * | |
| * @author luetkemj <[email protected]> | |
| * @author s3rgiosan <[email protected]> | |
| * | |
| * @see http://codex.wordpress.org/Class_Reference/WP_Query#Parameters |
| /* the page should not change width as content is loaded */ | |
| body { | |
| overflow-y: scroll; | |
| } | |
| /* block scrolling without losing the scroll bar and shifting the page */ | |
| /* add this class when a modal is open */ | |
| body.block-scroll { | |
| overflow: hidden; | |
| overflow-y: scroll !important; |
| rm -rf ./plugins | |
| rm -rf ./node_modules | |
| rm -rf ./www/lib | |
| ionic platform rm android | |
| ionic platform rm ios | |
| npm install | |
| bower install |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var bower = require('bower'); | |
| var concat = require('gulp-concat'); | |
| var sass = require('gulp-sass'); | |
| var minifyCss = require('gulp-minify-css'); | |
| var rename = require('gulp-rename'); | |
| var sh = require('shelljs'); | |
| var uglify = require('gulp-uglify'); | |
| var mainBowerFiles = require('main-bower-files'); |