This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function( $ ) { | |
var $main_select = {}; | |
$.fn.tognsort = function( options ) { | |
var options = $.extend({}, $.fn.tognsort.defaults, options ); | |
$main_select = this; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
// Include Our Plugins | |
var jshint = require('gulp-jshint'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var minifyCSS = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var yuidoc = require("gulp-yuidoc"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"devDependencies": { | |
"gulp": "~3.6.0", | |
"gulp-rename": "~1.2.0", | |
"gulp-concat": "~2.2.0", | |
"gulp-minify-css": "~0.3.1", | |
"gulp-uglify": "~0.2.1", | |
"gulp-sass": "~0.7.1", | |
"gulp-chmod": "~0.2.0", | |
"gulp-notify": "~1.2.5", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
$this->Html->link(__('${1:Link name}'), array('controller' => '${2:Controller}', 'action' => '${3:action}')) | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>link</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<scope>source.php</scope> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function update_git_repo() { | |
GIT_DIR=$1 | |
GIT_REMOTE=$2 | |
GIT_BRANCH=${3:-master} | |
if [ ! -d $GIT_DIR ]; then | |
CURRENT_SHA="" | |
git clone --depth 1 $GIT_REMOTE $GIT_DIR -b $GIT_BRANCH | |
else | |
CURRENT_REMOTE=$(cd $GIT_DIR && git config --get remote.origin.url || true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
curl "http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.23-osx10.9-x86_64.tar.gz" -L -o "mysql-5.6.23-osx10.9-x86_64.tar.gz" | |
tar xfvz mysql-5.6* | |
echo "stopping mamp" | |
sudo /Applications/MAMP/bin/stop.sh | |
sudo killall httpd mysqld | |
echo "creating backup" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var plgPath = function(){ | |
var path = null, currentScript = null; | |
var scripts = document.getElementsByTagName("script"); | |
for(var i in scripts){ | |
if(scripts[i].src.indexOf("script.js") >= 0){ | |
currentScript = scripts[i]; | |
break; | |
} | |
} | |
path = currentScript.src.substring(0, currentScript.src.lastIndexOf("/") + 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @wordpress-plugin | |
* Plugin Name: FCG Partials. | |
* Description: Do not depend on globals to pass variables to template parts. | |
* Version: 1.0.0 | |
* Author: Gulbenkian | |
* Author URI: https://github.com/gulbenkian/ | |
* License: GPL-2.0+ | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Used to notify rollbar of a new deployment | |
# | |
# Usage: ./deploy-notify.sh rollbar_token environment_name | |
set -e | |
( |
OlderNewer