Skip to content

Instantly share code, notes, and snippets.

Dreams, shattered... across the globe
on setDarkMode(shouldBeDark)
set paneID to "com.apple.preference.general"
tell application "System Events"
if dark mode of appearance preferences is shouldBeDark then return
end tell
set paneWasOpen to false
@citrusui
citrusui / Mojave-dynamic-wallpaper-notes.md
Created June 7, 2018 01:25 — forked from ole/Mojave-dynamic-wallpaper-notes.md
Reverse-engineering the dynamic wallpaper file format in macOS Mojave.

The dynamic wallpaper in MacOS Mojave is a single 114 MB .heic file that seems to contain 16 embedded images.

It also contains the following binary plist data in its metadata under the key "Solar". It's an array of 16 items, each with four keys:

@citrusui
citrusui / bios.txt
Last active June 11, 2018 21:46 — forked from lunasorcery/im-gay.txt
Compressed sprite data for the "I'M GAY" gba_bios.bin mod.
24 40 03 00 0F 00 40 01 01 00 01 42 42 43 43 C4
44 05 C4 04 C4 0F C4 02 0A 03 C3 01 0E 0C 08 0D
07 09 06 0B AA AB 48 75 EB B8 9C AA 0F FD 85 FA
4F 57 17 E9 79 E7 49 7C 5F 67 FD 47 FE 9C EE 24
FD ED 5F 46 94 57 7C 66 49 0B 40 84 0F AB 2B FA
57 67 24 DC A1 9F EC FF 2A 3E 54 F1 AD AB 52 C5
BE F2 75 91 82 81 2B D6 D6 8B 80 65 76 F2 3F EC
61 FF 1F 75 59 59 75 FC A2 24 D7 D6 0A 65 3C 11
E3 B3 66 A4 F9 5F 8E FF F9 BA FA 7F 10 A7 92 73
6E 39 4C 21 7F 9C 7F C4 FF AD FC B8 33 AE EE E2
/*
Traverse through all the Text Nodes in a page and force them to display hidden characters
Sources:
Hacker news: https://news.ycombinator.com/item?id=16749422
user: tim333's js fiddle https://jsfiddle.net/tim333/np874wae/13/
medium post: https://medium.com/@umpox/be-careful-what-you-copy-invisibly-inserting-usernames-into-text-with-zero-width-characters-18b4e6f17b66
TODO:
@citrusui
citrusui / NewCoolWav.Apex.TXT.md
Created March 18, 2018 19:36
PPQ 7.192 40 FL OZ.

I was walking by the beach, wondering what had become of my life. The seaside breeze let on for what seemed an eternity. In that moment I was alone with my own thoughts. This moment would last forever.

It had been quite a while since I was this happy. The simple things in life. Outside. Back to before I was given technology, my mind was at ease. Why can't it be like that again?

Before I knew it, the horizon fell half-past dusk. A shame it had to end this way. I hope they will remember me the best they can.

function Note(e) {
this.coord = e
}
function Interval(e) {
this.coord = e
}
function add_addsubtract_func(e) {
return e.add = function(e) {
Side A
Jaylib - The Heist
Suicide Year - Interest
SLUGABED - Read Buds
Onra - My Comet
Gucci Mane - I'm The Shit (Schlomo Remix)
Atmosphere - @
Fatima Al Qadiri - Ghost Raid
BADBADNOTGOOD - Confessions
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@citrusui
citrusui / imageHandler.js
Created January 27, 2018 16:12
Handling Images in JavaScript
function imageHandler(action, image, callback) {
switch (action) {
case 'fallback':
if (image.hasAttribute('data-fallback')) {
image.style.backgroundColor = image.getAttribute('data-fallback');
}