Skip to content

Instantly share code, notes, and snippets.

View vernonk's full-sized avatar

Vernon Kesner vernonk

  • Bottomline Technologies
  • Charlotte, NC
  • X @vernonk
View GitHub Profile
@theodorosploumis
theodorosploumis / Nework_throttling_profiles.md
Last active May 3, 2024 08:06
Web development - Custom network throttling profiles
Profile download (kb/s) upload (kb/s) latency (ms)
Native 0 0 0
GPRS 50 20 500
56K Dial-up 50 30 120
Mobile EDGE 240 200 840
2G Regular 250 50 300
2G Good 450 150 150
3G Slow 780 330 200
@yoavniran
yoavniran / ultimate-ut-cheat-sheet.md
Last active May 6, 2024 12:29
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai, Sinon, and Jest
@remy
remy / gitissues.rb
Created January 23, 2014 11:21
An Alfred 2 workflow to let me jump directly to jsbin issues, either by issue number, searching issues or creating new issues. Make sure to change to your own repo. Also, disclaimer, I don't write or use ruby, so this is pretty much just clobbered together.
# change this...unless you're in to jsbin issues :)
repo = "remy/jsbin"
require 'cgi'
v = ARGV[0] || "{query}"
url = "";
text = "";
if v.to_s =~ /\A[-+]?\d*\.?\d+\z/ || v == "new"
url = "https://github.com/#{repo}/issues/#{v}"
text = "Open #{v}"
@aheckmann
aheckmann / generator-fodder
Created September 17, 2013 14:42
some resources for understanding ES6 generators.
http://swannodette.github.io/2013/08/24/es6-generators-and-csp/
https://github.com/visionmedia/co
http://wiki.ecmascript.org/doku.php?id=harmony:generators
http://pag.forbeslindesay.co.uk/
@dcneiner
dcneiner / Terminal.md
Last active December 18, 2015 23:39
Information about my terminal configuration and theme.
@dcneiner
dcneiner / tools.md
Created February 23, 2013 11:46
A list of tools I use on a regular basis.

@desandro
desandro / require-js-discussion.md
Created January 31, 2013 20:26
Can you help me understand the benefit of require.js?

I'm having trouble understanding the benefit of require.js. Can you help me out? I imagine other developers have a similar interest.

From Require.js - Why AMD:

The AMD format comes from wanting a module format that was better than today's "write a bunch of script tags with implicit dependencies that you have to manually order"

I don't quite understand why this methodology is so bad. The difficult part is that you have to manually order dependencies. But the benefit is that you don't have an additional layer of abstraction.


@pmcelhaney
pmcelhaney / gist:2870503
Created June 4, 2012 19:59
Development Tools

A few of my favorite tools

Some of my favorite tools that remove friction from web development. Thanks to @jMoo and @vernonk who pointed me to a lot of these originally.

A lightweight but powerful and extensible editor. $59

Codekit

Automatically reloads browser when a source file is saved. Also compiles, minifies, etc. $20

@nicerobot
nicerobot / README.md
Last active February 25, 2024 02:41
Mac OS X uninstall script for packaged install of node.js from https://stackoverflow.com/a/9287292/23056

To run this, you can try:

curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh
chmod +x ./uninstall-node.sh
./uninstall-node.sh
rm uninstall-node.sh
@erikh
erikh / hack.sh
Created March 31, 2012 07:02 — forked from DAddYE/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#