124
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 31 Mar 2026
124 points (100.0% liked)
technology
24319 readers
310 users here now
On the road to fully automated luxury gay space communism.
Spreading Linux propaganda since 2020
- Ways to run Microsoft/Adobe and more on Linux
- The Ultimate FOSS Guide For Android
- Great libre software on Windows
- Hey you, the lib still using Chrome. Read this post!
Rules:
- 1. Obviously abide by the sitewide code of conduct. Bigotry will be met with an immediate ban
- 2. This community is about technology. Offtopic is permitted as long as it is kept in the comment sections
- 3. Although this is not /c/libre, FOSS related posting is tolerated, and even welcome in the case of effort posts
- 4. We believe technology should be liberating. As such, avoid promoting proprietary and/or bourgeois technology
- 5. Explanatory posts to correct the potential mistakes a comrade made in a post of their own are allowed, as long as they remain respectful
- 6. No crypto (Bitcoin, NFT, etc.) speculation, unless it is purely informative and not too cringe
- 7. Absolutely no tech bro shit. If you have a good opinion of Silicon Valley billionaires please manifest yourself so we can ban you.
founded 5 years ago
MODERATORS
I use this stuff exclusively at work and I like the flexibility of cursor a lot better than CC. When one service goes down i can just switch models and I pretty much get the same results no matter which model because i have a very specific goal in mind every time i reach for these tools.
the worst work that i have to review comes from ppl who totally abdicate responsibility to LLM gen’d stuff and it especially pisses me off when someone who gets paid more than me passes me a PR or a doc that is just straight up incorrect
I really want a flexible CLI tool that is not written in TS. it’s no surprise that this code base is garbage because the models are trained on JS/TS which is the cool uncle of programming languages. I’ve finally had a chance to work with Go at work and it’s pretty great for collaborating CLI tools and servers. Every time i have to write some TS for our front end it’s just endless nit picking and style debate
Go and Python are so much better for quick CLI tools than JS/TS. Python is just good for the extensive standard library. I'm usually able to to basically anything I want with no external dependencies. Meanwhile Go/Rust/JS end up with like hundreds.
How big of a team/project have you had to write in rust?
I haven't written much in Rust since my job is mostly Python and I get to control the environment. Usually means I only use standard lib and whatever library we may need to interact with a specific program, in my case ArcGIS Pro.
I just know that the standard libraries for Rust and Go are pretty minimal and most code I've seen in the wild has a ton of dependencies.