This project has been moved to https://github.com/weakish/gister
Please update your bookmark and git remote.
| #!/bin/sh -e | |
| # | |
| # Usage: browser | |
| # pipe html to a browser | |
| # e.g. | |
| # $ echo '<h1>hi mom!</h1>' | browser | |
| # $ ron -5 man/rip.5.ron | browser | |
| if [ -t 0 ]; then | |
| if [ -n "$1" ]; then |
| /* | |
| * fairchild - an enhanced syntax for hooking stuff with Cycript | |
| * by Yanik Magnan - http://r-ch.net | |
| */ | |
| var FCSuper = {}; | |
| var FCClassSuper = {}; | |
| function FCMethod(_className, _selector, _block) { | |
| if (!FCSuper[_className]) |
This project has been moved to https://github.com/weakish/gister
Please update your bookmark and git remote.
| # pymod MOD: find file path to implementation for python module called MOD | |
| alias pymod="python -c 'import sys; print(__import__(sys.argv[1]).__file__)'" |
| > | |
| > Author: Michael Fox | |
| > Website: http://www.michaelfox.name | |
| > | |
| > Quix: http://quixapp.com | |
| > | |
| @Quixearches Quick Searches | |
| acronym javascript:q%20=%20""%20+%20(window.getSelection%20?%20window.getSelection()%20:%20document.getSelection%20?%20document.getSelection()%20:%20document.selection.createRange().text);%20if%20(!q)%20q%20=%20prompt("You%20didn't%20select%20any%20text.%20%20Enter%20a%20search%20phrase:",%20"");%20if%20(q!=null)%20location="http://www.acronymfinder.com/af-query.asp?Find=find&string=exact&Acronym="%20+%20escape(q);%20void%200 Acronym Search |
| #!/usr/bin/env bash | |
| # bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2012-02-17 | |
| # | |
| # _______________| digy : tame DNS utility dig with reasonable options. | |
| # | |
| # Usage: digy [address] [rev|name|short|mail|all|long|longa|who] | |
| # | |
| # Examples: % digy friendfeed.com | |
| # 69.63.180.52 | |
| # # default second argument is 'short' |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers| // You create your bookmarklet by instantiating | |
| // a new Bookmarklet function, then pass in the options like so. | |
| // This example checks to see if the var is already defined, and makes | |
| // sure not to overwrite it. This could happen if the user clicks on | |
| // the bookmarklet more than once. | |
| MyBookmarklet = MyBookmarklet || (MyBookmarklet = new Bookmarklet({ | |
| // debug: true, // use debug to bust the cache on your resources | |
| css: ['/my/style.css'], | |
| js: [], |
| # Copyright @ Bjarte Johansen 2012 | |
| # License: http://ljos.mit-license.org/ | |
| from AppKit import NSApplication, NSApp, NSWorkspace | |
| from Foundation import NSObject, NSLog | |
| from PyObjCTools import AppHelper | |
| from Quartz import kCGWindowListOptionOnScreenOnly, kCGNullWindowID, CGWindowListCopyWindowInfo | |
| class AppDelegate(NSObject): | |
| def applicationDidFinishLaunching_(self, notification): |
| /* WITH MODS TO ORIG -- iOS Browser Bookmarklets to launch other apps and stuff */ | |
| /* ver 2014-04-14a */ | |
| /* backing up my "Open In" bookmarks */ | |
| // note iOS6 requires some changes to these | |
| // BEGIN TESTING STUFF -- IN PROFRESS LIKELY NOT WORKING | |
| // SOME WORK, MOST tests are not WORK -- | |
| // PINNER APP TEST STUFF (as a private one) | |
| // the page title as the title and your selected text as the description. |