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
{ | |
"name": "agently", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"watch": "watchify game/core.js -o game.js -v", | |
"browserify": "browserify core.js | uglifyjs > game.js" | |
}, | |
"author": "", |
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
-- Update wordpress guid if need be. | |
UPDATE wp_options SET option_value = replace(option_value, 'http://old_url.com', 'http://new_url.com') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://old_url.com', 'http://new_url.com'); |
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 rsg = rsg || {}; | |
// (function () { | |
// 'use strict'; | |
// }()); | |
rsg = (function(){ | |
'use strict'; | |
var string_generator = {}; |
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'), | |
connect = require('gulp-connect'), | |
sass = require('gulp-sass'), | |
modRewrite = require('connect-modrewrite'); | |
gulp.task('webserver', function() { | |
connect.server({ | |
root: '', | |
livereload: true, | |
port: 1111 |
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($){ | |
'use strict'; | |
var AspectResize = function(elem, options){ | |
var _this = this; | |
_this.init = function(){ | |
_this.containerWidth = elem.parent().outerWidth(); | |
_this.containerHeight = elem.parent().outerHeight(); |
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
/******************************** | |
****** | |
****** | |
****** This is the stupid simple slider. | |
****** @_ericmiller | |
****** | |
****** | |
*********************************/ | |
(function($){ |
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($){ | |
'use strict'; | |
var Accordion = function(elem){ | |
var _this = this; | |
_this.elems = { | |
title: elem.find('.title'), | |
content: elem.find('.content') | |
}; |