This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Console] | |
"ColorTable00"=dword:000c0c0c | |
"ColorTable01"=dword:00da3700 | |
"ColorTable02"=dword:000ea113 | |
"ColorTable03"=dword:00dd963a | |
"ColorTable04"=dword:001f0fc5 | |
"ColorTable05"=dword:00981788 | |
"ColorTable06"=dword:00009cc1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function forkGist(user, gist) { | |
var path = (arguments.length ? ('/' + user + '/' + gist) : location.pathname); | |
var form = document.createElement('form'); | |
form.method = 'post'; | |
form.action = 'https://gist.github.com' + path + '/fork', | |
form.submit(); | |
} | |
// Paste into browser console when viewing a Gist (including your own) to fork it | |
forkGist(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var submitForm = function(config) { | |
if (!config) { | |
throw new Error(); | |
} | |
else { | |
config.method = config.method || 'post'; | |
config.data = config.data || {}; | |
config.url = config.url || (function() { | |
throw new Error('Missing required `url` argument'); |