Skip to content

Instantly share code, notes, and snippets.

View elibosley's full-sized avatar
🕶️
.

Eli Bosley elibosley

🕶️
.
View GitHub Profile
@elibosley
elibosley / archive-all-facebook-messages.js
Last active March 6, 2024 03:36 — forked from tedmiston/archive-all-facebook-messages.js
Archive all of the messages in your Facebook Messages Inbox
function archive_all(testOnly) {
messages = $("._5blh")
console.log("Found", messages.length, "messages on messsenger.");
if (!testOnly) {
for (i = 0; i < messages.length; i++) {
try {
messages[i].click()// open dialog
$("li:contains('Archive')").last().click()
@elibosley
elibosley / VolumeKnobOmni.ahk
Created June 4, 2019 02:16
Soundblaster Omni 5.1 Sound Control With AutoHotKey
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;#InstallKeybdHook
#SingleInstance
#MaxHotkeysPerInterval 1000
VolumeSet(number) {