Skip to content

Instantly share code, notes, and snippets.

View wyne's full-sized avatar

Justin Wyne wyne

View GitHub Profile
@wyne
wyne / gist:c28ccbe46e47f488946304cfcac03a8d
Last active August 26, 2023 03:03
[Test] ~!@#$%^&*()_+{}
[test]
@wyne
wyne / keybase.md
Created March 28, 2019 02:56
keybase.md

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@wyne
wyne / cVim.config
Last active August 15, 2018 21:35
cVim config
set numerichints
set typelinkhints
set sortlinkhints
set autoupdategist
let blacklists = ["https://mail.google.com/*","*://mail.google.com/*","*://inbox.google.com/*"]
map <C-f> scrollPageDown
map <C-b> scrollPageUp
@wyne
wyne / fbrd.zsh
Last active January 29, 2016 22:41
FZF Delete merged git branches
# fbrd - Fuzzy Branch Delete
fbrd() {
local branches branch
branches=$(git branch --merged) &&
branch=$(echo "$branches" | fzf +m) &&
git branch -d $(echo "$branch" | sed "s/.* //") && fbrd
}
@wyne
wyne / equalHeights.js
Last active December 21, 2015 09:48
Equal Heights
// Make all children of this parent the same height
$.fn.eqChildHeights = function() {
var el = $(this);
if (el.length > 0 && !el.data('eqHeights')) {
$(window).bind('resize.eqHeights', function() {
el.eqHeights();
});
el.data('eqHeights', true);
}
return el.each(function() {
@wyne
wyne / stackmob-ssl.js
Created April 15, 2013 07:32
SSL on StackMob Custom Domain Module (JS SDK 0.7.0)
// SSL with StackMob JS SDK 0.7.0
// Note: you will need the SSL package of the Custom Domain module
// https://marketplace.stackmob.com/module/customdomains
StackMob.init({
appName: 'your_app_name',
clientSubdomain: 'your_client_subdomain',
publicKey: 'your_public_key',
apiURL: 'https://yourcustomdomain.com',
apiVersion: 0
@wyne
wyne / stackmob-ssl.js
Created April 15, 2013 07:29
SSL on StackMob Custom Domain Module (JS SDK 0.9.0)
// SSL with StackMob JS SDK 0.9.0+
// Note: you will need the SSL package of the Custom Domain module
// https://marketplace.stackmob.com/module/customdomains
StackMob.init({
publicKey: 'your_public_key',
useRelativePathForAjax: true,
apiVersion: 0
});