Skip to content

Instantly share code, notes, and snippets.

View puginabox's full-sized avatar

Griffin Byron puginabox

View GitHub Profile
@puginabox
puginabox / strip-whitespace.sh
Created November 20, 2014 16:23
unix command for stripping and replacing whitespace in a bunch of files
for i in *.pdf; do mv "$i" "`echo $i | sed -e 's, ,-,g'`"; done
@puginabox
puginabox / .gitignore
Last active August 29, 2015 14:10
.gitignore template
######################
#.gitignore template #
######################
###################
# Custom
www
node_modules
vendor
js/lib
@puginabox
puginabox / .bowerrc
Last active August 29, 2015 14:10
.bowerrc
{
"directory": "js/libs"
}
bower install jquery
@puginabox
puginabox / gruntfile.js
Last active August 29, 2015 14:10
gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
compass: {
dev: {
options: {
config: 'config.rb' // the Compass config file
} //options
} //dev
}, //compass
server: {
@puginabox
puginabox / bower.json
Last active August 29, 2015 14:10
bower.json
{
"name": "Angular-Gulp-Schaffolding",
"version": "0.0.1",
"description": "Angular-Gulp-Schaffolding",
"authors": [
"Griffin Byron"
],
"license": "MIT",
"homepage": "https://github.com/puginabox/",
"ignore": [
@puginabox
puginabox / package.json
Last active August 29, 2015 14:10
Grunt Package manager
{
"name": "grunt-setup",
"version": "0.0.0",
"description": "Grunt Setup",
"main": "main.js",
"scripts": {
"test": "testing"
},
"repository": {
"type": "git",
@puginabox
puginabox / confib.rb
Created November 22, 2014 19:32
Compass/Sass config
http_path = "/"
css_dir = 'css'
sass_dir = 'dev/sass'
javascripts_dir = 'js'
# output_style = :compressed
output_style = :expanded
relative_assets = true
# environment = :development
@puginabox
puginabox / index.html
Last active August 29, 2015 14:10
index.html boilerplate for angularJS
<!DOCTYPE html>
<html lang="en" ng-app="myApp" ng-cloak>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- for IE Document Mode - must be at top of <head> to be cross-IE -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Xxx</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CEO upkeep-->
@puginabox
puginabox / package.json
Last active August 29, 2015 14:10
basic angular setup
{
"name": "angular-base",
"version": "0.0.0",
"description": "Grunt Setup",
"main": "gruntfile.js",
"scripts": {
"test": "testing"
},
"repository": {
"type": "git",
@puginabox
puginabox / .gitignore
Last active September 26, 2016 14:44
index.html for project starter
######################
#.gitignore template #
######################
# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon?