Skip to content

Instantly share code, notes, and snippets.

View laander's full-sized avatar

Lasse Boisen Andersen laander

View GitHub Profile
@laander
laander / flowboard.js
Created October 15, 2012 17:28
Flowdock to Flowboard bookmarklet
javascript:((function()%7B%24('%23app').css('zoom'%2C'170%25')%3B%24('%23app').css('width'%2C'100%25')%3B%24('%23chat').css('display'%2C'none')%3B%24('%23app_menu').css('display'%2C'none')%3B%24('.app-toolbar').css('display'%2C'none')%3B%24('%23main_splitter').css('margin-left'%2C'0px')%3B%7D))()%3B
@laander
laander / everyday-github-reference.terminal
Created December 22, 2010 13:49
A quick reference for everyday github use with often used commands
// Full reference to be found at http://help.github.com/
// Or append a --help to the commands to get man page
// Different github rep urls for different uses
git@github.com:user/repo.git // Full access for reps youre a collaborator at
git://github.com/user/repo.git // Read-only using the git protocol
http://github.com/user/repo.git // Read-only over HTTP
// Working on an existing remote rep locally
git clone git@github.com:user/repo.git // Creates a new subfolder, fetches the content and checkout the default branch
@laander
laander / hosted-bookmarklet.jquery.js
Created December 22, 2010 00:09
A nifty tool for creating hosted javascript browser bookmarklets supporting jQuery
/**
* Hosted jQuery Bookmarklet
* @description A nifty tool for creating hosted javascript browser bookmarklets supporting jQuery
* @author Laander (http://laander.com) at Konscript (http://konscript.com)
* @gist https://gist.github.com/gists/750857
*/
/**
* Usage:
* The following snippet should be the link saved as a bookmarklet by the user.