Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
asabil
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
asabil
2mo ago
Incorrect translation, Allahu Akbar means “the god is the greatest” Allah is not a name that came with Islam but existed before, it just means deity. the Al prefix is the definite singular form. It just says one thing: god is a singleton an
2.
▲
Show HN: Local-first firmware analyzer using WebAssembly
(xray.boldwark.com)
8 points
by
asabil
6mo ago
|
0 comments
3.
▲
by
asabil
7mo ago
Sorry to disagree, but no, they are not dozens of different languages. The challenge with Arabic is that it has a rather large vocabulary, and different regions use slightly different vocabularies. That being said, Darija, or rather North A
4.
▲
by
asabil
7mo ago
Yes Arabic from 1000 years ago is very much understandable today[1]. [1] https://fluentarabic.net/arabic-unchanged-1000-years/
5.
▲
How I fell in love with Erlang
(boragonul.com)
394 points
by
asabil
11mo ago
|
249 comments
6.
▲
by
asabil
1y ago
Not Linux syscalls, they are a stable interface as far as the Linux kernel is concerned.
7.
▲
by
asabil
1y ago
`gen_server` is an abstraction over the a client sending a `request` that a server services to produce a `response` to be sent to the client. The `gen_server` implementation takes care of things like timeouts, servers terminating before a r
8.
▲
Erlang/OTP 28 Highlights
(erlang.org)
25 points
by
asabil
1y ago
|
2 comments
9.
▲
by
asabil
2y ago
Why do things have to be comparable? Why did you cherry pick infant mortality? Yes reducing infants mortality is one of the things where we improved.
10.
▲
by
asabil
2y ago
The most dangerous thing about Capitalism is imho its universal equivalence, its ability to make us covert everything into a monetary value. In other words, it’s just like a programming language where everything can be implicitly converted
11.
▲
by
asabil
2y ago
REINDEX INDEX CONCURRENTLY[1] [1]: https://www.postgresql.org/docs/current/sql-reindex.html
12.
▲
by
asabil
2y ago
Yes, but you don’t end up with different glyphs. Arabic script has letter shaping, that means a letter can have up to 4 shapes based on its position within the word. If you chop off the last letter, the previous one which used to have a “mi
13.
▲
by
asabil
2y ago
The underlying problem is lack of isolation, and this is an area where the Erlang process model shines: processes are fully isolated and you can send a signal externally to terminate any process you want.
14.
▲
by
asabil
2y ago
No global GC. Each erlang process does its own GC, and the GC only happens when the process runs out of space (ie. the heap and stack meet). You can for example configure a process to have enough initial memory so as not to ever run into GC
15.
▲
by
asabil
2y ago
GC determinism is one of the things you get. Another one is non cooperative asynchronous termination.
16.
▲
Erlang/OTP 27 Highlights
(erlang.org)
220 points
by
asabil
2y ago
|
49 comments
17.
▲
The Optimizations in Erlang/OTP 27
(erlang.org)
8 points
by
asabil
2y ago
|
1 comments
18.
▲
by
asabil
2y ago
Vala is very much used among other things by Frida. I have been involved with Vala in it’s early day and some hardcore GObject/C users never quite liked the C code that Vala generated although it was perfectly valid and exposed a ver
19.
▲
by
asabil
3y ago
> I don’t have an example of fully non-cooperative cancellation available off the top of my head. That would be Erlang.
20.
▲
by
asabil
3y ago
The UUID spec update has not been finalized yet. It would be quite unfortunate to end up with a UUID v7 in PostgreSQL that’s not quite the standardized one because the patch got merged too quickly. EDIT: here is the IETF working group page
21.
▲
by
asabil
3y ago
You might want to check out the Swedish Doro phones: https://www.doro.com/en-us
22.
▲
by
asabil
3y ago
It's quite unfortunate that this article mixes up what's necessary for podman quadlets with coreOS concepts. With quadlets, the only thing required is to drop a `.container` file in the right place and you end up with a container
23.
▲
by
asabil
3y ago
ISO8601 is a standard managed by ISO, you can buy a digital or printed copy of the standard from here: https://www.iso.org/standard/70907.html RFC 3339 is managed by the IETF, and their documents are accessible free of
24.
▲
by
asabil
3y ago
Faster doesn’t mean more responsive, in fact very often an increase in throughput leads to an increase in latency.
25.
▲
by
asabil
3y ago
I think you are confusing Vale with Vala[1] :) [1]: https://vala.dev/
26.
▲
by
asabil
3y ago
Each RTP packet has a 32bit timestamp, and a 32 bit SSRC. Each "sender" in an RTP session must use the same SSRC, this is how synchronisation between audio and video streams from the same sender (lip-sync) is achieved. The timesta
27.
▲
by
asabil
3y ago
The maximum number of simultaneously alive Erlang processes is by default 262,144. This needs to be raised to avoid the `system_limit` error.
28.
▲
A Brief History of the Beam Compiler (2018)
(erlang.org)
1 points
by
asabil
3y ago
|
0 comments
29.
▲
More optimizations in the compiler and JIT
(erlang.org)
172 points
by
asabil
3y ago
|
17 comments
30.
▲
Consistent caching with PostgreSQL logical replication and a Redis API
(shortishly.com)
1 points
by
asabil
4y ago
|
0 comments
More ›