Cursor told me I should learn coding instead of asking it to generate code

Cursor told me I should learn coding instead of asking it to generate code
Curso "Lógica informática (2005-06)". https://jaalonso.github.io/cursos/li-05 #Logic #Math #CompSci
Late follow up on some questions I didn't fully/explicitly address:
First off, thanks again for all the thoughtful input — really appreciate you engaging with this.
You're absolutely right about ual's potential as a learning and onboarding tool for embedded developers who may not want to dive into the full depth of Rust right away. That's very much in line with my thinking. Part of what motivates ual is exactly that: creating a way to teach ownership, borrowing, and safety concepts explicitly and visibly, without needing to wrestle with lifetimes, traits, or complex generics right out of the gate. So, yes, I think it could be a stepping stone for people who want Rust-like safety but in a smaller, simpler package. Many projects might benefit from rapid prototyping at worst.
Also, I think your idea about implementing ual as a front end to the Rust compiler is really interesting — and I hadn’t fully considered it in those exact terms before! Right now, my Rust proof-of-concept (iual) is more of a "manual mapping" to see how the concepts translate, but the idea of a more integrated approach — like a proper front end — is something I'd definitely like to explore further. Especially if it means getting the benefits of Rust's mature backend (like LLVM integration, tooling, etc., although we are already getting some of that through TinyGo, a Go compiler for embedded systems) while keeping ual’s stack-oriented, explicit model.
So thanks for putting that thought on the table.
It's not cheating if you write the video game solver yourself https://lobste.rs/s/dakizz #compsci #games
https://robertheaton.com/cocoon/
Planning out the spring break coding camp for kids grade 7 to 9. Will try to build out a teacher guide and the booklets for the kids and share them online for anyone to use. Will be writing this tonight and over the weekend.
OSCR-16 | A CPU Emulator for beginners
https://github.com/Azrael337/OSCR-16/tree/main
Discussions: https://discu.eu/q/https://github.com/Azrael337/OSCR-16/tree/main
Something Is Rotten in the State of Cupertino
https://daringfireball.net/2025/03/something_is_rotten_in_the_state_of_cupertino
Discussions: https://discu.eu/q/https://daringfireball.net/2025/03/something_is_rotten_in_the_state_of_cupertino
Beyond Bad Output
https://hey.paris/posts/beyond-bad-output/
Discussions: https://discu.eu/q/https://hey.paris/posts/beyond-bad-output/
iual 0.0.1
iual is a tiny interactive interpreter implementing a small subset of the ual language that combines Forth‑like stack manipulation with a container‑centric design.
UPDATE
The main ual project is here:
https://github.com/ha1tch/ual/
The plain C version of the iual interactive interpreter is currently a bit more polished in terms of stack handling, and the Go version demonstrates more advanced concurrency features that can be tested interactively.
Of course, most devs already have a C compiler installed and the C iual implementation using pthreads and the C99 standard prototypes and conventions will be directly accessible on Linux and most Unix platforms. If you don't know how to handle POSIX threads on Windows, it's more straightforward to use the Go version on that platform instead.
iual is a tiny interactive interpreter implementing a small subset of the ual language that combines Forth‑like stack manipulation with a container‑centric design.
https://github.com/ha1tch/ual/tree/main/iual/iual
iual is not yet compliant with the ual spec and it only implements a small subset of its features. It's meant as an educative tool and a playground to test new ideas.
Here's more about the main ual project:
https://github.com/ha1tch/ual
#ual #forth #programming #compsci #rustlang #golang #retrodev #retrocomputing
Gemma 3 released: beats Deepseek v3 in the Arena, while using 1 GPU instead of 32 [N]
https://blog.google/technology/developers/gemma-3/
Discussions: https://discu.eu/q/https://blog.google/technology/developers/gemma-3/
[P] Torch-Activation Library: 400+ Activation Functions – Looking for Contributors
https://github.com/hdmquan/torch_activation
Discussions: https://discu.eu/q/https://github.com/hdmquan/torch_activation
#MULCIA: PhD position in theoretical computer science, Universitat Pompeu Fabra (Spain). https://tinyurl.com/2bq6ueod #PhD #CompSci
iual 0.0.1
iual is an exceedingly trivial toy interpreter meant to test and model ideas that will be featured later in the reference implementation of the ual compiler.
https://github.com/ha1tch/ual/tree/main/examples/trivial_iual
it features int, float, and string stacks, plus concurrency, and script execution using a simplified version of the @spawn stack of the ual specification.
build with:
go build iual.go
Here’s how I use LLMs to help me write code
https://simonwillison.net/2025/Mar/11/using-llms-for-code/
Discussions: https://discu.eu/q/https://simonwillison.net/2025/Mar/11/using-llms-for-code/
Unified Hashed Stack Perspectives
https://github.com/ha1tch/ual/blob/main/spec/ual-1.7-PROPOSAL-hashed-stack-perspectives.md
With this new addition we introduce key-based access as a perspective on stack containers rather than a separate data structure or data type.
If a stack perspective describes how we access the contents of a data structure, then popping from a stack, or a queue is not, deep down, fundamentally different from requesting an element from a map.
The perspective changes, the rest of the guarantees of safety and assurances remain the same.
This is based on the earlier work published here:
https://github.com/ha1tch/ual/blob/main/spec/ual-1.5-PROPOSAL-stack-perspectives.md
This approach simplifies the programming model while maintaining type safety, genericity, ownership, and explicit context.
I wrote a little blog post about the project I give to my Object Oriented Programming students; a relatively big codebase for Shopazon (an amalgamation of Amazon and other common apps), and how imitating real world development kind of thwarts (at least some) students' attempts to use GenAI to get through their assignments.
Status Report on the Fourth Round of the NIST Post-Quantum Cryptography Standardization Process
https://nvlpubs.nist.gov/nistpubs/ir/2025/NIST.IR.8545.pdf
Discussions: https://discu.eu/q/https://nvlpubs.nist.gov/nistpubs/ir/2025/NIST.IR.8545.pdf
Will the future of software development run on vibes?
https://simonwillison.net/2025/Mar/6/vibe-coding/
Discussions: https://discu.eu/q/https://simonwillison.net/2025/Mar/6/vibe-coding/
The Minimalistic TypeScript for C, "Cp1", has now a website and documentation!
Discussions: https://discu.eu/q/https://cp1-lang.org/