Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
azkalam
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
azkalam
5d ago
I think it could be useful to know something like P=NP, even if we don't understand why.
2.
▲
by
azkalam
6d ago
I can see the case for shared core libraries and then platform native views. This is best done in one programming language. Can Swift, Rust or .NET work here?
3.
▲
by
azkalam
13d ago
I sure wish this quiet street was filled with lively motor traffic :)
4.
▲
by
azkalam
13d ago
I would like to see a life expectancy number that excludes deaths in childhood. A frequency distribution of life span for those born in year X would be a helpful visual.
5.
▲
Prism: An Impure Functional Language With Typed Effects
(stephendiehl.com)
35 points
by
azkalam
2mo ago
|
13 comments
6.
▲
by
azkalam
3mo ago
Effect Systems are the answer to cross-cutting concerns in 2026.
7.
▲
by
azkalam
3mo ago
Google has so much influence over the hardware manufacturers. They should do more. Does anyone in the industry know why so much firmware is proprietary?
8.
▲
by
azkalam
4mo ago
Reproducible builds reduce the need for trusted parties. Have many organizations produce the binaries independently and post the arifacts. Once n of m parties agree on the arifact hash, take that as the trusted build. If every party reaches
9.
▲
by
azkalam
4mo ago
Probably easiest way is to use Bazel to leverage the effort that has gone in there
10.
▲
Ask HN: Best file format for AI reports output?
1 points
by
azkalam
7mo ago
|
0 comments
11.
▲
by
azkalam
8mo ago
Over-eating is not strictly a choice. Corporations spend billions on manipulating the public because it works. Regulation is needed, not willpower.
12.
▲
by
azkalam
9mo ago
Python has a reputation for being good for beginners so it's taught to beginners so it has a reputation for being good for beginners.
13.
▲
by
azkalam
9mo ago
Success rate in that era was very low. There are thousands of movies from that time that no one cares about today.
14.
▲
by
azkalam
10mo ago
Do you know of anything like AoC but that feels less contrived? I often spend the most time understanding the problem requirements because they are so arbitrary - like the worst kind of boardgame! Maybe I should go pick up some OSS tickets.
15.
▲
by
azkalam
10mo ago
Terse languages with great collection functions in the standard libraries and tail call optimization. Haskell, OCaml, F# ...
16.
▲
by
azkalam
10mo ago
But only one server can access each SQLite at a time?
17.
▲
by
azkalam
10mo ago
- Write side is a Postgres INSERT - Read side is a SELECT on a Postgres view
18.
▲
by
azkalam
10mo ago
> Go is one of the best languages to go for Event Sourcing toda Can you explain this? Go has a very limited type system.
19.
▲
by
azkalam
10mo ago
How does event sourcing handle aggregates that may be larger than memory?
20.
▲
Fantasy Consoles
(fantasyconsoles.org)
4 points
by
azkalam
10mo ago
|
0 comments
21.
▲
by
azkalam
11mo ago
This assumes the boundary between Python and the native code is clean and rarely crossed.
22.
▲
by
azkalam
11mo ago
I've never understood this. Python cannot be optimized like C, C++ or Rust. It cannot do advanced functional things like OCaml, Haskell or Scala. It cannot run in browsers like TypeScript. It cannot do games programming like C# and it
23.
▲
by
azkalam
1y ago
Sure, Python has types as part of the syntax, but Python doesn't have types like Java, C#, etc. have types. They are not pervasive and the semantics are not locked down.
24.
▲
by
azkalam
1y ago
This surprises me. If you want the .NET ecosystem and GC conveniences, there is already F#. If you want no GC and RAII-style control, then you would already pick Rust.