-
Kinesis Freestyle (Terrible key switches. Mushy and un-lovable)
-
Kinesis Freestyle Edge (Traditional layout with too many keys, mech switches, proably too big to be tented easily/properly)
-
Matias Ergo Pro (Looks pretty great. Have not tried.)
-
ErgoDox Kit (Currently, my everyday keyboard. Can buy pre-assembled on eBay.)
-
ErgoDox EZ (Prolly the best option for most people.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
link to latest gist: https://gist.github.com/joric/61a8eb1501f36c8e57408a035cf5a8b0 | |
link to issue: https://github.com/telegramdesktop/tdesktop/issues/26369 | |
how to find signature: | |
1. open Telegram.exe in idaq64.exe | |
2. press g, look for DwmSetWindowAttribute (see https://github.com/desktop-app/lib_ui/blob/master/ui/platform/win/ui_window_win.cpp) | |
3. when it loads, context menu on DwmSetWindowAttribute, list cross references to | |
4. try a few, in my case it was 6-th from the top, click on it to go to disassembly | |
5. find start of the subroutine, switch to Hex View-1 tab, copy hex, switch back to disassembly, use toolbar < > to navigate history, repeat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2022 - Peter Johan Salomonsen | |
*/ | |
setBPM(50); | |
addInstrument('piano'); | |
addInstrument('string'); | |
addInstrument('drums'); | |
addInstrument('guitar'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
A small script to convert a .cix (codeintel schema) file into | |
a python stub module, for use in auto-completion. | |
https://community.activestate.com/faq/codeintel-cix-schema | |
Requires jinja2 for the output template format | |
''' |