- rocketcal.cc, a Factorio space platform blueprint optimizer
- leopard.sh, a package manager for PowerPC Macs, written in Bash
- A Lisp interpreter in C: 1, 2, 3, 4, 5, 6, 7, 8, [9](https://gist.github.com/cellularmitosis
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
[ | |
{ | |
"name":"ABAP", | |
"type":"programming", | |
"extensions":[ | |
".abap" | |
] | |
}, | |
{ | |
"name":"AGS Script", |
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
// ninjaVanish hides from webdriver/headless browser detection | |
// | |
// Focused specifically on HeadlessChrome / Puppeteer. | |
// When using Puppeteer this should be instrumented with the | |
// `Page.evaluateOnNewDocument()` method which injects our code | |
// after the document loads but before any scripts run | |
// | |
// Techniques leveraged are: | |
// - Removes "Headless" from User-Agent | |
// - Deletes `navigator.webdriver` to mimick standard navigator object properties |
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 run(input, parameters) { | |
const appNames = []; | |
const skipAppNames = []; | |
const verbose = true; | |
const scriptName = 'close_notifications_applescript'; | |
const CLEAR_ALL_ACTION = 'Clear All'; | |
const CLEAR_ALL_ACTION_TOP = 'Clear'; | |
const CLOSE_ACTION = 'Close'; |
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 app = Application.currentApplication() | |
app.includeStandardAdditions = true | |
function getJSON(path) { | |
const fullPath = path.replace(/^~/, app.pathTo('home folder')) | |
const contents = app.read(fullPath) | |
return JSON.parse(contents) | |
} | |
function run() { |