Skip to content

Instantly share code, notes, and snippets.

View JayWIlsonJr's full-sized avatar

Jay Wilson Jr. JayWIlsonJr

View GitHub Profile
@JayWIlsonJr
JayWIlsonJr / README.md
Created April 7, 2018 23:35 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@JayWIlsonJr
JayWIlsonJr / README-Template.md
Created November 13, 2017 12:54 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@JayWIlsonJr
JayWIlsonJr / map.html
Created June 28, 2017 13:36
Shows where to call for a map refresh
<div id="map">
<!-- Make sure the slide element is a child of the #map element, not a sibling -->
<div id="infoSlidePane" class="slide-up-pane"></div>
</div>
@JayWIlsonJr
JayWIlsonJr / app.js
Created November 15, 2016 21:33 — forked from OdinsHat/app.js
express 3.x cookie session middleware example - created as original visionmedia gist was deleted
var express = require('express')
, cookieSessions = require('./cookie-sessions');
var app = express();
app.use(express.cookieParser('manny is cool'));
app.use(cookieSessions('sid'));
app.get('/', function(req, res){
req.session.count = req.session.count || 0;
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';
@JayWIlsonJr
JayWIlsonJr / app.js
Created November 7, 2015 03:44 — forked from katowulf/app.js
Simple paginate example in AngularFire with Firebase.util (http://firebase.github.io/firebase-util/)
var app = angular.module('app', ['firebase']);
app.controller('ctrl', function($scope, $pageArray) {
$scope.pageItems = $pageArray(ref, 'number');
});
app.factory('$pageArray', function($firebaseArray) {
return function(ref, field) {
// create a Paginate reference
var pageRef = new Firebase.util.Paginate(ref, field, {maxCacheSize: 250});
@JayWIlsonJr
JayWIlsonJr / SassMeister-input-HTML.html
Created March 5, 2015 20:35
Generated by SassMeister.com.
<p>Text inside the P tag is Pink</p>

Screencasting Framework

The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.

Why you should care about screencasting?

You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.

  1. Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.