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:
| [test] |
I hereby claim:
To claim this, I am signing this object:
| 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 |
| # 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 | |
| } |
| // 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() { |
| // 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 |
| // 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 | |
| }); |