Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

#!/usr/bin/env osascript -l JavaScript | |
const App = Application.currentApplication(); | |
App.includeStandardAdditions = true; | |
const kCFPrefsFeatureFlagsDir = '/Library/Preferences/FeatureFlags/Domain'; | |
const kCFPrefsFeatureEnabledKey = 'Enabled'; | |
const kUIKitDomainPrefsTemporaryPath = '/tmp/UIKit.plist'; | |
const kUIKitRedesignedTextCursorKey = 'redesigned_text_cursor'; |
// ==UserScript== | |
// @name ChatGPT Hotkeys | |
// @description Refresh and Navigate ChatGPT | |
// @include https://chat.openai.com/* | |
// ==/UserScript== | |
(function () { | |
var url = 'https://chat.openai.com/?model=gpt-4'; | |
var currentIndex = -1; |
#!/bin/bash -e | |
#------------------------------------------------------------------------------------- | |
# Summary: Executes commands to... | |
# * Check/output currently installed version of gnupg | |
# * Change into the brew repo/install directory | |
# * Find the git commit-id of the specified version of gnupg | |
# * git branch/switch to the commit-id | |
# * replace the brew installed version with the specified version (and pin it) | |
# * clean up the branch, switch back to master, and remove cached files | |
# * Check/output the newly installed version of gnupg |
#!/bin/zsh | |
# shellcheck shell=bash | |
# addloc 0.2.1 (beta) | |
# add CLIs to /var/db/locationd/clients.plist | |
export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:/opt/homebrew/bin:/opt/homebrew/sbin:/opt/local/bin:/opt/local/sbin:"$HOME"/.local/bin:"$HOME"/.local/sbin | |
rehash &>/dev/null |
function toggleFocus(focus) { | |
const app = Application("System Preferences") | |
const pane = app.panes.byId("com.apple.preference.notifications").anchors.byName("Focus") | |
app.reveal(pane) // Open the preference pane | |
// Useful way of inspecting the UI hierarchy of an open app: | |
// Application("System Events").applicationProcesses.byName("System Preferences").entireContents() | |
const ui = Application("System Events").applicationProcesses.byName("System Preferences").windows.byName("Notifications & Focus").tabGroups.at(0) |
In order to keep filters up to date, please use this repo.
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() { |
;; [15:04] <_death> sure, it's not too difficult.. you could also pick an existing syntax | |
;; I answered binrapt after he talked about template engines. | |
;; I don't think I ever wrote a template engine, so why did I say that? | |
;; Anyway, let's write a template engine. | |
(defpackage #:snippets/template-engine | |
(:use #:cl) | |
(:import-from #:alexandria | |
#:emptyp) | |
(:import-from #:sb-ext |
// ==UserScript== | |
// @name Prevent link mangling on Google | |
// @namespace LordBusiness.LMG | |
// @match https://www.google.com/search | |
// @grant none | |
// @version 1.1 | |
// @author radiantly | |
// @description Prevent google from mangling the link when copying or clicking the link on Firefox | |
// ==/UserScript== |