Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
hiddew
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
hiddew
6mo ago
For large applications, having the implementation (or multiple implementations) of certain functionality decoupled from the code using it, improves maintainability and configurability of the application. That is where inversion of control h
2.
▲
by
hiddew
6mo ago
> Autowiring is against the principles of a typesafe programming language Constructor autowiring is the application of the inversion of control and dependency injection pattern. If there was no autowiring, you could autowire the componen
3.
▲
by
hiddew
7mo ago
Also see PostGIS for Postgres systems: https://postgis.net/docs/ .
4.
▲
by
hiddew
8mo ago
https://openrailwaymap.app OpenRailwayMap is a project focused on displaying everything railway related in the world, powered by OpenStreetMap data.
5.
▲
by
hiddew
9mo ago
> How long before car ownership is replaced with autonomous vehicle car pools? That is very much a future I look forward to living in. Not requiring to own a car but sharing it efficiently with folks in the neighborhood, would save quite
6.
▲
by
hiddew
11mo ago
> For stuff like security keys you should typically add them as build args, not as content in the image. Do not use build arguments for anything secret. The values are committed into the image layers.
7.
▲
by
hiddew
1y ago
Totally agree. And even the overhead of construction/destruction can be avoided in runtime for languages with inline types (e.g. https://kotlinlang.org/docs/inline-classes.html ).
8.
▲
by
hiddew
1y ago
That is why I am happy that rich errors ( https://xuanlocle.medium.com/kotlin-2-4-introduces-rich-erro... ) are coming to Kotlin. This expresses the possible error states very well, while programming for the happy path and wi
9.
▲
by
hiddew
1y ago
Hurl is underappreciated for writing nice and maintainable HTTP-level test suites. Thanks for the tool!
10.
▲
by
hiddew
1y ago
"fixed it with an algorithmic change, reducing backup times exponentially" If the backup times were O(n^2), are they now O(n^2 / 2^n)? I would guess not.
11.
▲
by
hiddew
1y ago
I think for "untyped" files with records, using the ASCII file, (group) and record separators (hex 1C, 1D and 1E) work nicely. The only constraint is that the content cannot contain these characters, but I found that that is gener
12.
▲
by
hiddew
2y ago
You can use GC defaults, but tuning can provide valuable throughput or latency improvements for the application if you tune the GC parameters according to the workload. Especially latency sensitive applications may benefit from generational
13.
▲
by
hiddew
2y ago
I built a fork of OpenrailwayMap (original at https://www.openrailwaymap.org , vector styles at https://openrailwaymap.fly.dev ). The style was built to match the look of the original raster tiles closely, although I a
14.
▲
by
hiddew
2y ago
> there would no clean way to edit/remove/reorder downstream commits Yes, but I consider commits immutable so reordering or editing commits is not a thing that would happen. New commits are appended (either upstream or downstre
15.
▲
by
hiddew
2y ago
The post considers rebasing the fork. It seems easier to do only merges. You can merge specific upstream commits, or the entire upstream branch. That way you only need to merge in the changes, and not resolve the same conflicts for each dow
16.
▲
by
hiddew
2y ago
How does it compare to the Java money API ( https://jcp.org/en/jsr/detail?id=354 ) and the related Kotlin DSL in https://github.com/hiddewie/money-kotlin/?tab=readme-ov-file... ?
17.
▲
by
hiddew
2y ago
Get you, your manager and the CEO in one room, and tell them the facts. Once those are on the table, discuss solutions. Otherwise nobody wins.
18.
▲
by
hiddew
2y ago
Yes, a grid system like H3 https://www.uber.com/en-NL/blog/h3/ is is closer to a circle in shape. One of the reasons for Uber to use H3 is bacause density maps look more natural in hexagonal shapes. It would
19.
▲
by
hiddew
2y ago
> The reason we can’t, and why `async`/`await` exist, is because of shortcomings (lack of support for stackful coroutines) in language runtimes The JVM runtime has solved this problem neatly with virtual threads in my opinion. Run a
20.
▲
by
hiddew
2y ago
Why not? A branch is a pointer to a commit, so the commit built for staging can be the same binary that will be deployed to production, if the production branch is updated to point to the same commit as staging was pointing to. No rebuild n
21.
▲
by
hiddew
3y ago
The series Darkover from Marion Zimmer Bradley. It's more science fiction than my normal pick of fantasy, but nice reads.
22.
▲
by
hiddew
3y ago
Never heard of this! I will definitely take a look if this can replace some handwritten bash curl-based test scripts to validate HTTP-level interactions. The combination of documentation and testing in a single text file looks promising.
23.
▲
by
hiddew
3y ago
We use Slite extensively at work. Works pretty well to quickly create/edit documents with a nice editor. When you type Markdown, the content automatically resolves the styling/headers/lists. Multiple persons editing a documen
24.
▲
by
hiddew
3y ago
> Ruby syntax is the lightest there could be Kotlin can have exactly the same code with lambdas, using either a receiver type, or a context receiver. And it's type safe. transaction { foo() bar() } Type-safe
25.
▲
by
hiddew
3y ago
Train signals in the Netherlands also have red on the bottom. The reason is in case of snow falling on the light covers, the red light (most important signal, "stop") will never be blocked by snow.