Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
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() { |
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'; |
// 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 |
[ | |
{ | |
"name":"ABAP", | |
"type":"programming", | |
"extensions":[ | |
".abap" | |
] | |
}, | |
{ | |
"name":"AGS Script", |