HackerTrans
トップ新着トレンドコメント過去質問紹介求人

theblazehen

no profile record

投稿

Learning Is a Skill

blog.micr.dev
4 ポイント·投稿者 theblazehen·22 日前·0 コメント

ACE on a USB-HDMI Adapter

blazelight.dev
24 ポイント·投稿者 theblazehen·3 か月前·7 コメント

I dug into the Flipper One's firmware, and it's a pocket Linux PC

xda-developers.com
5 ポイント·投稿者 theblazehen·4 か月前·0 コメント

Claude, you are a cutie-pie

margaretatwood.substack.com
2 ポイント·投稿者 theblazehen·4 か月前·0 コメント

Dumping Lego NXT firmware off of an existing brick (2025)

arcanenibble.github.io
248 ポイント·投稿者 theblazehen·4 か月前·14 コメント

Charge a three-cell nickel-based battery pack with a Li-Ion charger (2012) [pdf]

ti.com
37 ポイント·投稿者 theblazehen·4 か月前·8 コメント

OpenAI, the US government, and persona built an identity surveillance machine

vmfunc.gg
4 ポイント·投稿者 theblazehen·5 か月前·0 コメント

Gwtar: A static efficient single-file HTML format

gwern.net
308 ポイント·投稿者 theblazehen·5 か月前·95 コメント

The Right Computer System for Digital Audio

manual.ardour.org
2 ポイント·投稿者 theblazehen·5 か月前·0 コメント

Start all of your commands with a comma (2009)

rhodesmill.org
655 ポイント·投稿者 theblazehen·5 か月前·244 コメント

Tell HN: Aden, A YC company, is growth hacking by luring devs with paid work

12 ポイント·投稿者 theblazehen·6 か月前·5 コメント

I used an agent to hunt vulns

blazelight.dev
2 ポイント·投稿者 theblazehen·6 か月前·0 コメント

An Agent for Acme

blazelight.dev
2 ポイント·投稿者 theblazehen·6 か月前·0 コメント

コメント

theblazehen
·9 日前·議論
There is! https://valetudo.cloud/
theblazehen
·13 日前·議論
Well that's on me for assuming :/ I assumed that it did, based on it being explained in the blog post
theblazehen
·13 日前·議論
Not necessarily. The RTS/CTS pins on the serial port are there for the device to tell the host "stop sending data, I need to process the data already sent"

The reason this doesn't work is that USB adapters don't have those pins, and thus assume you can send it at 30kbaud - not respecting when the device says it must pause sending data.

By introducing a static flow rate below what the CPU can handle, it should theoretically keep the flow rate below the threshold that the CPU starts to choke at
theblazehen
·先月·議論
I've implemented the same idea with OpenCL: https://github.com/theblazehen/vramblk

There is originally https://github.com/Overv/vramfs however that has the overhead of a FUSE filesystem + loop device when using as a swap device.

The performance is rather lackluster however, it's far from a miracle "now you effectively have more ram for a 90% performance drop" - it definitely feels like traditional swapping
theblazehen
·先月·議論
For me personally, it's because it retains the same window position, and I get back what I had before when it closes. If GUIs worked more like they did with windows in plan9, I'd definitely use them more
theblazehen
·2 か月前·議論
Yeah, copilot is only my backup - Codex and Claude are my primary, where it's per-token. Just looked up my user prompt count from my opencode db
theblazehen
·2 か月前·議論
I think we use it differently then, I tend to go heavy on the back and forth.

For speccing things out, I have a back-and-forth with the grill-me skill, break things down into tickets, as well as kicking off subagents. That said, I significantly overestimated the number of human messages I send.

My daily 90th percentile wrt number of prompts sent is sitting at 160 queries / day and average at 97 queries / day.

Ran an analysis of my last 2000 messages, with the following breakdown

Task delegation / execution: 23% Investigation / diagnosis / “what’s going on?”: 21% Planning / architecture / brainstorming: 15% Testing / verification / release ops: 10% Review / cleanup / quality control: 9% Course-correction / constraints / preferences: 8% Agent / ticket / workflow orchestration: 6% Providing context / evidence / pasted material: 4% Social reactions / acknowledgements / vibes: 2% Other: 2%
theblazehen
·2 か月前·議論
300 prompts in a day isn't that unreasonable to achieve on a heavy day? And Opus has a significant multiplier as well
theblazehen
·2 か月前·議論
> models are judged by GPT-4

An interesting choice
theblazehen
·3 か月前·議論
There's a hard limit of 4 displays on Nvidia, even if they're chained via MST - that is how I have a couple of them already. I don't have the PCI-e slots for a second GPU
theblazehen
·3 か月前·議論
HN second-chance bump just had to happen when I had a power outage... Back up now :)
theblazehen
·3 か月前·議論
I'm unironically working on a proxy that filters sites like reddit, hn, etc by using user provided LLM rules
theblazehen
·4 か月前·議論
A screenshot would still make it clear that that's all you're getting - and no extra chrome etc
theblazehen
·4 か月前·議論
Here's Claude playing Detroit: Become Human https://www.youtube.com/watch?v=Mcr7G1Cuzwk
theblazehen
·4 か月前·議論
Sure, however kids these days often can't socialize irl - should kids be isolated from friends because they're unable to have any private conversations at all?

During times in which I was unable to socialize irl (eg school holidays), and unable to talk to my friends online, I can confirm that the isolation was not good for my mental health.
theblazehen
·4 か月前·議論
I suspect you're hitting the page where they're running https://iocaine.madhouse-project.org/

Perhaps you got bot flagged or something
theblazehen
·4 か月前·議論
I enjoyed chatting to Opus 3 recently around recent world events, as well as more recent agentic development patterns etc
theblazehen
·4 か月前·議論
Ah, in my spaces (Involved in the proxy dev), most people have been using it for Opus. I suspect they may even have more of an issue with it, as they don't get the cost advantage of serving an in-house model
theblazehen
·4 か月前·議論
Most people have actually just been using Opus through antigravity
theblazehen
·5 か月前·議論
It can. For android, I have it dump screenshots and uiautomator xml dumps, and for web the playwright mcp.

I find that a critical step in agentic development is to close the loop for the LLM so it can get direct feedback without needing you to manually handle it.