Bypassing Google's big anti-adblock update
0x44.xyz
Hacking Coroutines into C
wiomoc.de
Switching to Claude Code and VSCode Inside Docker
timsh.org
Kimi k2 largest open source SOTA model?
github.com
MacPaint Art from the Mid-80s Still Looks Great Today
blog.decryption.net.au
Chrome's hidden X-Browser-Validation header reverse engineered
github.com
Parse, Don't Validate (For C)
lelanthran.com
Edward Burtynsky's monumental chronicle of the human impact on the planet
newyorker.com
Lost Chapter of Automate the Boring Stuff: Audio, Video, and Webcams in Python
inventwithpython.com
The fish kick may be the fastest subsurface swim stroke yet (2015)
nautil.us
A better Ghidra MCP server – GhidrAssistMCP
github.com
Two-step system makes plastic from carbon dioxide, water and electricity
phys.org
Show HN: I made a JSFiddle-style playground to test and share prompts fast
langfa.st
HNSW as abstract data structure: video intro to Redis vector sets
youtube.com
New Date("wtf") – How well do you know JavaScript's Date class?
jsdate.wtf
Supreme Court's ruling practically wipes out free speech for sex writing online
ellsberg.substack.com
Second Variety, by Philip K. Dick (1953)
gutenberg.org
Working through 'Writing A C Compiler'
jollygoodsw.wordpress.com
Malware found in official gravityforms plugin indicating supply chain breach
patchstack.com
Exposing a web service with Cloudflare Tunnel (2022)
erisa.dev
Proposed NOAA Budget Kills Program Designed to Prevent Satellite Collisions
skyandtelescope.org
Light exposure at night predicts incidence of cardiovascular diseases
medrxiv.org
Vibe-Coding a PCB – surprisingly good
atomic14.substack.com
Programming Affordances That Invite Mistakes
thetechenabler.substack.com
One issue I always run into with browser-based terminal emulators or remote desktop clients is that common keyboard shortcuts like Ctrl-W might be used by the browser instead. Accidentally closing your browser tab and thus losing all your state when you just wanted to remove the previous word is quite annoying. It could be nice if a web app was able "capture" the keyboard somehow so that the browser doesn't react to any of its normal shortcuts, which is also commonly done in VM software and remote desktop apps, or I guess similar to input mode in Vim.
An open issue here[1] mentions that PWAs can actually define shortcuts that override browser ones which could be a solution. And someone also mentions using extensions that redefine the Ctrl-W shortcut as a workaround. But afaik both of these solutions rely on defining keyboard shortcuts beforehand which doesn't seem easy to do, given that you'd have to somehow define all of the shortcuts possibly used by your shell, editor, or any other terminal apps.
[1] https://github.com/tsl0922/ttyd/issues/1181