HackerTrans
TopNewTrendsCommentsPastAskShowJobs

fix4fun

no profile record

comments

fix4fun
·قبل 4 أشهر·discuss
Digression: Nowadays when RAM is expensive good old zram is gaining popularity ;) Try to check on trends.google.com . Since 2025-09 search for it doubled ;)
fix4fun
·قبل 4 أشهر·discuss
It's a beautiful idea :D

Imagine then, after many years during some awards: and the best support role goes to ... NMAP :D
fix4fun
·قبل 4 أشهر·discuss
Good to find another fan of asianometry channel ;)

I agree, this story above would be a perfect for another asianometry document.
fix4fun
·قبل 4 أشهر·discuss
Nice project. Respect :)

I worry only how long it will be supported? I hope there will be small community maintaining it ;)

Once again nice project and good luck.
fix4fun
·قبل 4 أشهر·discuss
Interesting how many people already are playing with these API keys ? ;)
fix4fun
·قبل 4 أشهر·discuss
Fear of failure is a stumbling block for science.

That's why many universities declare in their charter that research doesn't have to be practical. The practicality of RSA asymmetric encryption only became practical with the advent of the internet ;)
fix4fun
·قبل 5 أشهر·discuss
Thank you marginalia_nu for article and this comment (word stats).

I got similar feeling. I'm new here, but got a feeling that some comments are like bot generated.

Such low p-values are proof that something is going on.

Hipotesis (after your recent word statistics): that some bots are "bumping up" AI related subjects. Maybe some companies using LLM tools want to promote some their products ;)

marginalia_nu respect for your work :)
fix4fun
·قبل 5 أشهر·discuss
My first think after reading title was "Silicon Valley" series (2014) and episode with Gilfoyle and taking control of smart fridges ;) Sorry. A but out of topic, but I had to mention ;)
fix4fun
·قبل 5 أشهر·discuss
Thank you for checking :) I was unable to find any details about it. 30 days are impressive, so I was curious if there is some special battery in Time 2.
fix4fun
·قبل 5 أشهر·discuss
Any specs about Pebble 2 battery capacity ?
fix4fun
·قبل 5 أشهر·discuss
I think the same. Why overcomplicate and just use some online Spreadsheet like from Google Docs. The same or even less effort.
fix4fun
·قبل 5 أشهر·discuss
Yes, that's true ASR-33 was first application, but IBM has impact on ANSI/ASA comeete and ASCII standardisation. In 1963 IBM System/360 was using BCD with digits quick "parse" and in it's peripherals. I remember it from some interview with old IBM tech employee ;)
fix4fun
·قبل 5 أشهر·discuss
For me was interesting that all digits in ASCII starts with 0x3, eg. 0x30 - 0, 0x31 - 1, ..., 0x39 - 9. I thought it was accidental, but in real it was intended. This was giving possibility to build simple counting/accounting machines with minimal circuit logic with BCD (Binary Coded Decimals). That was wow for me ;)
fix4fun
·قبل 5 أشهر·discuss
Really nice project – respect :) Finding that boot ROM mode by bridging GPIO lines is a great catch. Having a hardwired 'safety net' makes custom firmware projects much more viable. When you were testing the flasher, did you find the CXD2687's flash interface to be deterministic in its failure modes, or did you run into any race conditions/timing issues during the erase/write cycles?
fix4fun
·قبل 5 أشهر·discuss
I got similar experience. Using Berkeley DB until I found SQLite ;) Of course it is not directly key/value, but small size, simplicity and IO performance was amazing for me.
fix4fun
·قبل 5 أشهر·discuss
I think the same. Really nice project and good trick with hashing tokens.

PS. There left 21 bytes (21 * 0x00 - from 0x01e0 to 0x01fd). Maybe something can be packed there ;)
fix4fun
·قبل 5 أشهر·discuss
Nice tool. Do you know maybe similar tool for MySQL ?
fix4fun
·قبل 5 أشهر·discuss
Thanks for sharing your experiences :)

You mentioned "harness engineering". How do you approach building "actual programmed tools" (like screenshot scripts) specifically for an LLM's consumption rather than a human's? Are there specific output formats or constraints you’ve found most effective?
fix4fun
·قبل 5 أشهر·discuss
Really nice project :)
fix4fun
·قبل 5 أشهر·discuss
`git bisect` is interesting option. I haven't heard about it before. Thanks for info. Still learning something ;)

I'm old school. I used to do "manual bisection" on git history by just `git checkout <commit_id>` until I find first introducing bug commit.

Then another "bisection" on commit changes until minimal change found.

Deterministic bugs are quite "fine". For me personally worst are randomly occurring bugs in specific conditions for eg. some race conditions.