Skip to content

Instantly share code, notes, and snippets.

View yrnehli's full-sized avatar
🕺
console.log((![]+[])[+[]]+([][[]]+[])[+[]]+([][[]]+[])[+!![]])

Henry Li yrnehli

🕺
console.log((![]+[])[+[]]+([][[]]+[])[+[]]+([][[]]+[])[+!![]])
View GitHub Profile
@GetVladimir
GetVladimir / Force-RGB-Color-on-M1-Mac.md
Last active May 9, 2025 13:16
Force RGB Color on M1 Mac

Force RGB Color on M1 Mac

How to Force RGB Color Output instead of YPbPr on your M1 Apple Silicon Mac for an External Monitor.

This step-by-step video tutorial will guide you through the procedure of forcing RGB color output on your M1 Mac.

Force RGB Color on M1 Mac

Here is the direct link to the video tutorial: https://www.youtube.com/watch?v=Z1EqH3fd0V4

The video also has Closed Captions (Subtitles) that you can enable, to make it easier to follow if needed.

@interface _UIBackdropView : UIView
-(id)initWithStyle:(long long)style;
-(long long)style;
@end
@interface SBFloatingDockPlatterView
@property (nonatomic, retain) _UIBackdropView * backgroundView;
@end
@interface SBFolderBackgroundView : UIView
@LazyDay
LazyDay / bootmac.cmd
Last active April 20, 2022 04:33
OS X 86 Reboot to windows, change default boot volume in clover, Siri shortcuts
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -File "C:\Users\ld\bootmac.ps1"
@nzec
nzec / README.MD
Last active May 7, 2025 02:47
DeezLoader Offical Page

Thanks to /u/zpoo32 for reporting several issues in this list!

Deemix

  • deemix: just the cli and the library
  • deemix-pyweb: the app with a GUI
  • deemix-server: just the server part of deemix-pyweb
@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active May 9, 2025 10:21
crack activate Office on mac with license file
@Darkhogg
Darkhogg / !RebootToOs.md
Last active March 17, 2025 14:44
"Reboot to {OS}" scripts for rEFInd Next Boot selection

Reboot to {OS}

This a collection of notes and files used in my quest to create "Reboot to Windows" and "Reboot to Linux" scripts (and desktop shortcuts) for Linux and Windows respectively that automatically reboot my system and instruct rEFInd to auto-select the appropriate OS entry.

General Information

The key for achieving this is to modify the EFI Variable PreviousBoot with GUID 36d08fa7-cf0b-42f5-8f14-68df73ed3740, which rEFInd uses to store the last entry selected in the menu and, if using the + default entry, will be used to select the default OS. By doing this, we trick rEFInd into booting the OS we choose without having to be physically there to press the keyboard.

@jimsynz
jimsynz / rgb_spectrum.c
Created January 5, 2011 20:59
Arduino sketch to cycle an RGB LED through the colour spectrum.
const int redPin = 11;
const int greenPin = 10;
const int bluePin = 9;
void setup() {
// Start off with the LED off.
setColourRgb(0,0,0);
}
void loop() {