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_CLASSES_ROOT\*\shell\Gist] | |
@="Publish to Gist (Public)" | |
"Icon"="C:\\Users\\hayley\\AppData\\Local\\GitHubDesktop\\app.ico" | |
[HKEY_CLASSES_ROOT\*\shell\Gist\command] | |
@="\"C:\\Program Files\\GitHub CLI\\gh.exe\" gist create \"%1\" --web --public" | |
[HKEY_CLASSES_ROOT\*\shell\GistSecret] |
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
const fs = require('fs'); | |
if (process.argv.length != 3) { | |
console.log('Usage: node binary_rank <filename>'); | |
process.exit(1); | |
} | |
const filename = process.argv[2]; | |
const isValidAscii = (b) => { |
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_CLASSES_ROOT\*\shell\HxD] | |
@="Open with &HxD" | |
[HKEY_CLASSES_ROOT\*\shell\HxD\command] | |
@="\"C:\\Program Files\\HxD\\HxD.exe\" \"%1\"" | |
[HKEY_CLASSES_ROOT\*\shell\ImHex] | |
@="Open with &ImHex" |
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
using System.Text; | |
namespace indyresources | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
ParseResources(File.OpenRead(@"D:\SteamLibrary\steamapps\common\The Great Circle\base\gameresources_pc.resources")); | |
} |
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
// Go to https://www.youtube.com/playlist?list=WL | |
setInterval(function() { | |
document.querySelector('#primary button[aria-label="Action menu"]').click(); | |
var things = document.evaluate('//span[contains(text(),"Watch later")]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); | |
for (var i = 0; i < things.snapshotLength; i++) { | |
things.snapshotItem(i).click(); | |
} | |
}, 1000); |
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
[ | |
{ | |
"episodeNumber": 1, | |
"episodeInSeason": 1, | |
"title": "Unlocking Disaster", | |
"incident": "United Airlines Flight 811", | |
"incidentWikiPage": "https://en.wikipedia.org/wiki/United_Airlines_Flight_811", | |
"airDate": "2003-09-10T00:00:00.000Z", | |
"description": "On 24 February 1989, part of the right-side fuselage of United Airlines Flight 811 rips off, ejecting nine people from the aircraft and causing explosive decompression. The flight later lands safely at Honolulu without any more loss of life. It was later determined that an electrical short circuit caused the cargo door to open.\nNote: This accident is covered again in the Season 24 episode 'Terror Over The Pacific'.\n\n\nType of aircraft: Boeing 747-100", | |
"season": 1 |
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
[ | |
{ | |
"title": "The Worst Crashes of 90s and 00s | Mayday Air Disaster", | |
"link": "https://www.youtube.com/watch?v=r6m9AM1cOxY" | |
}, | |
{ | |
"title": "When Nature Fights Back! | Mayday Air Disaster", | |
"link": "https://www.youtube.com/watch?v=V5F4oJeWnN8" | |
}, | |
{ |
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
using System; | |
using System.Management; | |
namespace ExplorerHistory | |
{ | |
internal class ProcessWatcher | |
{ | |
private ManagementEventWatcher _startWatch; | |
private ManagementEventWatcher _stopWatch; |
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
// ==UserScript== | |
// @name quora bypass | |
// @version 1 | |
// @grant none | |
// @match https://www.quora.com/* | |
// ==/UserScript== | |
document.querySelectorAll('.qu-zIndex--blocking_wall').forEach((el) => { | |
el.remove() | |
}); |
NewerOlder