| Property | Value | Evidence |
|---|---|---|
| Controller | SSD1677 | Command set, LUT format (5x42 bytes), register layout |
| Diagonal | 3.68" | Alibaba listing + mechanical drawing; sqrt(51.84² + 77.76²) = 93.5mm = 3.68" |
| Buffer resolution | 792 x 528 | Constructor param, buffer size = 52,272 bytes (99 bytes/row x 528 rows) |
| Hardware resolution | 792 x 600 | CMD 0x61 data: [0x03, 0x18, 0x02, 0x58] → (0x0318=792) x (0x0258=600) |
| GPIO | Function | Direction | Evidence |
|---|---|---|---|
| 0 | I2C SCL | Bidir (OD) | Wire.begin(sda=20, scl=0, freq=400000) in sub_42004146 |
| 1 | Button ADC (primary) | Analog In | analogRead(1) in sub_42006294 — 4-button resistor ladder |
| 2 | Button ADC (secondary) | Analog In | analogRead(2) fallback in sub_42006294 — 2 buttons |
| 3 | Power/Wake input | Digital In | digitalRead(3) in sub_4200D0B6, triggers power-on sequence |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.13" | |
| # dependencies = [ | |
| # "httpx>=0.28.1", | |
| # "python-decouple>=3.8", | |
| # "sh>=2.2.2", | |
| # ] | |
| # [tool.uv] |
| """fix the creation date of some documents in paperless-ngx""" | |
| import datetime as dt | |
| from urllib.parse import urljoin | |
| import requests | |
| class Session(requests.Session): | |
| """https://stackoverflow.com/a/51026159/7410886""" |
I need to use GlobalProtect because it's becoming the only VPN to access resources in my school. The VPN client is simple enough, but it does two annoying things:
- Registers itself to autostart on login
- Doesn't provide you with a simple 'quit' action
Here I'll show you how I fixed both issues in macOS 12.2 (Monterey).
https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/22MD4KA_MP7/FWLatestVersion.txt https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/27MD5KA_MP4/FWLatestVersion.txt https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/27MD5KL_TBT_PD/FWLatestVersion.txt https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/24MD4KL_TBT_PD/FWLatestVersion.txt
https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/22MD4KA_MP7/ https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/27MD5KA_MP4/ https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/27MD5KL_TBT_PD/ https://lmu.lge.com/ExternalService/lgscreenmanager/mac/FW/24MD4KL_TBT_PD/
