HN user

alex_suzuki

1,767 karma
Posts43
Comments567
View on HN
gizmodo.com 13d ago

Meta Is Toying with the Idea of Smart Glasses That Record All the Time

alex_suzuki
2pts1
www.theverge.com 2mo ago

Canva apologizes after its AI tool replaces 'Palestine' in designs

alex_suzuki
79pts31
status.bsky.app 3mo ago

Bluesky Is Down

alex_suzuki
21pts10
www.aboutamazon.com 3mo ago

Amazon CEO Andy Jassy's 2025 Letter to Shareholders

alex_suzuki
2pts0
finance.yahoo.com 3mo ago

Musk asks SpaceX IPO banks to buy Grok AI subscriptions, NYT reports

alex_suzuki
2pts0
strich.io 6mo ago

Embedding WebAssembly in QR Codes

alex_suzuki
1pts0
alexsuzuki.com 8mo ago

Cretaceous Software Engineering – Why I don't use AI to write code

alex_suzuki
3pts0
alexsuzuki.com 9mo ago

Cretaceous Software Engineering – Why I don't use AI to write code

alex_suzuki
3pts0
strich.io 1y ago

Show HN: Embedding WebAssembly in QR Codes

alex_suzuki
7pts1
www.forbes.com 1y ago

The X (Twitter) to Bluesky Exodus

alex_suzuki
11pts4
help.thesun.co.uk 1y ago

The Sun and other publications roll out "Pay to Reject personalized ads"

alex_suzuki
26pts31
news.ycombinator.com 1y ago

Ask HN: Fine-tuning video generation models with reference video data

alex_suzuki
1pts0
twitter.com 2y ago

Windows Government Edition (Debloated)

alex_suzuki
3pts0
medium.com 2y ago

I'm an Old Fart and AI Makes Me Sad

alex_suzuki
205pts302
twitter.com 2y ago

Playing Snake on Ubiquiti Etherlighting Switch

alex_suzuki
2pts0
news.ycombinator.com 2y ago

Ask HN: Helpdesk/ticketing software for small SaaS company

alex_suzuki
9pts14
strich.io 2y ago

Show HN: Strich – Barcode scanning for web apps

alex_suzuki
78pts63
betterprogramming.pub 3y ago

I Almost Burned Out as a Software Engineer, So You Don’t Have To

alex_suzuki
1pts0
www.brandonsanderson.com 3y ago

Outside: Why Brandon Sanderson likes to write

alex_suzuki
19pts4
news.ycombinator.com 3y ago

Ask HN: Google Ads account suspended immediately after creation, what can I do?

alex_suzuki
1pts0
finance.yahoo.com 3y ago

Warren Buffet’s Berkshire Hathaway slashes stake in TSM, buys more Apple

alex_suzuki
2pts0
news.ycombinator.com 3y ago

Ask HN: Best practices for distributing a commercial JavaScript library

alex_suzuki
1pts0
medium.com 3y ago

Being a Solo Software Entrepreneur at 40

alex_suzuki
182pts70
news.ycombinator.com 4y ago

Ask HN: Non-technical considerations for Low-touch SaaS

alex_suzuki
1pts3
twitter.com 4y ago

Vitalik Buterin: Ethereum is neutral, I am not

alex_suzuki
8pts1
news.ycombinator.com 4y ago

Ask HN: Short-depth rack server for home lab recommendation

alex_suzuki
3pts6
news.ycombinator.com 4y ago

Ask HN: How do you manage kids, IT job and relationship without going crazy?

alex_suzuki
8pts7
blog.classycode.com 4y ago

The Window Watcher – A Smarter Office Using LoRaWAN

alex_suzuki
2pts0
www.init7.net 5y ago

Symmetric 25 Gbit/s Fiber internet access in Switzerland

alex_suzuki
5pts1
blog.classycode.com 5y ago

Obtaining the CE marking for an electronic device – Part 1

alex_suzuki
3pts0

My biggest gripe with AI is that I struggle to come up with even one real problem that it has solved in my daily life, and that of my family and friends.

Yes it might have made me a bit faster at some things I do for work. But it seems to me that we face so many challenges as a civilization, and AI doesn’t actively help with any of them? Unless you buy into the narrative that it will somehow usher in a golden age of abundance where everyone is taken care of and nobody needs to work anymore (utter BS in my opinion). The amount of capital flowing into it, that is then not available for other causes, is completely mind-boggling to me.

Nothing prevents them from removing CarPlay in an update, though? Unless you make sure to never connect the car to the internet. Some garages will update FW for you unasked I hear.

thin wrapper on the built-in RichEdit control

UWP abomination they call Notepad

Kind of weird for both of those things to be true. I thought the latter was mostly the former. But I’ve been away from Windows for a loooooong time it seems.

Some years ago, I used Box2D from Python to get a couple of bodies moving naturally in a 2D plane, lightly disturbed by random impulses (like water lilies in a pond when it's raining). It was a fun project and working with Box2D was pleasant. Looking forward to using Box3D!

This is super cool, thank you!

The SVG is actually generated by Zint itself, only lightly patched in the wrapper. Zint is a pretty old barcode generator (not meant disrespectfully, quite the opposite actually), it's quite possible that some of its decisions when rendering to SVG are out of date or very conservative. The use of id/global namespace does feel like a potential pain point though, which I will take up with the upstream project.

The benefit of WASM in this case is that you can wrap a mature library written in C/C++ (in this case, Zint), and run it in a runtime that supports WASM, e.g. the browser. There's plenty of people who occasionally need to create barcodes, and not in some industrial, automated way, and a browser is just an easy way to accomplish that. Yes, you have 1MB loaded when you load the page, but hopefully that will be served from a cache.

Shameless plug for my web-based Zint frontend: https://barcode.new (in-browser WASM)

I wrote it specifically because most online barcode generators don’t support vector output or suck in some other way: ads, signup necessary, code payload exposed to server-side processing etc.

It can’t, at least for Code 128? There’s a text field that you enter the text into, and then the start/stop/checksum characters are computed.

This would be more interesting if you wouldn’t need to calculate checksums yourself, and could just write the barcode value. Good luck doing that with something like Reed-Solomon (QR, Data Matrix, etc.) or the shenanigans they’re doing with GS1 DataBar.

Ah, thank you! I kind of assumed it would be coming soon as this post was dated as “today”, and it seemed illogical for the next post to already be out. :)