Skip to content

Instantly share code, notes, and snippets.

View benjiwheeler's full-sized avatar

Benjamin Wheeler benjiwheeler

View GitHub Profile
@benjiwheeler
benjiwheeler / app.json
Created April 21, 2015 15:43
Heroku deployment file
{
"name": "Stream example ruby app",
"description": "A simple Pinterest clone built with Rails 4 and stream_rails",
"website": "https://getstream.io",
"keywords": [
"getstream.io",
"HTML5",
"PHP"
],
"repository": "https://github.com/GetStream/stream-example-ruby",
@benjiwheeler
benjiwheeler / index.html
Created May 26, 2015 22:35
Ionic canonical index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title></title>
<!-- compiled css output -->
<link href="css/ionic.app.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
@benjiwheeler
benjiwheeler / Code.gs
Created May 27, 2015 14:33
Autosort button script for Google Sheets
function resort(tableRange, columnToSortBy){
var sheet = SpreadsheetApp.getActiveSheet();
var range = sheet.getRange(tableRange);
range.sort( { column : columnToSortBy, ascending: false } );
}
// just a wrapper; timestamp is just anti-cacheing trick
function myGetRangeByName(n, timestamp) {
var sheet = SpreadsheetApp.getActiveSpreadsheet();
@benjiwheeler
benjiwheeler / rect.html
Created June 10, 2015 16:49
Processing simple rectangle in javascript
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.4.9/processing.js"></script>
</head>
<body>
<div>
<canvas id="canvas" width="600" height="600" />
</div>
The content of the body element is displayed in your browser.
@benjiwheeler
benjiwheeler / NSLayoutConstraint+Init.swift
Created July 7, 2015 14:13
NSLayoutConstraint+Init.swift
//
// NSLayoutConstraint+Init.swift
// Created by Benjamin Wheeler starting 6/2013
//
//
import UIKit
// improves the clarity and flexibility of NSLayoutConstraint
extension NSLayoutConstraint {
@benjiwheeler
benjiwheeler / txt
Created September 25, 2015 00:24
The one thing I'd most like to remind myself
"Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind."
--Bernard Baruch
@benjiwheeler
benjiwheeler / route.js
Created November 18, 2015 17:40
Angular route/state file from Begin to Code
app.config(['$stateProvider', '$urlRouterProvider', '$locationProvider',
function($stateProvider, $urlRouterProvider, $locationProvider) {
$stateProvider.state('root', {
url: '/',
templateUrl: 'root.html',
controller: 'RootCtrl'
})
.state('program', {
url: '/program/:program_id',
@benjiwheeler
benjiwheeler / navMenuCtrl.js
Created November 18, 2015 17:42
Angular navigation menu controller from Begin to Code
// see the very bottom of http://angular-rails.com/find_and_browse.html
// by omitting second parameter, we tell angular we're looking for existing module.
var controllers = angular.module('basicControllers');
controllers.controller('NavMenuCtrl', ['$scope', '$stateParams', '$state', 'ProgramCache',
function($scope, $stateParams, $state, ProgramCache) {
// variables
$scope.menuStates = []; // all of the menu items, each a complete state
// IMPORTANT: we are binding global program service to local program scope!
// this lets us update menu item content on the fly, since our template will be digested.
<html>
<head>
<!-- Pleace this snippet right after opening the head tag to make it work properly -->
<!-- This code is licensed under GNU GPL v3 -->
<!-- You are allowed to freely copy, distribute and use this code, but removing author credit is strictly prohibited -->
<!-- Generated by http://insider.zone/tools/client-side-url-redirect-generator/ -->
<!-- REDIRECTING STARTS -->
<link rel="canonical" href="http://destinationsitehere.com"/>
@benjiwheeler
benjiwheeler / angularJsonDataService.js
Last active May 18, 2016 16:45
Angular Service to share JSON data among controllers
// data.json could look like:
// {
// "menu": [{"name": "Contact Us"}, {"name": "About Us"}]
// }
// app.js could look like:
var app = angular.module('myApp');
app.factory('commonData', ['$http', '$q', function($http, $q){