8,603 questions
Advice
0
votes
2
replies
71
views
What should I choose for a strong Full Stack foundation: Python and Django or JavaScript and Node.js as a backend?
Does it make sense to choose and develop my skills in Python and Django instead of the JavaScript backend ecosystem (Node.js) if I want to become a Full Stack Web Developer? I don't have any ...
Score of -5
0 answers
111 views
Why doesn't the server itself block requests? [closed]
The Cross-Origin Resource Sharing standard works by adding new HTTP headers that let servers describe which origins are permitted to read that information from a web browser. (MDN documentation)
Why ...
Advice
2
votes
9
replies
169
views
ASP.NET Core learning journey
I'm currently learning backend development with C# and ASP.NET. Instead of following video tutorials, I've been trying to learn by building things myself.
At first, I had AI generate a few simple ...
Score of 1
1 answer
85 views
Should I retry failed jobs in the same queue or a separate retry queue?
I am using BullMQ with Redis in a Node.js app.
I have one main queue for sync jobs:
const syncQueue = new Queue("sync", { connection: redis });
const syncWorker = new Worker("sync"...
Tooling
2
votes
2
replies
69
views
Is anaconda best for Django and web dev packages?
I am learning machine learning and deep learning using miniconda environment on native python. Now I am looking to learn Django and other backend packages like fastapi and tornado. Is conda enough for ...
Score of 0
0 answers
40 views
Prisma Migrate Error P1012: "This line is not a valid definition within a datasource" even after updating .env
Stuck on error P1012: "This line is not a valid definition within a datasource". I moved my DB URL to .env as DATABASE_URL and set url=env("DATABASE_URL") in schema.prisma, but the ...
Advice
0
votes
2
replies
137
views
Hypothetical (short) Roadmap to Back-end development
I'm not new to programming, but I'm a newbie when we're talking about Back-end development.
I want to find a job (junior or internship) in this field in the next few months, and need to practice ...
Advice
0
votes
2
replies
103
views
What is the best advice you can give me in frontend field to become superior?
Actually I have just finished my first year in computer science and I did a lot through this year. first I learnt the basics of programming through Cs50x and yeah it was tough a little bit but I didn'...
Best practices
0
votes
1
replies
83
views
Node.js Invoice Generation After Payment ( PDF) – Separate Thread or RabbitMQ Queue?
I have a Node.js application where, after a successful payment, I need to generate a PDF invoice and store it on the server for the respective user.
My approaches is :
1.Generate the PDF directly ...
Best practices
1
vote
2
replies
125
views
If You Were Starting Today, What Would You Learn?
I'm a fresher preparing for software development and technology-related roles in 2026, and I'm trying to identify which programming languages, frameworks, and technologies are currently the most ...
Best practices
0
votes
4
replies
64
views
How should I design scalable radius-based location search for a C2C marketplace using MongoDB?
I'm developing a C2C (Consumer-to-Consumer) marketplace where users can discover products and services available near their location . so i try to implement the radius-based location filtering.
what ...
Tooling
1
vote
8
replies
95
views
How to host an application on Cloudflare but ensure only I have access to it?
I bought a domain on Cloudflare and want to host my app on it as I build it.
I don't want to build it locally and push to production in the last minute because I don't want any last minute surprises ...
Advice
0
votes
8
replies
354
views
Does Java still have a strong future in the AI era? What should a fresher Java developer focus on for high-growth career opportunities?
I am a fresher currently working as a Java developer intern at a company for the past 8–9 months. With the rapid growth of AI and changes happening in the software industry, I have some questions ...
Best practices
1
vote
2
replies
59
views
Should I keep separate DAO methods for entity listing and lookup search, or merge them with flags in TypeORM?
I working as a backend developer in Node.js with TypeScript and TypeORM, and I'm trying to decide on the best repository/DAO design.
I have a TPA entity and currently two separate DAO methods:
1. ...
Score of 1
1 answer
100 views
Android WebSocket Problems
For context, the server has a certificate signed for a CA. Today I was implementing a WebSocket in Android using StompClient, but the connection opens and closes immediately and throws the following ...