Skip to content

Instantly share code, notes, and snippets.

View lukeasrodgers's full-sized avatar

Luke Rodgers lukeasrodgers

View GitHub Profile
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
@lukeasrodgers
lukeasrodgers / self_signed_cert.conf
Created April 9, 2014 13:51
generate self-signed ssl certificate
# from http://quanterium.blogspot.com/2012/01/creating-self-signed-ssl-certificate.html
# see also http://www.mail-archive.com/openssl-users@openssl.org/msg47647.html
# to use:
# first, change alt_names
# then, openssl req -new -x509 -days 365 -nodes -out example.crt -keyout example.key -config example.conf
# and follow instructions
[ ca ]
default_ca = CA_default
@lukeasrodgers
lukeasrodgers / .vimrc
Last active August 29, 2015 13:57
no-plugins, generic .vimrc
" reload .vimrc when editing it: :so %
set nocompatible " be iMproved
filetype off " required!
set nu " show line numbers
set hlsearch " highlight search terms
" Clear last search highlighting
nnoremap <c-m> :noh<cr>
" Easier navigation between split windows
@lukeasrodgers
lukeasrodgers / vagrant_ssh.log
Created January 9, 2014 15:54
Vagrant ssh issues log output
VAGRANT_LOG=debug vagrant ssh
INFO global: Vagrant version: 1.3.5
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.3.5/plugins/commands/box/plugin.rb
INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.3.5/plugins/commands/destroy/plugin.rb
INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.3.5/plugins/commands/halt/plugin.rb
INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.3.5/plugins/commands/help/plugin.rb
INFO manager: Registered plugin: help command
@lukeasrodgers
lukeasrodgers / GridFilteringExtensions.js
Created April 24, 2013 20:47
Extensions to Ext.grid.GridPanel to make it easier to do programmatically hook into grid filtering.
Ext.grid.GridPanel.prototype.getFeatures = function() {
return this.view.featuresMC;
};
Ext.grid.GridPanel.prototype.getFilters = function() {
var features = this.getFeatures();
if (features && features.items) {
for (var i = 0; i < features.items.length; i++) {
if (features.items[i].ftype === 'filters') {
return features.items[i];
@lukeasrodgers
lukeasrodgers / constructor_getter.js
Last active December 16, 2015 09:29
Helper to determine the constructor for an instance, given a namesapce
var constructor_getter = (function() {
var parser = function(ns, instance) {
for (var key in ns) {
try {
if (instance instanceof ns[key]) {
return key;
}
} catch (err) {}
}
};
@lukeasrodgers
lukeasrodgers / spec.js.coffee
Created April 7, 2013 16:34
sample of jasminerice spec manifest
#= require ./before_src/sinon-1.4.2
#= require application
#= require backbone_base
#= require buckets_dashboard
#= require racking
#= require service_order
#= require dashboard
#= require matters
#= require_tree ./
@lukeasrodgers
lukeasrodgers / load_script.js
Created April 3, 2013 20:40
function to load javascripts, based on https://gist.github.com/getify/603980
load_script = function (url, callback) {
var oDOC = document;
var head = oDOC.head || oDOC.getElementsByTagName("head");
// loading code borrowed directly from LABjs itself
setTimeout(function () {
if ("item" in head) { // check if ref is still a live node list
if (!head[0]) { // append_to node not yet ready
setTimeout(arguments.callee, 25);
return;
@lukeasrodgers
lukeasrodgers / commands
Last active January 9, 2024 15:51
commands I forget
tmux
move window
:move-window -t INDEX
swap window
:swap-window -t INDEX
kill session
tmux kill-session -t mynames
cycle sessions
C-a (
save scrollback text into a file:
@lukeasrodgers
lukeasrodgers / deep-detect.js
Last active December 14, 2015 17:49
recursive deep detection in javascript with underscore and try/catch statements, inspired by ruby's throw/catch. jsperfs http://jsperf.com/deep-detect and http://jsperf.com/deep-detect-last-success
var deepDetect = function(list, iterator, context) {
var _deepDetect = function(list, iterator, context) {
if (_.isArray(list[0])) {
_.each(list, function(sublist) {
return _deepDetect(sublist, iterator, context);
});
}
else {
var res = _.detect(list, iterator, context);
if (!_.isUndefined(res)) {