HackerTrans
TopNewTrendsCommentsPastAskShowJobs

delian66

no profile record

Submissions

Lil Snack

lilsnack.com
2 points·by delian66·2 mesi fa·0 comments

Abject – An {Abject} Horror

abject.world
1 points·by delian66·3 mesi fa·1 comments

Why PC Gaming Audio is Broken (and how it's holding you back) [video]

youtube.com
1 points·by delian66·10 mesi fa·0 comments

New Science Fiction Could Help Us Improve AI

scientificamerican.com
2 points·by delian66·anno scorso·0 comments

Influencing human–AI interaction by priming beliefs about AI

media.mit.edu
1 points·by delian66·anno scorso·0 comments

comments

delian66
·2 mesi fa·discuss
On the homepage, you have to change: `git clone github.com/xs-lang0/xs && cd xs && make` to: `git clone https://github.com/xs-lang0/xs && cd xs && make`
delian66
·3 mesi fa·discuss
The Things That Think

What if objects could explain themselves? The Ask Protocol gives every object a voice.
delian66
·4 mesi fa·discuss
It is chaotic crap.
delian66
·8 mesi fa·discuss
Please name it, so that we can know to avoid it and its products.
delian66
·8 mesi fa·discuss
4M requests/day is ~46 requests/second , for content, that could be cached a lot. Even if you have spikes that are 100x bigger than the average, that would be 4600r/s which does not seem like much in 2025.
delian66
·9 mesi fa·discuss
Every other platform tends to be either worse, locked or both.
delian66
·12 mesi fa·discuss
> Heck, you can even pay for a good search engine!

Can you recommend one?
delian66
·12 mesi fa·discuss
I still use both emacs and jed.

jed starts very fast and has much lower memory usage, so it is well suited for quick edits of configuration files and scripts and other workflows, where you start your editor in your shell, instead of the other way around.

emacs (through packages) can be turned into a custom IDE for a lot of languages, but takes more disk space and uses more RAM.
delian66
·12 mesi fa·discuss
Jed's editor is customizable and programmable, through SLANG scripts.
delian66
·anno scorso·discuss
> Good AR glasses are already available

Which ones do you think are good?
delian66
·anno scorso·discuss
They will stop, or at least their consumption/lifestyle will stop.
delian66
·anno scorso·discuss
> Obviously it wasn't the only one produced at the time.

It is not obvious at all to me. Where are the others like it found?
delian66
·anno scorso·discuss
What are the possibilities that you see?
delian66
·anno scorso·discuss
It may have been A/B tested, and people do prefer the "INTIMATE SERVICE" version more...
delian66
·anno scorso·discuss
.
delian66
·anno scorso·discuss
What did he predict?
delian66
·anno scorso·discuss
What is that term?
delian66
·anno scorso·discuss
Do you think your comment made the world, and HN specifically a better place?
delian66
·anno scorso·discuss
What is your definition of slop?
delian66
·4 anni fa·discuss
> For instance, languages exist for 64-bit architecture that have binaries less than 400 bytes in size.

In V (https://github.com/vlang/v/) for example, with the currently experimental native backend, you can produce executables, that are < 400 bytes:

    $ cat examples/hello_world.v
    println('Hello, World!')
    $ ./v -b native -o hw examples/hello_world.v
    $ ls -l hw
    -rwxrwxr-x 1 delian delian 183 Mar 13 17:51 hw
    $ ./hw
    Hello, World!