8,606 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
3
replies
46
views
choosing an Stack? backend or front end
okay so, I'm front end developer but i hate html CSS codes. but I enjoy logic stuff A LOT.
always I like to learn more about JS or read about algorithm . an old friend told me I can be good backend ...
- reputation score 1
Advice
1
vote
8
replies
114
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 ...
- reputation score 1
Score of 1
1 answer
68 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"...
- reputation score 11
Tooling
2
votes
2
replies
63
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
33 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 ...
- reputation score 1
Advice
0
votes
2
replies
114
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 ...
user avatar
user32882403
Advice
0
votes
2
replies
94
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'...
- reputation score 1
Best practices
0
votes
0
replies
55
views
Node.js PDF Invoice Generation After Payment – 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 ...
- reputation score 1
Best practices
1
vote
2
replies
112
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
62
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 ...
- reputation score 1
Tooling
1
vote
8
replies
94
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 ...
- reputation score 1
Advice
0
votes
8
replies
317
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 ...
- reputation score 1
Best practices
1
vote
2
replies
55
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. ...
- reputation score 1
Score of 1
1 answer
96 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 ...
- reputation score 77
Advice
0
votes
2
replies
93
views
Confused between gRPC and Rabbitmq for nodejs and python AI microservices
I am building an AI platform where:
nodejs is the main backend or gateway.
Python handles AI/LLM processing services include chat, OCR, resume analysis, document AI, etc.
Initially i was planning to ...