HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hikarudo

no profile record

comments

hikarudo
·há 19 dias·discuss
Fun fact: one of Yann LeCun's first 'deep learning' projects was on OCR for postal codes (MNIST).
hikarudo
·há 2 meses·discuss
In Japan, I learned to drink water upside down to stop hiccups. Works for me, whereas drinking normally doesn't.
hikarudo
·há 2 meses·discuss
Thanks for the correction. You're absolutely right.
hikarudo
·há 2 meses·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
·há 3 meses·discuss
WhatsApp is end-to-end encrypted. No one at Meta can read your messages.
hikarudo
·há 3 meses·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
·há 3 meses·discuss
Also checkout Deepmind's "The Gemma 4 Good Hackathon" on kaggle:

https://www.kaggle.com/competitions/gemma-4-good-hackathon
hikarudo
·há 4 meses·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
·há 4 meses·discuss
Why 25%, shouldn't it be 12.5%? 8 ECC bits for every 64 bits.
hikarudo
·há 9 meses·discuss
A gentleman's gentleman!
hikarudo
·há 6 anos·discuss
I would love to have a link to that piece about software reuse in the large vs in the small!