Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
revetkn
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
revetkn
11d ago
What LLM/harness are you using that the results are so terrible?
2.
▲
by
revetkn
18d ago
If your position is AI for coding is equivalent or worse than web search, I am curious how you arrived there. I could see that a few years ago, but with the state of the tooling now it is hard for me to understand.
3.
▲
by
revetkn
1mo ago
Very cool, me too! I've been working on Final Fantasy Legend (Game Boy and WonderSwan Color) and King's Bounty (PC - DOS). It's great for reversing. Really interesting to see the guts of the games, including bugs.
4.
▲
by
revetkn
1mo ago
Calling it "Chat-GPT" suggests that you are not familiar with the space.
5.
▲
by
revetkn
1mo ago
I agree - check out VanJS for minimal reactive library: https://vanjs.org
6.
▲
by
revetkn
2mo ago
I'm curious about this as well. I use Java quite a bit and I feel like my results are excellent, but colleagues who use other languages are less impressed. I wonder if this is because Java is more amenable to agentic workflows, or th
7.
▲
by
revetkn
2mo ago
Certainly looks that way to me.
8.
▲
by
revetkn
2mo ago
I can't be bothered to read a website that is so clearly AI generated with little to no polishing. What does that say about the rest of the project?
9.
▲
by
revetkn
2mo ago
It's understood that LLMs have limitations and people are working on "the next thing" to try and make it to real AGI, e.g. Yann LeCun.
10.
▲
by
revetkn
2mo ago
To me, the idea is that you have something in your head and you want to "project" it into reality. I suppose the difference between makers and producers then is that makers happen to enjoy the labor part of that projection, while
11.
▲
by
revetkn
2mo ago
Yes - the JdbcClient API has a similar feel for sure. If you are using Spring, it is a better choice than Pyranid because it integrates well with the Spring txn plumbing. Outside of Spring, I think Pyranid has a lot of advantages.
12.
▲
by
revetkn
2mo ago
If you use Java and like to write SQL, check out https://pyranid.com I stopped using ORMs around 2008 because they made the easy problems easier and the hard problems harder. I wanted to just write SQL and exploit all the power
13.
▲
by
revetkn
3mo ago
I did not really understand CORS until I sat down and wrote a server implementation of it and had to think hard about "what hooks should be exposed to developers for controlling it?" Most of us I think just "expose a set of w
14.
▲
by
revetkn
3mo ago
There is no public-facing continuations API afaik. Structure concurrency/virtual threads seem like a good fit for Swing; just have your event handler fire off virtual thread[s] and do your work and call SwingUtilities.invokeLater to sc
15.
▲
by
revetkn
3mo ago
Regarding "What's wrong with what .NET did with threads?", see https://cr.openjdk.org/~rpressler/loom/Loom-Proposal.html (relevant part below): An alternative solution to that of fibers to concu
16.
▲
by
revetkn
5mo ago
I find papers like this strange for the same reason. Maybe I'm missing something...
17.
▲
by
revetkn
7mo ago
My project Lokalized attempts to solve many of these complex plural/gender/ordinal/etc. rules with a tiny expression language: https://lokalized.com
18.
▲
by
revetkn
8mo ago
https://revetkn.com
19.
▲
Show HN: Soklet, a zero-dependency Java HTTP/1.1 and SSE virtual-threaded server
(soklet.com)
2 points
by
revetkn
8mo ago
|
0 comments
20.
▲
by
revetkn
9mo ago
I like the fluent API - this looks like a much better way to work with ResourceBundle types than Java's out-of-the-box support. Thanks for sharing.
21.
▲
by
revetkn
9mo ago
In my experience, LLMs are terrific for most translation tasks, but you still need a way to encode the data (rules for genders, cardinalities, ordinalities, ...) for storage on disk/database/etc. for 1. performance and 2. consiste
22.
▲
by
revetkn
9mo ago
My project, Lokalized (from 2017, in Java), has the same goal but took a different approach to the "little language" design. I'm guessing I had the same inspiration as the Fluent authors - existing solutions were just not exp
23.
▲
by
revetkn
4y ago
> Is cognition a set of weights on a gradient? Cognition involves conscious reasoning and understanding. What is your definition of _conscious reasoning and understanding_?
24.
▲
by
revetkn
4y ago
That's how I view it as well, from an end user perspective this is removing an arbitrary rule that you're required to "just memorize" (or be surprised when your IDE complains).
25.
▲
by
revetkn
4y ago
Totally agree, and I also love that so much thought and consideration goes into how the platform gets improved over time. Doing it "right" means taking so many things into account -- many of which are subtle -- and picking the ri
26.
▲
by
revetkn
4y ago
Maybe, but the last straw for me on that platform was preventing tweets from linking to arbitrary, non-doxxing Mastodon profiles (try it and see). I tested it to confirm and deactivated my account afterwards. Who would want to be on a socia
27.
▲
by
revetkn
5y ago
Both Java. Pyranid - https://www.pyranid.com I prefer SQL to ORMs and I don't like libraries with dependencies. Really simple mapping of resultsets to Java objects. Plays nicely with DI (I like Guice a lot). Lokalized - ht
28.
▲
by
revetkn
6y ago
Thanks...I needed a laugh
29.
▲
by
revetkn
7y ago
My take on how to solve the natural-sounding translation problem: https://www.lokalized.com/#a-more-complex-example The magic is a tiny expression language which understands plural cardinalities, ordinals, etc. so a transla
30.
▲
Show HN: Lokalized – Expression-language-driven localization with CLDR support
(lokalized.com)
13 points
by
revetkn
9y ago
|
1 comments
More ›