frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Flattening Rust's learning curve

https://corrode.dev/blog/flattening-rusts-learning-curve/
95•birdculture•4h ago

Comments

dmitrygr•3h ago
> Treat the borrow checker as a co-author, not an adversary

Why would I pair-program with someone who doesn’t understand doubly-linked lists?

dwattttt•3h ago
I'd rather pair program with someone wary of double-linked lists, but is really hot on understanding ownership than the other way around.
mre•3h ago
For people who don't get the reference, this might be referring to the notoriously gnarly task of implementing a doubly-linked lists in Rust [1]

It is doable, just not as easy as in other languages because a production-grade linked-list is unsafe because Rust's ownership model fundamentally conflicts with the doubly-linked structure. Each node in a doubly-linked list needs to point to both its next and previous nodes, but Rust's ownership rules don't easily allow for multiple owners of the same data or circular references.

You can implement one in safe Rust using Rc<RefCell<Node>> (reference counting with interior mutability), but that adds runtime overhead and isn't as performant. Or you can use raw pointers with unsafe code, which is what most production implementations do, including the standard library's LinkedList.

https://rust-unofficial.github.io/too-many-lists/

Animats•2h ago
Rust still needs a way out of that mess. It's conceptually possible to have compile time checking for this. Think of RefCell/Weak and .upgrade() and .borrow() being checked at compile time.

I've discussed this with some of the Rust devs. The trouble is traits. You'd need to know if a trait function could borrow one of its parameters, or something referenced by one of its parameters. This requires analysis that can't be done until after generics have been expanded. Or a lot more attributes on trait parameters. This is a lot of heavy machinery to solve a minor problem.

umanwizard•39m ago
> Rust still needs a way out of that mess.

In practice, it really doesn't. The difficulty of implementing doubly linked lists has not stopped people from productively writing millions of lines of Rust in the real world. Most programmers spend less than 0.1% of their time reimplementing linked data structures; rust is pretty useful for the other 99.9%.

worik•19m ago
I am working on a code base, that among its many glories and poo balls every list is a doubly linked list.

Stop!

If you are using a doubly linked list you (probably) do not have to, or want to.

There is almost no case where you need to traverse a list in both directions (do you want a tree?)

A doubly linked list wastes memory with the back links that you do not need.

A singly linked list is trivial to reason about: There is this node and the rest. A doubly linked list more than doubles that cognitive load.

Think! Spend time carefully reasoning about the data structures you are using. You will not need that complicated, wasteful, doubly linked list

dmitrygr•10m ago
> There is almost no case where you need to traverse a list in both directions

But you might need to remove a given element that you have a pointer to in O(1), which a singly linked list will not do

pornel•3h ago
So that you learn that loaning is for giving temporary shared^exclusive access within a statically-known scope, and not for storing data.

Trying to construct permanent data structures using non-owning references is a very common novice mistake in Rust. It's similar to how users coming from GC languages may expect pointers to local variables to stay valid forever, even after leaving the scope/function.

Just like in C you need to know when malloc is necessary, in Rust you need to know when self-contained/owning types are necessary.

mplanchard•1h ago
The biggest thing I’ve run into where I really want self-referential types is for work that I want to perform once and then cache, while still needing access to the original data.

An example: parsing a cookie header to get cookie names and values.

In that case, I settled on storing indexes indicating the ranges of each key and value instead of string slices, but it’s obviously a bit more error prone and hard to read. Benchmarking showed this to be almost twice as fast as cloning the values out into owned strings, so it was worth it, given it is in a hot path.

I do wish it were easier though. I know there are ways around this with Pin, but it’s very confusing IMO, and still you have to work with pointers rather than just having a &str.

lmm•32m ago
Because you care about productivity and safety more than l33t h4x0r hazing rituals?
Ar-Curunir•7m ago
[delayed]
woah•3h ago
Does anyone still have trouble learning Rust? I thought that was kind of a 2015 thing
mre•3h ago
The thing is, once you internalized the concepts (ownership, borrowing, lifetimes), it's very hard to remember what made it difficult in the first place. It's "curse of knowledge" in some sense.

What's changed since 2015 is that we ironed out some of the wrinkles in the language (non-lexical lifetimes, async) but the fundamental mental model shift required to think in terms of ownership is still a hurdle that trips up newcomers.

echelon•3h ago
100%. Newcomers still struggle a bit, especially if they've never used C/C++ before.

A good way to get people comfortable with the semantics of the language before the borrow checker is to encourage them to clone() strings and structs for a bit, even if the resulting code is not performant.

Once they dip their toes into threading and async, Arc<Lock<T>> is their friend, and interior mutability gives them some fun distractions while they absorb the more difficult concepts.

mre•3h ago
Do you mean `Arc<Mutex<T>>`? Yeah, I agree. Wrote a blog post on that topic as well: https://corrode.dev/blog/prototyping/ The title is a bit of a misnomer, but it's about beginner-friendly escape hatches in the language. Perhaps it's useful to newcomers.
echelon•1h ago
Any lock, but that's generally the best choice.

Great post! It's got a ton of advice for being productive, and it should be especially useful for beginners.

SoftTalker•2h ago
For me it was like Haskell. I spent an afternoon on it, my brain hurt too much, and I relegated it to the category of languages that are too complicated for what I need to do with a computer.

Languages I liked, I liked immediately. I didn’t need to climb a mountain first.

LAC-Tech•33m ago
Yeah I struggled with it.
whobre•17m ago
Coming from C++, I don’t find it hard to learn. I do find it annoying, don’t love the syntax and absolutely hate cargo.

To each his own, I guess….

Havoc•3h ago
I thought it was quite manageable at beginner level…though I haven’t dived into async which I gather is a whole different level of pain
echelon•3h ago
Async and the "function color" "problem" fall away if your entire app is in an async runtime.

Almost 90% of the Rust I write these days is async. I avoid non-async / blocking libraries where possible.

I think this whole issue is overblown.

spion•3h ago
How are async closures / closure types, especially WRT future pinning?
echelon•3h ago
While I'd like to have it, it doesn't stop me from writing a great deal of production code without those niceties.

When it came time for me to undo all the async-trait library hack stuff I wrote after the feature landed in stable, I realized I wasn't really held back by not having it.

mplanchard•1h ago
Async closures landed in stable recently and have been a nice QoL improvement, although I had gotten used to working around their absence well enough previously that they haven’t been revolutionary yet from the like “enabling new architectural patterns” perspective or anything like that.

I very rarely have to care about future pinning, mostly just to call the pin macro when working with streams sometimes.

sodality2•3h ago
That’s not a solution to the coloring problem any more than making everything red was in 2015 (ie, all the tradeoffs mentioned in the article [0] still apply).

[0]: https://journal.stuffwithstuff.com/2015/02/01/what-color-is-...

bigstrat2003•2h ago
"Just write everything async" is not remotely a good solution to the problem. Not everything needs to be async (in fact most things don't), and it's much harder to reason about async code. The issue is very much not overblown.
Salgat•2h ago
Why is async code harder to reason about? I've been using it in C# and the entire point is that it lets you write callbacks in a way that appears nearly identical to synchronous code. If you dive into concurrency (which is a separate thing but can be utilized with async code, such as joining multiple futures at the same time), that parts hard whether you're doing it with async or with explicit threads.
umanwizard•41m ago
> Why is async code harder to reason about?

I don't know about C#, but at least in Rust, one reason is that normal (non-async) functions have the property that they will run until they return, they panic, or the program terminates. I.e. once you enter a function it will run to completion unless it runs "forever" or something unusual happens. This is not the case with async functions -- the code calling the async function can just drop the future it corresponds to, causing it to disappear into the ether and never be polled again.

lucasyvas•2h ago
It’s completely overblown. Almost every language with async has the same “problem”.

I’m not calling this the pinnacle of async design, but it’s extremely familiar and is pretty good now. I also prefer to write as much async as possible.

echelon•1h ago
The "function color is a problem" people invented a construct that amplifies the seriousness. It's not really a big deal.
ants_everywhere•2h ago
A learning curve measures time on the x axis and progress on the y axis.

A flat learning curve means you never learn anything :-\

LambdaComplex•2h ago
"Flattening the derivative of Rust's learning curve" really doesn't roll off the tongue though
ants_everywhere•1h ago
Yeah that's true. But it would be on brand for a post that emphasizes the importance of accuracy and attention to detail.
alpinisme•2h ago
You may be able to draw one that way but it completely neglects the way people use the term ordinarily “a steep learning curve” is not an easy to learn thing.

In point of fact, I think the intended chart of the idiom is effort (y axis) to reach a given degree of mastery (x axis)

ants_everywhere•1h ago
I don't think the idiom has in mind any particular curve. I think it's just another case of a misuse becoming idiomatic without any meaning beyond the phrase taken as a unit. E.g.

- another think coming -> another thing coming

- couldn't care less -> could care less

- the proof of the pudding is in the eating -> the proof is in the pudding

It's usually not useful to try to determine the meaning of the phrases on the right because they don't have any. What does it mean for proof to be in a pudding for example?

The idiom itself is fine, it's just a black box that compares learning something hard to climbing a mountain. But learning curves are real things that are still used daily so I just thought it was funny to talk as if a flat one was desirable.

autoexec•2h ago
What we want is an "effort/difficulty curve" that measures how difficult something typically is over time from introduction to proficiency
tacitusarc•1h ago
This is incorrect. A learning curve measures expertise on the x axis and effort on the y axis. Hence the saying "steep learning curve".
ergonaught•58m ago
https://en.wikipedia.org/wiki/Learning_curve
raincole•1h ago
It should be called "learning hill" instead.

People (colloquially) use phrases like "steep learning curve" because they imagine learning curve is something you climb up, a.k.a. a hill.

Animats•2h ago
It's like reading "A Discipline of Programming", by Dijkstra. That morality play approach was needed back then, because nobody knew how to think about this stuff.

Most explanations of ownership in Rust are far too wordy. See [1]. The core concepts are mostly there, but hidden under all the examples.

    - Each data object in Rust has exactly one owner.
      - Ownership can be transferred in ways that preserve the one-owner rule.
      - If you need multiple ownership, the real owner has to be a reference-counted cell. 
        Those cells can be cloned (duplicated.)
      - If the owner goes away, so do the things it owns.

    - You can borrow access to a data object using a reference. 
      - There's a big distinction between owning and referencing.
      - References can be passed around and stored, but cannot outlive the object.
        (That would be a "dangling pointer" error).
      - This is strictly enforced at compile time by the borrow checker.
That explains the model. Once that's understood, all the details can be tied back to those rules.

[1] https://doc.rust-lang.org/book/ch04-01-what-is-ownership.htm...

ameliaquining•2h ago
Summarizing a set of concepts in a way that feels correct and complete to someone who understands them, is a much easier task than explaining them to someone who doesn't. If we put this in front of someone who's only worked with call-by-sharing languages, do you think they'll get it right away? I'm skeptical.
Animats•2h ago
Right. If you come to Rust from C++ and can write good C++ code, you see this as "oh, that's how to think about ownership". Because you have to have a mental model of ownership to get C/C++ code to work.

But if you come from Javascript or Python or Go, where all this is automated, it's very strange.

bloppe•1h ago
For me it really clicked when I realized ownership / lifetimes / references are just words used to talk about when things get dropped. Maybe because I have a background in C so I'm used to manual memory management. Rust basically just calls 'free' for you the moment something goes out of scope.

All the jargon definitely distracted me from grasping that simple core concept.

josephg•1h ago
Almost all of it.

Rust also has the “single mutable reference” rule. If you have a mutable reference to a variable, you can be sure nobody else has one at the same time. (And the value itself won’t be mutated).

Mechanically, every variable can be in one of 3 modes:

1. Directly editable (x = 5)

2. Have a single mutable reference (let y = &mut x)

3. Have an arbitrary number of immutable references (let y = &x; let z = &x).

The compiler can always tell which mode any particular variable is in, so it can prove you aren’t violating this constraint.

If you think in terms of C, the “single mutable reference” rule is rust’s way to make sure it can slap noalias on every variable in your program.

This is something that would be great to see in rust IDEs. Wherever my cursor is, it’d be nice to color code all variables in scope based on what mode they’re in at that point in time.

math_dandy•1h ago
The list in the above comment isn’t a summary — it’s a precise definition. It can and must be carefully explained with lots of examples, contrasts with other languages, etc., but the precise definition itself must figure prominently, and examples and intuition should relate back to it transparently.
raincole•1h ago
And, after someone who doesn't know rust reads this neat and nice summary, they would still know nothing about rust. (Except "this language's compiler must have some black magic in it.")
ajross•24m ago
The second bullet in the second section is overpromising badly. In fact there are many, many, many ways to write verifiably correct code that leaves no dangling pointers yet won't compile with rustc.

Frankly most of the complexity you're complaining about stems from attempts to specify exactly what magic the borrow checker can prove correct and which incantations it can't.

Waterluvian•2h ago
Write a CHIP8 emulator!

Bonus: do it with no heap allocation. This actually makes it easier because you basically don’t deal with lifetimes. You just have a state object that you pass to your input system, then your guest cpu system, then your renderer, and repeat.

And I mean… look just how incredibly well a match expression works for opcode handling: https://github.com/ablakey/chip8/blob/15ce094a1d9de314862abb...

My second (and final) rust project was a gameboy emulator that basically worked the same way.

But one of the best things about learning by writing an emulator is that there’s enough repetition you begin looking for abstractions and learn about macros and such, all out of self discovery and necessity.

cadamsdotcom•2h ago
Rust is wonderful but humbling!

It has a built in coach: the borrow checker!

Borrow checker wouldn't get off my damn case - errors after errors - so I gave in. I allowed it to teach me - compile error by compile error - the proper way to do a threadsafe shared-memory ringbuffer. I was convinced I knew. I didn't. C and C++ lack ownership semantics so their compilers can't coach you.

Everyone should learn Rust. You never know what you'll discover about yourself.

noman-land•2h ago
Got recommended learning paths? I tend to prefer follow along adventures via video.
maxbond•2h ago
Check out Jon Gjengset.

https://www.youtube.com/@jonhoo

gerdesj•1h ago
"Rust is wonderful but humbling!"

It's an abstraction and convenience to avoid fiddling with registers and memory and that at the lowest level.

Everyone might enjoy their computation platform of their choice in their own way. No need to require one way nor another. You might feel all fired up about a particular high level language that you think abstracts and deploys in a way you think is right. Not everyone does.

You don't need a programming language to discover yourself. If you become fixated on a particular language or paradigm then there is a good chance you have lost sight of how to deal with what needs dealing with.

You are simply stroking your tools, instead of using them properly.

kupopuffs•52m ago
Wow who pissed in your coffee? he likes rust ok?
codr7•45m ago
And he's telling other people they should like it as well, because he has seen the light.

My gut feeling says that there's a fair bit of Stockholm Syndrome involved in the attachments people form with Rust.

You could see similar behavioral issues with C++ back in the days, but Rust takes it to another level.

awesome_dude•14m ago
> You could see similar behavioural issues with C++ back in the days

I think that it's happened to some degree for almost every computer programming language for a whiles now - first was the C guys enamoured with their NOT Pascal/Fortran/ASM, then came the C++ guys, then Java, Perl, PHP, Python, Ruby, Javascript/Node, Go, and now Rust.

The vibe coding people seem to be the ones that are usurping Rust's fan boi noise at the moment - every other blog is telling people how great the tool is, or how terrible it is.

sesm•1h ago
Is there a concise document that explains major decisions behind Rust language design for those who know C++? Not a newbie tutorial, just straight to the point: why in-place mutability instead of other options, why encourage stack allocation, what problems with C++ does it solve and at what cost, etc.
abirch•1h ago
I think the major decisions behind Rust is being explicit and making the programmer make decisions. No NULLs, no Implicit conversions, no dangling pointers. Lifetimes, Optional, Results, each Match branch needs to exist, etc.

Side note: Stack allocation is faster to execute as there's a higher probability of it being cached.

Here is a free book for a C++ to Rust explanation. https://vnduongthanhtung.gitbooks.io/migrate-from-c-to-rust/...

sesm•46m ago
> being explicit and making the programmer make decisions

Why RAII then?

> C++ to Rust explanation

I've seen this one. It is very newbie oriented, filled with trivial examples and doesn't even have Rust refs to C++ smart pointers comparison table.

landr0id•35m ago
>> being explicit and making the programmer make decisions

>Why RAII then?

Their quote is probably better rephrased as _being explicit and making the programmer make decisions when the compiler's decision might impact safety_

Implicit conversion between primitives may impact the safety of your application. Implicit memory management and initialization is something the compiler can do safely and is central to Rust's safety story.

NobodyNada•1h ago
This might not be exactly what you're looking for, but I really like "References are like jumps": https://without.boats/blog/references-are-like-jumps/
jandrewrogers•48m ago
Rust has better defaults for types than C++, largely because the C++ defaults came from C. Rust is more ergonomic in this regard. If you designed C++ today, it would likely adopt many of these defaults.

However, for high-performance systems software specifically, objects often have intrinsically ambiguous ownership and lifetimes that are only resolvable at runtime. Rust has a pretty rigid view of such things. In these cases C++ is much more ergonomic because objects with these properties are essentially outside the Rust model.

In my own mental model, Rust is what Java maybe should have been. It makes too many compromises for low-level systems code such that it has poor ergonomics for that use case.

Ar-Curunir•8m ago
[delayed]
CobrastanJorji•1h ago
Regarding the first example, the longest() function, why couldn't the compiler figure it out itself? What is the design flaw?
mplanchard•1h ago
You’re passing in two references and returning a reference.

The compiler knows the returned reference must be tied to one of the incoming references (since you cannot return a reference to something created within the function, and all inputs are references, the output must therefore be referencing the input). But the compiler can’t know which reference the result comes from unless you tell it.

Theoretically it could tell by introspecting the function body, but the compiler only works on signatures, so the annotation must be added to the function signature to let it determine the expected lifetime of the returned reference.

raincole•1h ago
It's a design choice.

To make a compiler automatically handle all of the cases like that, you will need to do an extensive static analysis, which would make compiling take forever.

mdwhatcott•1h ago
If a language needs an article like this, absolutely begging people to bite the bullet to learn it, maybe that's a language design smell.

Disclaimer: I haven't taken the time to learn Rust so maybe don't take this too seriously..

mplanchard•1h ago
I suspect an article like this says more about the author than the language.

Note I’m not being critical of the author here. I think it’s lovely to turn your passion into trying to help others learn.

LAC-Tech•54m ago
I have taken the time to learn rust and you're absolutely right. It's a very complex, design-by-committee language. It has brilliant tooling, and is still much less complex than it's design-by-committee competitor C++, but it will never be easy to learn.
worik•27m ago
There is a trade off. Rust gave us fast, and safe. It did not give us "easy to learn".

I think it is a very good example of why "design by committee" is good. The "Rust Committee" has done a fantastic job

Thank you

They say a camel is a horse designed by a committee (https://en.wiktionary.org/wiki/a_camel_is_a_horse_designed_b...)

Yes:

* Goes twice as far as a horse

* On half the food and a quarter the water of a horse

* Carries twice as much as a horse

Yes, I like design by committee. I have been on some very good, and some very bad committees, but there is nothing like the power of a good committee

Thank you Rust!

rat87•9m ago
its not design by committee its design by Pull request It doesn't have a central https://en.wikipedia.org/wiki/Benevolent_dictator_for_life like python used to so people suggest and implement features as a group, with code counting for a lot (although theoretical issues with safety/design also matter) as opposed to companies arguing for their pet features endlessly without much difference. Look at how long it takes C++ to get any new features.
worik•33m ago
Surrender! to compile

Weather the ferocious storm

You will find, true bliss

ajross•27m ago
> Use String and clone() and unwrap generously; you can always refactor later

At that point you might as well be writing Java or Go or whatever though. GC runtimes tend actually to be significantly faster for this kind of code, since they can avoid all those copies by sharing the underlying resource. By the same logic, you can always refactor the performance-critical stuff via your FFI of choice.

landr0id•24m ago
So long as you're aware that you're not optimizing, it's fine. Trying to build something useful as a new Rust dev while worrying about lifetimes is going to be quite challenging, unless your intention is to specifically learn about lifetimes and the borrow checker.

Yes the borrow checker is central to Rust, but there are other features to the language that people _also_ need to learn and explore to be productive. Some of these features may attract them to Rust (like pattern matching / traits / etc.)

Misadventures in DTrace: how to debug the macOS kernel

https://jade.fyi/blog/misadventures-in-dtrace/
1•todsacerdoti•2m ago•0 comments

A2A – PydanticAI

https://ai.pydantic.dev/a2a/
1•jonbaer•3m ago•0 comments

A Deep Dive into the Node JavaScript Event Loop – Tyler Hawkins

https://www.youtube.com/watch?v=KKM_4-uQpow
1•Brysonbw•4m ago•0 comments

NodeConf EU – A deep dive into libuv – Saul Ibarra Coretge

https://www.youtube.com/watch?v=sGTRmPiXD4Y
1•Brysonbw•9m ago•0 comments

Anyone want me to build them a pricing calculator?

1•phil611•15m ago•0 comments

Tesla Optimus Dancing

https://twitter.com/Tesla_Optimus/status/1922456791549427867
4•redox99•34m ago•0 comments

Go and SQLite and Htmx and Scaffolding

https://github.com/walterwanderley/sqlc-http/blob/main/_examples/authors/sqlite-frontend/README.md
1•walterwanderley•36m ago•0 comments

China's bullet-shape satellite future for low orbit surveillance network

https://www.scmp.com/news/china/science/article/3310148/chinas-bullet-shape-satellite-test-paves-way-very-low-orbit-surveillance-network
1•gscott•50m ago•0 comments

The Fastest Way yet to Color Graphs

https://www.quantamagazine.org/the-fastest-way-yet-to-color-graphs-20250512/
1•pseudolus•50m ago•0 comments

Is the US on track to build a high-speed rail network?

https://www.bbc.com/news/articles/cze1erz9jxko
1•andsoitis•51m ago•1 comments

I failed a take-home assignment from Kagi Search

https://bloggeroo.dev/articles/202504031434
33•josecodea•52m ago•9 comments

Smolvlm – Realtime Vision Language Model Demo

https://github.com/ngxson/smolvlm-realtime-webcam
1•informal007•56m ago•0 comments

Towards React Server Components in Clojure, Part 2

https://romanliutikov.com/blog/towards-react-server-components-in-clojure-part-2
2•zonotope•1h ago•0 comments

DEI-TY Screenprint – 2 Colorways Available Thursday, May 15th at 10am PT!

https://obeygiant.com/dei-ty-screenprint-2-colorways-available-thursday-may-15th-at-10am-pt/
2•westondeboer•1h ago•2 comments

Mousemaster: Efficiently control your mouse with keyboard inputs

https://github.com/petoncle/mousemaster
2•thunderbong•1h ago•0 comments

Replicube: A puzzle game about writing code to create shapes

https://store.steampowered.com/app/3401490/Replicube/
5•poetril•1h ago•0 comments

AI Helped Heal My Chronic Pain

https://www.wsj.com/opinion/ai-helped-heal-my-chronic-pain-lab-results-came-back-normal-nothing-worked-then-claude-came-along-331a8e93
1•Bostonian•1h ago•1 comments

Alfred Stieglitz (1864–1946) and His Circle

https://www.metmuseum.org/essays/alfred-stieglitz-1864-1946-and-his-circle
2•handfuloflight•1h ago•0 comments

Fox Tossing

https://en.wikipedia.org/wiki/Fox_tossing
2•red369•1h ago•1 comments

Market Failure When the Cost of Misclassification Is Higher for the Customer

https://www.gojiberries.io/when-cost-of-misclassification-is-much-higher-for-the-customer-than-the-business/
1•goji_berries•1h ago•1 comments

AI therapy is a surveillance machine in a police state

https://www.theverge.com/policy/665685/ai-therapy-meta-chatbot-surveillance-risks-trump
6•mastazi•1h ago•1 comments

Microdosing Sprints to Achieve Better Sprint Performance in Field Hockey Players

https://pmc.ncbi.nlm.nih.gov/articles/PMC9865125/
1•alecst•1h ago•0 comments

Gilmour Space – Mission: Eris Testflight 1

https://www.gspace.com/missions
1•dwd•1h ago•0 comments

Train your own GPT (from scratch)

https://github.com/Michaelgathara/GPT
1•Michaelgathara•1h ago•0 comments

EcoPrototype

https://mikalbanks43-52924.bubbleapps.io/version-test/
1•mikebanks1703•1h ago•0 comments

Top Best Vulnerability Scanning Tools (2025 Guide)

https://www.youtube.com/watch?v=-BB486-VE-Y
1•pawanjswal•1h ago•0 comments

Noncoders using AI to prompt their ideas into reality. It's called 'vibe coding'

https://www.nbcnews.com/tech/tech-news/noncoders-ai-prompt-ideas-vibe-coding-rcna205661
2•Kerrick•1h ago•0 comments

Chrome Web Store Keyword Research Tool

https://webextension.net/tools/webstore-keyword-analysis
1•trungpv1601•1h ago•0 comments

How Cursor and Windsurf Work Under the Hood

https://diamantai.substack.com/p/the-hidden-algorithms-powering-your
3•vantiro•1h ago•0 comments

Scientists turn lead into gold for first time, but only for a split second

https://abcnews.go.com/Technology/scientists-turn-lead-gold-1st-time-split/story?id=121762241
2•mraniki•1h ago•1 comments