Effective total cost: $3–5/mo
Decide on an EC2 instance type:
- At AWS Console → EC2 → Instance Types, filter for ≥1 GB RAM and sort by price.
- t4g.micro is lowest.
| #NoTrayIcon | |
| #SingleInstance Force | |
| ; | |
| ; This scripts toggles between states raised and hidden of a Windows Terminal, | |
| ; or opens a new one if not opened, using `Super + T` or `Super + Enter` | |
| ; | |
| ; Supports multiple workspaces or virtual desktops. | |
| ; |
| import digitalio | |
| import board | |
| import usb_hid | |
| import time | |
| from adafruit_hid.keyboard import Keyboard | |
| from adafruit_hid.mouse import Mouse | |
| from adafruit_hid.keycode import Keycode | |
| from adafruit_hid.consumer_control import ConsumerControl | |
| from adafruit_hid.consumer_control_code import ConsumerControlCode |
| // prepend comment to each INT | |
| //@author sam_ | |
| //@category DOS | |
| //@keybinding | |
| //@menupath | |
| //@toolbar | |
| import java.io.BufferedReader; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.FileInputStream; |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| F12::ToggleTerminal() | |
| ShowAndPositionTerminal() | |
| { | |
| WinShow ahk_class CASCADIA_HOSTING_WINDOW_CLASS |
| Disable vim automatic visual mode on mouse select | |
| issue: :set mouse-=a | |
| add to ~/.vimrc: set mouse-=a | |
| my ~/.vimrc for preserving global defaults and only changing one option: | |
| source $VIMRUNTIME/defaults.vim | |
| set mouse-=a |