Skip to content

Instantly share code, notes, and snippets.

@Pibben
Pibben / dram.txt
Last active January 26, 2025 19:37
5V DRAM IC
FPM = Fast Page Mode
EDO = Extended Data Out
SCM = Static Column Mode
NBL = Nibble Mode
WPB = Write Per Bit
Model Maker Config Mode
@ihor-lev
ihor-lev / sublime_fix_home_end_keys.md
Last active March 5, 2025 19:32
Fix Sublime Text Home and End key usage on Mac OSX

Sublime Text Home/End keys default functionality jumps to the beginning and end of the file.

Fix Home and End keys to move the cursor to the beginning and end of lines.

Preferences > Key Bindings - User

Adding the following to the array:

{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },