Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Kostarrr
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
Kostarrr
1y ago
So... what are the good alternatives to yaml? For quite some time I thought toml, but the way you can spread e.g. lists all over the document can also cause some headaches. Dhall is exactly my kind of type fest but you can hit a hard brick
2.
▲
by
Kostarrr
1y ago
If they didn't change it, Playwright uses the aria (accessibility) representation for their MCP agent. It strongly depends on the web page whether or not that yields good results. We at Octomind use a mix of augmented screenshots and p
3.
▲
by
Kostarrr
1y ago
Ok now I want to know. Does Max php code have security issues? Because especially in early straightforward PHP, those were all over the place. I vaguely remember PHP3 just injected query variables into your variables? But as $_GET is mentio
4.
▲
by
Kostarrr
1y ago
This is rust, not Java.
5.
▲
by
Kostarrr
2y ago
Zug does not attempt to solve memory safety. It aims to be a better C
6.
▲
by
Kostarrr
2y ago
Sorry didnt see this earlier. If you're interested reach out to me (Kosta Welke) on linkedin. Or write me an email, you can find me on Octominds About page.
7.
▲
by
Kostarrr
2y ago
Hi! Kosta from Octomind here. We built basically this: Let an LLM agent take a look at your web page and generate the playwright code to test it. Running the test is just running the deterministic playwright code. Of course, the actual hard
8.
▲
by
Kostarrr
2y ago
Super cool, thank you!
9.
▲
by
Kostarrr
2y ago
Also note: traffic costs. On Hetzner, it's almost impossible to pay for traffic. Even their tiniest machine has 20 TB outgoing traffic (and unlimited incoming). If you used it up (you most probably wont), that's another 1,792 USD
10.
▲
by
Kostarrr
2y ago
If you look at rust now, I think it's a great example of keeping the _spirit_ but allowing to question just about any specific decision. Funny that the "why not go" still stands, minus the "no generics" part.
11.
▲
by
Kostarrr
2y ago
Well here's the take from the Author itself: https://alistair.cockburn.us/hexagonal-architecture/
12.
▲
by
Kostarrr
2y ago
Cool article on how to abstract things in Rust. I must admit, I usually write the "bad rust application". Total nitpick: For `CreateAuthorError::Duplicate`, I would return a 409 Conflict, not a 422 Unprocessable Entity. When I see
13.
▲
by
Kostarrr
2y ago
It was blank for me as well until I reloaded with dev tools open and cache disabled. Figured it was a caching issue but maybe something more weird?
14.
▲
by
Kostarrr
2y ago
It's really cool that google is investing so heavily in rust. However, the blog post is more of a "starting point" than a "lessons learned" (which I hoped for).
15.
▲
by
Kostarrr
2y ago
Apple does this during sleep when connected to power, so maybe Microsoft thought it needs that as well?
16.
▲
by
Kostarrr
2y ago
Disclamer: I work for Octomind. I think the reading is more "It's hard to find a good abstraction in a field that has not settled yet on what a good abstraction is. In that case, you might want to avoid frameworks as things shift
17.
▲
by
Kostarrr
2y ago
If one goroutine uses 2 KiB stack, then 10,000 goroutines use 20,000 KiB, right? Not 20,000 MiB.
18.
▲
by
Kostarrr
3y ago
Friends dont let friends write perl. Source: The legendary "Perl Jam" talk from the chaos communication congress. * https://www.youtube.com/watch?v=noQcWra6sbU * https://www.youtube.com/watch?v=RPv
19.
▲
by
Kostarrr
4y ago
My bad. I was not aware on incredibly limited go generics are. I tried to make it work despite all restrictions but gave up here https://go.dev/play/p/XVTuJ--ZLgS
20.
▲
by
Kostarrr
4y ago
I don’t think the Option presented here is sufficient (it is indeed a “crime”) as you cannot express Some(nil). But you could probably achieve that using go's not-well-known sum types, e.g. like this https://github.com/
21.
▲
by
Kostarrr
4y ago
Actually, go generics can do sum types, it’s just not well known or advertised.
22.
▲
Show HN: Go has proper sum types now
(github.com)
1 points
by
Kostarrr
5y ago
|
0 comments