Readit News logoReadit News
aaronblohowiak commented on Code formatting comes to uv experimentally   pydevtools.com/blog/uv-fo... · Posted by u/tanelpoder
echelon · a day ago
You're right on that front.

I currently wouldn't recommend any Rust ORM, Diesel included. They're just not quite ready for prime time.

If you're not one to shy away from raw SQL, then SQLx is rock-solid. I actually prefer it over ORMs in general. It's type-checked at runtime or compile time against your schema, no matter how complex the query gets. It manages to do this with an incredibly simple design.

It's like an even nicer version of Java's popular jOOQ framework, which I always felt was incredibly ugly.

SQLx might be my very favorite SQL library of any language.

aaronblohowiak · 7 hours ago
I will give it another look, thanks!
aaronblohowiak commented on Code formatting comes to uv experimentally   pydevtools.com/blog/uv-fo... · Posted by u/tanelpoder
echelon · a day ago
> it's concurrency primitives are excellent but difficult to learn

They're actually incredibly easy to learn if your software paradigm is the request-response flow.

The borrow checker might kill your productivity if you're writing large, connected, multi-threaded data structures, but that simply isn't the nature of 90% of services.

If you want to keep around global state (db connectors, in-memory caches, etc.) Arc<Mutex<T>> is a simple recipe that works for most shared objects. It's dead simple.

You can think of Rust with Axum/Actix as a drop-in replacement for Go or Python/Flask. With the added benefits of (1) no GC / bare metal performance, (2) much lower defect rate as a consequence of the language ergonomics, (3) run it and forget it - no GC tuning, very simple scaling.

Rust has effectively made writing with the performance of C++ feel like writing Ruby, but with unparalleled low defect rates and safety on account of the type system.

aaronblohowiak · a day ago
>Rust has effectively made writing with the performance of C++ feel like writing Ruby, but with unparalleled low defect rates and safety on account of the type system.

This is a little overblown.. speaking VERY HAND-WAVILY, sea_orm < active record by a factor of about 10x more mental overhead but is at least that much more performant...

but yea, vibe-coding rust micro services is pretty amazing lately, almost no interactions with borrow checker, and I'm even using cucumber specs...

aaronblohowiak commented on Mark Zuckerberg freezes AI hiring amid bubble fears   telegraph.co.uk/business/... · Posted by u/pera
mattnewton · 2 days ago
I think algorithms is a unique limit because it changes how much data or compute you need. For instance, we probably have the algorithms we need to brute force solving more problems today, but they require infeasible compute or data. We can almost certainly train a new 10T parameter mixture of experts that continues to make progress in benchmarks, but it will cost so much to train and be completely undeployable with today’s chips, data, and algorithms.

So I think the truth is likely we are both compute limited and we need better algorithms.

aaronblohowiak · 2 days ago
There are a few "hints" that suggest to me algorithms will bear a lot more fruit than compute (in terms of flops):

1) there already exist very efficient algorithms for rigorous problems that LLMs perform terribly at! 2) learning is too slow and is largely offline 3) "llms aren't world models"

aaronblohowiak commented on Mark Zuckerberg freezes AI hiring amid bubble fears   telegraph.co.uk/business/... · Posted by u/pera
me551ah · 2 days ago
Scaling AI will require an exponential increase in compute and processing power, and even the current LLM models take up a lot of resources. We are already at the limit of how small we can scale chips and Moore’s law is already dead.

So newer chips will not be exponentially better but will be more of incremental improvements, so unless the price of electricity comes down exponentially we might never see AGI at a price point that’s cheaper than hiring a human.

Most companies are already running AI models at a loss, scaling the models to be bigger(like GPT 4.5) only makes them more expensive to run.

The reason why internet, smartphones and computers have seen exponential growth from the 90s is due to underlying increase in computing power. I personally used a 50Mhz 486 in the 90s and now use a 8c/16t 5Ghz CPU. I highly doubt if we will see the same form of increase in the next 40 years

aaronblohowiak · 2 days ago
We are either limited by compute, available training data, or algorithms. You seem to believe we are limited by compute. I've seen other people argue that we are limited by training data. It is my totally inexpert belief that we are substantially limited by algorithms at this point.
aaronblohowiak commented on U.S. drinking rate at new low as alcohol concerns surge   news.gallup.com/poll/6933... · Posted by u/sfjailbird
moi2388 · 3 days ago
The claim is a direct quote from the artcile..
aaronblohowiak · 2 days ago
The claim that "any amount may have negative effects" (in the article) is NOT the same as the claim that "you can detect if I had a single drop 20 years ago" (the claim you were arguing against.)
aaronblohowiak commented on U.S. drinking rate at new low as alcohol concerns surge   news.gallup.com/poll/6933... · Posted by u/sfjailbird
moi2388 · 3 days ago
“ recent research indicating that any level of alcohol consumption may negatively affect health”

Really now? Any amount? So you claim you can detect any negative effects in any capacity if I drank a single drop of alcohol 20 years ago?

Hard doubt.

They probably meant that even “light drinking” can have negative effects. Whatever that amount is..

aaronblohowiak · 3 days ago
Your rebuttal is to a claim that wasn’t made
aaronblohowiak commented on AWS in 2025: Stuff you think you know that's now wrong   lastweekinaws.com/blog/aw... · Posted by u/keithly
klysm · 3 days ago
If you are exhausting an entire VPC I’d be pretty impressed!
aaronblohowiak · 3 days ago
Used to work at nflx, biiiiig headaches
aaronblohowiak commented on AWS in 2025: Stuff you think you know that's now wrong   lastweekinaws.com/blog/aw... · Posted by u/keithly
klysm · 3 days ago
VPC sharing is the sleeper here. You can do cross account networking all in the same VPC and skip all the expensive stuff.
aaronblohowiak · 3 days ago
as long as your VPCs aren't too big, yea.
aaronblohowiak commented on AWS in 2025: Stuff you think you know that's now wrong   lastweekinaws.com/blog/aw... · Posted by u/keithly
aaronblohowiak · 3 days ago
>VPC peering used to be annoying; now there are better options like Transit Gateway, VPC sharing between accounts, resource sharing between accounts, and Cloud WAN.

TGW is... twice as expensive as vpc peering?

Deleted Comment

u/aaronblohowiak

KarmaCake day7511April 12, 2008
About
Building an AS/RS for TCGs

Personal: aaron.blohowiak@gmail.com

View Original