Skip to content

Instantly share code, notes, and snippets.

@JokeUrSelf
JokeUrSelf / custom_animation_duration_android.md
Created December 31, 2024 21:56
Set custom animation durations on Android phones

Set custom animation durations on Android phones

  1. Install minimal adb cli tool, connect your android phone to the computer and run the shell
adb devices
adb shell
  1. Set the animation duration (0.25 in this example)
@JokeUrSelf
JokeUrSelf / Cookie.ts
Created October 3, 2024 00:48
Super compact cookie getter
@JokeUrSelf
JokeUrSelf / CapsLockCtrlEscape.ahk
Created June 27, 2022 14:48 — forked from sedm0784/CapsLockCtrlEscape.ahk
AutoHotkey script to map Caps Lock to Escape when it's pressed on its own and Ctrl when used in combination with another key, à la Steve Losh. Adapted from one that does something similar with the Ctrl Key on the Vim Tips Wiki (http://vim.wikia.com/wiki/Map_caps_lock_to_escape_in_Windows?oldid=32281). (Plus contribs from @randy909 & @mmikeww.)
g_LastCtrlKeyDownTime := 0
g_AbortSendEsc := false
g_ControlRepeatDetected := false
*CapsLock::
if (g_ControlRepeatDetected)
{
return
}