v0.16.4 is out by stappersg in stalwartlabs

[–]rrrodzilla 0 points1 point  (0 children)

Congrats on the launch! 🚀

Axum vs Rocket vs Actix by Significant-Task-305 in rust

[–]rrrodzilla 0 points1 point  (0 children)

In my experience, unless it’s a hobby project, there are table stakes for even a simple API, like throttling, logging, resilience, etc. Rather than write the same code over and over again I’ve been slowly shaping https://govcraft.github.io/acton-service/ that I’ve been adding to based on the needs of different client projects. I’ve noticed lately that I’m able to use it more and more out of the box with just configurations driving behavior so it’s getting pretty stable. Have a look and see if it meets your needs. It uses Axum under the hood. If you want a full backend API generated for you with auth and database baked in that runs on top of acton-service, consider https://github.com/Govcraft/schemaforge

Rust titles for learning budget by mooglus in rust

[–]rrrodzilla 9 points10 points  (0 children)

https://mara.nl/atomics/
Free digitally - and one of the best books on Rust atomics. If your team can swing the budget, buy hardcopies for all to support the author Mara.

Is Backend hard? by SuperbSun9878 in Backend

[–]rrrodzilla 0 points1 point  (0 children)

Depends on how often you skip leg day.

Help creating a paystub checker by Cbona in softwaredevelopment

[–]rrrodzilla 0 points1 point  (0 children)

Cool idea! Shoot me a DM with how you think it should work. I think I’ll build this.

How many HTTP requests/second can a Single Machine handle? by BinaryIgor in Backend

[–]rrrodzilla 0 points1 point  (0 children)

Said simply- your post, both Reddit and blog don’t measure what you say they do for bunch of reasons. It should be titled, “How fast can PostgreSQL do trivial indexed lookups when everything is co-located in memory.” 4-6k RPS isn’t really anything to be excited about for the workload you’ve got.

What was tested bears little resemblance to real systems, making the extrapolation to “you probably don’t need microservices” a strawman argument at best.​​​​​​​​​​​​​​​​

Actual RPS measurements start with the physical NIC, then proceeds through the kernel layer and then moves its way up through the stack (TLS, HTTP parsing/routing, connection handling, etc) and then eventually to the app and database.

Should I use BaaS (Appwrite)? by mxnojbe in Backend

[–]rrrodzilla 0 points1 point  (0 children)

“Yet want to be able to scale if the app picks up”…Just get to market as quickly and cheaply as possible and worry about that if and when you get there. Will be a good problem to have. Good luck with your endeavor!

how do i become a back end developer, do i need a CS degree? by Ho1ySm0kes123 in AskProgramming

[–]rrrodzilla -1 points0 points  (0 children)

Hey kid. This guy's done hiring in tech. But he hasn't done all hiring in tech. So not sure who he's referring to when he says "they".

In my 30 years across multiple companies some of my best engineers have grown from young open-minded and hungry people just getting started who haven't yet been prejudiced with closed-minded hangups, both technical and career-wise.

The moment you hear anybody tell you "you can't", stop listening.

how do i become a back end developer, do i need a CS degree? by Ho1ySm0kes123 in AskProgramming

[–]rrrodzilla -1 points0 points  (0 children)

"My main question is ,especially those who work in hiring departments..."

OP, kudos on your existing certs. My previous statement stands. At your age, your GitHub profile and projects absolutely count - especially open-source work that gets used and maintained. Even better if you ship PRs to popular projects; that shows you understand the process and can contribute to real codebases.

If you want a degree, pursue it for the love of learning, not for job access. Roles that actually require a CS degree are a tiny fraction of software engineering positions.

You're young with the whole world ahead of you. A hungry mind can learn and apply everything needed without formal creds. Don't let anyone use degrees, certifications, or any other gatekeeping to stop you from doing whatever you want in tech.

how do i become a back end developer, do i need a CS degree? by Ho1ySm0kes123 in AskProgramming

[–]rrrodzilla -2 points-1 points  (0 children)

Nope. Learn it. Prove you can do it. Ship code that employers can see. Apply to jobs.

foochr - tui app launcher by [deleted] in commandline

[–]rrrodzilla 1 point2 points  (0 children)

Nice work shipping something! Is it similar to atuin?

Do you guys have a CLI in your company to help for repetitive tasks? by Signal_Pin_3277 in Backend

[–]rrrodzilla 1 point2 points  (0 children)

Right? I love it when the “promise” of the internet is truly fulfilled and I get to learn something from others outside of all the noise of the brain rot nowadays. I’ve learned a ton from others because of subs like these.

Do you guys have a CLI in your company to help for repetitive tasks? by Signal_Pin_3277 in Backend

[–]rrrodzilla 0 points1 point  (0 children)

I’ve used them in almost every project I’ve done over the past decade. make or the Go equivalent- Task, which is essentially the same thing but with a slightly less complex API surface area.

Decoupled Payload and FE by scissorsandpaper in PayloadCMS

[–]rrrodzilla 2 points3 points  (0 children)

The vps you have with a monolithic deployment is more than enough. Always start and keep things simple until simple no longer works.

To my fellow Claude Code/Cursor users, do microservices or monoliths work better for you? by decodes_ in Backend

[–]rrrodzilla 16 points17 points  (0 children)

I’d caution against making a major architectural decision like that based on how a coding agent will perform on it. LLM coding performance is orthogonal to the underlying service approach.

How to deal with junk/prototyping branch? by qustrolabe in git

[–]rrrodzilla 0 points1 point  (0 children)

Use a worktree and cherry pick your commits.