HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hikarudo

no profile record

comments

hikarudo
·19 days ago·discuss
Fun fact: one of Yann LeCun's first 'deep learning' projects was on OCR for postal codes (MNIST).
hikarudo
·2 months ago·discuss
In Japan, I learned to drink water upside down to stop hiccups. Works for me, whereas drinking normally doesn't.
hikarudo
·2 months ago·discuss
Thanks for the correction. You're absolutely right.
hikarudo
·2 months ago·discuss
It's not a market failure, it's just supply and demand. There are many computer components competing for the same resources (fabs, wafers). Demand for GPUs, RAM etc. has increased a lot due to AI, but supply is still the same due to new fabs being huge investments that take years to build. Of course the price goes up.
hikarudo
·3 months ago·discuss
WhatsApp is end-to-end encrypted. No one at Meta can read your messages.
hikarudo
·3 months ago·discuss
> Once you reach this stage, the only escape is to first cover everything with tests and then meticulously fix bugs

The exact same approach is recommended in the book "Working effectively with legacy code" by Michael Feathers, with several techniques on how to do it. He describes legacy code as 'code with no tests'.
hikarudo
·3 months ago·discuss
Also checkout Deepmind's "The Gemma 4 Good Hackathon" on kaggle:

https://www.kaggle.com/competitions/gemma-4-good-hackathon
hikarudo
·4 months ago·discuss
One trick I use all the time:

You're typing a long command, then before running it you remember you have to do some stuff first. Instead of Ctrl-C to cancel it, you push it to history in a disabled form.

Prepend the line with # to comment it, run the commented line so it gets added to history, do whatever it is you remembered, then up arrow to retrieve the first command.

$ long_command

<Home, #>

$ #long_command

<Enter>

$ stuff_1 $ stuff_2

<Up arrow a few times>

$ #long_command

<home, del>

$ long_command
hikarudo
·4 months ago·discuss
Why 25%, shouldn't it be 12.5%? 8 ECC bits for every 64 bits.
hikarudo
·9 months ago·discuss
A gentleman's gentleman!
hikarudo
·6 years ago·discuss
I would love to have a link to that piece about software reuse in the large vs in the small!