Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
kurtbuilds
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
kurtbuilds
2y ago
If you want equality testing with nulls, you want to use `is (not) distinct from` instead of `=` and `<>` / `!=`. `1 is not distinct from NULL` => false `NULL is not distinct from NULL` => true `0 is not distinct from 1` =&
2.
▲
by
kurtbuilds
2y ago
What’s the process to deliver and test a quantized version of this model? This model is 264GB, so can only be deployed in server settings. Quantized mixtral at 24G is just small enough where it can be running on premium consumer hardware (i
3.
▲
by
kurtbuilds
3y ago
Can you elaborate on why the `mixing` approach doesn't work? Specifically, if you want send bounds, doing this: trait HttpService: Send { fn fetch(&self, url: Url) -> impl Future<Output = HtmlBody> +
4.
▲
by
kurtbuilds
4y ago
You are anxious about things constantly breaking, and you work in Javascript. No surprise. Try learning Rust. Your anxiety of things constantly breaking will disappear. I've been coding for about 20 years. My joy of coding would be gon
5.
▲
by
kurtbuilds
4y ago
What did you migrate your clients to?
6.
▲
by
kurtbuilds
4y ago
That's great to hear! Unfortunately, MySQL is less feature complete compared to Postgres and Sqlite. The migration auto-generation definitely won't work. Other features might be broken too. If you encounter any issues, please let
7.
▲
Ormlite: An ORM in Rust for developers that love SQL
(github.com)
1 points
by
kurtbuilds
4y ago
|
3 comments
8.
▲
by
kurtbuilds
4y ago
I've been working on `ormlite` for around a year, and it's now reaching the point where it's a massive boost in productivity for my Rust application server development. It's built on the amazing foundation of `sqlx`. If
9.
▲
by
kurtbuilds
4y ago
I'd recommend going full steam ahead with Rust. Companies like Azure and Meta now recommend Rust as either one of several viable choices, or THE recommended option, for the use cases you describe, including CLI and web servers. Persona
10.
▲
by
kurtbuilds
4y ago
To clarify, the JSON parse error was data coming down from the server. The code generator accepts either a JSON or a YAML OpenAPI document. I was looking at the server logs - are you the payments company with abbreviation CP? It looks like
11.
▲
by
kurtbuilds
4y ago
Are there APIs you have in mind? One tool we have under development is a tool (might end up being a chrome extension) that will analyze web requests to turn them into a spec. There are a few tools that are similar in purpose, though I'
12.
▲
by
kurtbuilds
4y ago
Thank you - fixed!
13.
▲
Show HN: Stripe-quality API client libraries with a single button click
(libninja.com)
27 points
by
kurtbuilds
4y ago
|
10 comments
14.
▲
by
kurtbuilds
5y ago
Three easy lessons: 1. Don't use MongoDB. 2. Don't use high level ORMs. Stay (reasonably) close to SQL. And yes, it should be SQL. Almost certainly Postgres. 3. Especially don't use Mongoid.