Viewing profile — ryuuseijin
ryuuseijin
HN member- Joined
- Fri, Mar 31, 2017, 11:10 PM UTC
- HN karma
- 75
- Public activity
- 26 items
- HN profile
- View on Hacker News ↗
About ryuuseijin
No profile information was provided.
Recent public activity
- story
-
comment
Comment #46225435
Just a note that you can use opencode with their API gateway (they call it "zen") to get access to all the most popular models using a single account, including gemini. (Although t…
-
comment
Comment #45667052
Yes, I only use my own keys. It even lets you use your Claude Max subscription.
- story
-
comment
Comment #45652862
I'm using opencode which I think is now very close to covering all the functionality of claude code. You can use GPT5 Codex with it along with most other models.
-
comment
Comment #45459523
Shameless plug for my super simple consistent-hashing implementation in clojure: https://github.com/ryuuseijin/consistent-hashing
-
comment
Comment #44929607
I'm using tsx for a project to achieve the same effect. As you said, it saves you from having to set up a build/transpilation step, which is very useful for development. Tsx has a …
-
comment
Comment #44841997
It's called opencode: https://opencode.ai/
-
comment
Comment #44775076
I've switched to opencode. I use it with Sonnet for targeted refactoring tasks and Gemini to do things that touch a lot of files, which otherwise can get expensive quickly.
-
comment
Comment #43741012
Shameless plug of my consistent hashing implementation in about 50 lines of clojure: https://github.com/ryuuseijin/consistent-hashing
-
comment
Comment #43055454
Search for A100 on this page: https://fly.io/docs/about/pricing/
-
comment
Comment #43054917
My heart stopped for a moment when reading the title. I'm glad they haven't decided to axe GPUs, because fly GPU machines are FANTASTIC! Extremely fast to start on-demand, reliable…
- story
-
comment
Comment #21134117
Location: Sydney, Australia Remote: no Willing to relocate: yes (Japan) Technologies: Clojure, Typescript, Javascript, AWS, Web Résumé/CV: available on request Github: https://gith…
-
comment
Comment #19317896
If you look further down in the thread you can see how someone asks whether he saw any actual photos and his reply (which is what I posted). https://twitter.com/wothadei/status/110…
-
comment
Comment #19317368
Later, in response to a question whether he has actually seen any photos of other people he says: No, just their accounts are listed. I am not able to see any photos - not even my …
-
comment
Comment #18643045
What's interesting is that even though the value of for example Ethereum is going down, the usage statistics seem to be much healthier, specifically transaction volume [1] and addr…
- story
- story
-
comment
Comment #15506230
Btw, Wave-style OT needs a central server, but there are other forms of OT that do not. They mention this in your link. If your OT system can satisfy the TP2 propery you can do n-n…
-
comment
Comment #15496764
Thanks, I did address that when I said you can solve it if you know all actors in a n-n system, but I should have been clearer by pointing out the solution, which is (as you alread…
-
comment
Comment #15496722
Google wave is an example of what works well with a central server: you have many documents that can be sharded across many instances because each document only needs to be consist…
-
comment
Comment #15496581
What you describe looks a lot like a Google Wave like OT system. Wave-style OT is eventually consistent, like CRDTs, but you need a central server to give the event history a total…
-
comment
Comment #15181959
I was in a similar situation, although I got more than 3 hours of sleep. I don't think 3 hours of sleep per day is sustainable, you have to find another solution. Any work you do o…
-
comment
Comment #14009726
Yes, it gives you short circuiting on nil values. The post mentions `some->` and laments its inability to handle varying function signatures. You can combine `some->` with other th…