Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
// ==UserScript== | |
// @name gist: replace title with filename | |
// @namespace http://d.hatena.ne.jp/youpy/ | |
// @include http://gist.github.com/* | |
// @include https://gist.github.com/* | |
// @exclude http://gist.github.com/gists | |
// @exclude https://gist.github.com/gists | |
// @require https://gist.github.com/3242.txt | |
// ==/UserScript== |
// ==UserScript== | |
// @name Gist UserScript Install Link | |
// @author Erik Vold | |
// @namespace gistUserScriptInstallLink | |
// @include http://gist.github.com/* | |
// @version 0.1 | |
// @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html | |
// @datecreated 2010-01-28 | |
// @lastupdated 2010-01-28 | |
// @description This userscript will add an 'Install' link to all userscript files (which end with .user.js by necessity). |
function openSpecialFolder(aFolderType) { | |
var dirService = Components.classes['@mozilla.org/file/directory_service;1'] | |
.getService(Components.interfaces.nsIProperties); | |
var dir = dirService.get(aFolderType, Components.interfaces.nsIFile); | |
var iDirectory = getLocalFileInterface(dir.path); | |
try { | |
iDirectory.reveal(); | |
} catch (ex) { | |
// if reveal failed for some reason (eg on unix it's not currently |
From: Chris DeSalvo <[email protected]> | |
Subject: Why we can't process Emoji anymore | |
Date: Thu, 12 Jan 2012 18:49:20 -0800 | |
Message-Id: <[email protected]> | |
--Apple-Mail=_6DEAA046-886A-4A03-8508-6FD077D18F8B | |
Content-Transfer-Encoding: quoted-printable | |
Content-Type: text/plain; | |
charset=utf-8 |
Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
/*--- checkForBadJavascripts() | |
This is a utility function, meant to be used inside a Greasemonkey script that | |
has the "@run-at document-start" directive set. | |
It Checks for and deletes or replaces specific <script> tags. | |
*/ | |
function checkForBadJavascripts (controlArray) { | |
/*--- Note that this is a self-initializing function. The controlArray | |
parameter is only active for the FIRST call. After that, it is an | |
event listener. |
All data here was compiled by Jeff Schiller.
It powers this d3.js grid data visualization.
var FooWrapper = (function() { | |
// private module scope, shared among all Foo instances | |
var _private1 = "private1"; | |
var _private3 = "private3"; | |
var Foo = function(arg1, arg2, arg3) { | |
// private instance var, only visible to privileged methods |