HackerTrans
TopNewTrendsCommentsPastAskShowJobs

delian66

no profile record

Submissions

Lil Snack

lilsnack.com
2 points·by delian66·2 เดือนที่ผ่านมา·0 comments

Abject – An {Abject} Horror

abject.world
1 points·by delian66·3 เดือนที่ผ่านมา·1 comments

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

youtube.com
1 points·by delian66·10 เดือนที่ผ่านมา·0 comments

New Science Fiction Could Help Us Improve AI

scientificamerican.com
2 points·by delian66·ปีที่แล้ว·0 comments

Influencing human–AI interaction by priming beliefs about AI

media.mit.edu
1 points·by delian66·ปีที่แล้ว·0 comments

The sorry state of open source multimedia

codecs.multimedia.cx
2 points·by delian66·2 ปีที่แล้ว·0 comments

comments

delian66
·2 เดือนที่ผ่านมา·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 เดือนที่ผ่านมา·discuss
The Things That Think

What if objects could explain themselves? The Ask Protocol gives every object a voice.
delian66
·4 เดือนที่ผ่านมา·discuss
It is chaotic crap.
delian66
·8 เดือนที่ผ่านมา·discuss
Please name it, so that we can know to avoid it and its products.
delian66
·8 เดือนที่ผ่านมา·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 เดือนที่ผ่านมา·discuss
Every other platform tends to be either worse, locked or both.
delian66
·12 เดือนที่ผ่านมา·discuss
> Heck, you can even pay for a good search engine!

Can you recommend one?
delian66
·12 เดือนที่ผ่านมา·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 เดือนที่ผ่านมา·discuss
Jed's editor is customizable and programmable, through SLANG scripts.
delian66
·ปีที่แล้ว·discuss
> Good AR glasses are already available

Which ones do you think are good?
delian66
·ปีที่แล้ว·discuss
They will stop, or at least their consumption/lifestyle will stop.
delian66
·ปีที่แล้ว·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
·ปีที่แล้ว·discuss
What are the possibilities that you see?
delian66
·ปีที่แล้ว·discuss
It may have been A/B tested, and people do prefer the "INTIMATE SERVICE" version more...
delian66
·ปีที่แล้ว·discuss
.
delian66
·ปีที่แล้ว·discuss
What did he predict?
delian66
·ปีที่แล้ว·discuss
What is that term?
delian66
·ปีที่แล้ว·discuss
Do you think your comment made the world, and HN specifically a better place?
delian66
·ปีที่แล้ว·discuss
What is your definition of slop?
delian66
·4 ปีที่แล้ว·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!