Skip to content

Instantly share code, notes, and snippets.

View jeffpowrs's full-sized avatar

Jeffrey Powers jeffpowrs

  • Brooklyn, NY
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>Parts of Speech: We Do</title>
</head>
<body>
<h1 id = "header">This page is about using variables with jQuery.</h1>
<div id="background">
<div id ="sentence"></div>
</div>
<!DOCTYPE html>
<html>
<head>
<title>Parts of Speech: We Do</title>
</head>
<body>
<h1 id = "header">This page is about using variables with jQuery.</h1>
<div id="background">
<div id ="sentence"></div>
</div>
@jeffpowrs
jeffpowrs / gulp_file.js
Last active September 4, 2015 18:53
Super Simple Gulp Starter + Static Server.
var gulp = require('gulp');
var plumber = require('gulp-plumber');
var rename = require('gulp-rename');
var autoprefixer = require('gulp-autoprefixer');
var concat = require('gulp-concat');
var jshint = require('gulp-jshint');
var uglify = require('gulp-uglify');
var imagemin = require('gulp-imagemin');
var cache = require('gulp-cache');
var minifycss = require('gulp-minify-css');
@jeffpowrs
jeffpowrs / SassMeister-input.scss
Last active August 29, 2015 14:26
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// sass-maps-plus (ve4d32a1dc2)
// ----
@import "sass-maps-plus";
$base-font-size: 16;
@jeffpowrs
jeffpowrs / SassMeister-input.scss
Created July 30, 2015 00:53
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// sass-maps-plus (ve4d32a1dc2)
// ----
@import "sass-maps-plus";
$viewport: (
width: (
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'