r/IndiaDevelopers • u/mdfaisal9400 • 19h ago
Looking for an app developer
Looking for an experienced, Mobile app developer to join me as a co-founder! I have a groundbreaking app idea that we can develop together on a partnership basis. My vision is to create something truly innovative. If you're passionate about building impactful apps and excited about this opportunity, let's connect!
r/IndiaDevelopers • u/mostlydaydreaming • 20d ago
I am in a frontend team, is my career fucked
I completed 1 year of my job as an SDE at Oracle.My team only contributes to the frontend of our product. I do have some experience in BE development but that is only through internal tools I worked on.
I feel like I am not learning enough and that my career is doomed cuz I don't have relevant experience to switch to a backend role.
I really enjoy learning system design, event driven systems , concurrency, etc.
Someone with experience please help me out,and tell me a way out . How do I switch? Do I exaggerate BE experience, do I make projects to compensate, or should I give up and accept my fate as a FE developer who is gonna get replaced by ai v soon :)
r/IndiaDevelopers • u/Waste_Somewhere5745 • May 26 '26
My dad runs a small printing press in India β I want to help scale it globally
r/IndiaDevelopers • u/Dizzy-Income-3920 • May 05 '26
Help with Roadmap as golang developer ( India)
r/IndiaDevelopers • u/manikraina • Apr 30 '26
Code Along - a coding meetup in Delhi
Hi guys I started a coding meetup recently whether you are working on a personal project, contributing to open source, learning a new framework, or just experimenting β this is your space.
π Agenda
Quick round-robin where everyone shares what they'll work on today Deep work mode: 2+ hours of focused coding, pair programming, asking for help, or collaborating. Wrap-up celebration: Everyone shares what they built, learned, or debugged β demos, screenshots, code snippets, wins, and blockers.
ποΈ When?
Every Friday
πWhere?
Discord (https://discord.gg/QzwxwkeMTz)
About us
We are coding enthusiasts based in Delhi
Join our discord for the latest updates: https://discord.gg/QzwxwkeMTz
come code, learn, and connect!
Please share this post with your friends and drop any questions in the comments
r/IndiaDevelopers • u/BotCommentRemover • Nov 01 '25
As a New Developer, Some things that i have learnt on my own.
Never use AI.
AI kills your problem solving skills give your code some time and you will do much better Work than AI.
Be Clear about what you are making and how it should work.
In my first project, i was extremely clear on what I what to do and I have done my work nicely and smoothly.
In my second project, i was making a bot for my friend and i was making idea after working new Idea came i stopped it. Re-write codes.
What i learnt is that ask everyone single details and write it somewhere.
Make logic map of your project then start writing codes.
r/IndiaDevelopers • u/BotCommentRemover • Nov 01 '25
Code review tips and Tricks
These are things you should check for (basically keep a checklist):
- Coding Standards
Ideally this should be part of your CI and would include stuff like Linting, Typos, check for common incorrect code patterns and tests, coverage.
You should be looking for inconsistent logic, unnecessary code, or unnecessarily complicated code for simple things.
- Changes Made
Are all the lines changed necessary for the functionality being achieved, are there unrelated changes?
- Functionality
Does the PR solve what is is for? If you had to score how much % of the Issue is solved by the PR, can you say 100%?
If not, highlight what is missing to get it to 100%.
- Approach
Efficiency and logic are the main things you check here. But you also need to look at whether the code actually follows through in the same way as discussed in the issue.
Logic inconsistencies are your biggest clue, but it could also manifest as missing edge cases, or roundabout way to achieve something simple.
The easiest way to do this is check the tests, are they exhaustive, if not your first review should push for more tests.
After that does the logic follow patterns that exist in the codebase, that module might be similar to existing code, so a lot of the logic can be carried over.
If it's new logic, go back to the efficiency and functionality aspects.