Skip to content

Instantly share code, notes, and snippets.

View jasonlong's full-sized avatar

Jason Long jasonlong

View GitHub Profile
@jasonlong
jasonlong / vimium-styling.md
Last active January 29, 2024 21:37
Nicer Vimium link hint styling. What's Vimium? See http://vimium.github.io. This awesome yellow is courtesy of @mrmrs colors: http://clrs.cc.

@jasonlong
jasonlong / example-sparkline.md
Last active May 14, 2018 02:36
Example for generating SVG sparklines – Released under CC0-1.0 (https://creativecommons.org/publicdomain/zero/1.0/)

example-sparkline

@jasonlong
jasonlong / Default (OSX).sublime-keymap
Created April 16, 2013 11:53
A simple way to toggle between dark and light themes in Sublime Text 2.
// Copy this to your keybindings (Preferences > Key Bindings - User)
// Change the keybinding, color schemes, and themes to your preferences
{ "keys": ["ctrl+1"], "command": "toggle_color_scheme",
"args": {
"light_color_scheme": "Packages/User/Espresso Soda.tmTheme",
"dark_color_scheme": "Packages/User/Monokai Soda.tmTheme",
"light_theme": "Soda Light.sublime-theme",
"dark_theme": "Soda Dark.sublime-theme"
}
@jasonlong
jasonlong / keybase.md
Created March 17, 2016 16:36
keybase.md

Keybase proof

I hereby claim:

  • I am jasonlong on github.
  • I am jasonlong (https://keybase.io/jasonlong) on keybase.
  • I have a public key ASDC26nERFN8bpjJ_fXd_gzlOo3MIvApcGXH653EjtWEVwo

To claim this, I am signing this object:

@jasonlong
jasonlong / home-office.md
Last active December 27, 2015 14:59
Home Office
@jasonlong
jasonlong / gist:5662320
Last active December 17, 2015 19:39
Looking for a Columbus rental

Last month, my wife and I had the great fortune of selling our house before we even listed it. We allowed our realtor show our house as a sort of "sneak peek" and we immediately received an offer (for full asking price, no less).

This was great, but we hadn't yet decided on where we were going to move. Long story short, we still haven't found the perfect house and now we're looking for temporary housing while we continue our search.

Ideally, we'd find a rental where we could renew monthly. This is next to impossible to find, so I thought I'd see if anyone in my local network has a connection. We have two children so we'd really like to have three bedrooms, but we can be flexible. Also, Hilliard, Dublin, or central locations would be best. We will be out of our current house the second week of July.

If you have any leads, please drop me a line at .

@jasonlong
jasonlong / gmail.css
Last active December 8, 2015 11:00
My user styles for Gmail
/* Hide the ads */
.mq,
.oM,
.u7,
.V3vJRb,
.yxEQwb { display: none; }
/* Un-comment to hide the footer */
.l2 { display: none; }
@jasonlong
jasonlong / recommended-podcasts.md
Created September 6, 2012 14:19
Recommended Podcasts
@jasonlong
jasonlong / massage.md
Created July 6, 2012 13:07
Massage Therapist

Columbus Massage Therapist Recommendation

tl;dr - See https://plus.google.com/117242785508675433416/about?gl=us&hl=en

Recently, someone on Twitter asked for a recommendation for a massage therapist. I ended up emailing the info to that person plus another who happened to see the conversation. Since then, a few more people have asked for the info as well.

Why I Went To a Massage Therapist

I've had lower and upper back pain off and on for over 10 years. I've tried going to chiropractors, orthopedic specialists, and spa-type massage places. Nothing ever works.

@jasonlong
jasonlong / tablesorter.js
Created June 17, 2011 19:22
Adding a class to <td> elements with jquery.tablesorter.js
$('table.sortable').tablesorter();
$('table.sortable th').bind('click', function() {
// remove sorted class from all table cells and start fresh
$(this).closest('table').find('td.sorted').removeClass('sorted');
// find out which column was clicked and add the sorted class to
// the <td> cells below it
var index = $(this).prevAll().length;
$(this).closest('table').find('tr').each(function(row) {