r/NammaDevs

▲ 3 r/NammaDevs+1 crossposts

Guys, I'm in dylamo in choosing course

Can anyone tell the placements in qspider for which course is best java, python full stack or automation testing

help me to choose between these two😩😩

I want a job

reddit.com
u/Internal_General_864 — 3 days ago

Looking for a Partner for International Client Projects

Hey everyone,

I’m a full-stack developer looking for a partner who can help bring in projects from international/foreign clients.

My skills include:

  • Backend: Java, Laravel
  • Frontend: React, HTML/CSS
  • Mobile Apps: React Native, Flutter

I can handle complete project development from backend to frontend and mobile apps.

I’m looking for someone experienced in client acquisition, networking, outreach, or freelancing platforms. Profit/project payments will be shared 50/50.

Interested people can DM me. Looking for serious long-term collaboration.

reddit.com
u/Low-Lynx-8265 — 23 hours ago

Company refusing to provide exit documents

I worked for a certain company for a duration of 3 months back in 2020, and left thereafter. I returned all the assets, and they didn't ask me to serve notice or anything since I was a new resource.

Post that, I changed a couple of companies fine.

What's biting me is every time I prepare for a BGV, I have this lingering concern - Should I or should I not disclose this 3 month stint. The company paid me PF, so my UAN History reflects its name as well.

When contacted HR, she is outright refusing to provide any exit documents, because she said that's what was agreed upon at the exit. Now, I may have agreed on whatever out of my inexperienced naivety, but is this legal ?

What do you folks recommend I should do about this situation ?

reddit.com
u/onepoint5zero — 2 days ago

Built and deployed my first AI micro SaaS for Tamil astrology as a beginner developer — would love feedback

Hi everyone,

Over the last few months, I’ve been learning frontend, backend, APIs, and deployment from scratch, and I finally launched my first small AI SaaS project:

https://tamilastroai.com

It’s a Tamil-first AI astrology app where users can:

  • generate birth chart
  • get Lagna / Rasi / Nakshatra
  • see planetary positions
  • ask astrology questions in Tamil or English

Tech stack:

  • HTML/CSS/JS
  • Node.js + Express
  • OpenAI API
  • AstrologyAPI
  • Netlify + Render deployment
  • Google Analytics + Clarity

This is my first real deployed product, so I’d genuinely appreciate feedback from the community on:

  • mobile UX
  • speed/performance
  • UI clarity
  • response quality
  • anything confusing/broken

Would especially love feedback from people using mobile devices, since most users will probably come from mobile.

Thanks 🙏

reddit.com
u/OptimalQuantity9909 — 5 days ago
▲ 15 r/NammaDevs+2 crossposts

Hi everyone,

I recently completed my internship at IBM and received a PPO for a SDE Cloud role. I wanted to get some clarity on the compensation structure from current IBMers or anyone who joined recently.

CTC Breakdown:

  • Annual Fixed: INR 11 LPA
  • Premium Component: INR 1,00,000 (One-time)
  • Settling Allowance: INR 25,000 (One-time)

A few questions:

  1. What would be the realistic monthly in-hand salary (post-tax/PF) for this bracket?
  2. When does the Premium Component (1L) usually get credited? Is it with the 1st month's salary or after a few months?
  3. For the Settling Allowance, do I need to submit any bills (like relocation/brokerage), or is it a flat payout?

Thanks in advance for the help!

reddit.com
u/WritingAmbitious6495 — 6 days ago
▲ 66 r/NammaDevs+2 crossposts

Vanakkam 🙏 NammaMap V2 is now live 👉 https://nammamap.in

About 2 weeks ago, I shared a simple prototype of NammaMap with just TNEB data (Original Post)

From the feedback + that exploration, one clear problem stood out:

>We don’t know which authority actually covers our area.

So the core idea became:

Tap anywhere → see who covers that area
(police station, ration shop, local body, etc.)

Not a contact directory — just a clear
“who covers my area?” view

That shift is what led me to rebuild the project from the ground up.

👉 https://nammamap.in

What’s new:

👮 Police Jurisdiction Mapping
🏥 1000+ Health Facilities
🍚 PDS / Ration Shops
📍 Full Pincode Boundaries
🏛️ Local Bodies & Constituencies

Would love quick feedback: Useful or not? Anything confusing?

u/rsiva229 — 13 days ago
▲ 14 r/NammaDevs+1 crossposts

I’m tired of searching for jobs. This feels like my last shot.

Cleared Round 1 for Infosys DSE/SP role. Round 2 is on May 24 and honestly I’m scared.

I practice DSA, but I still can’t solve hard problems without AI/help sometimes. Confidence is very low right now.

I also have no idea how Infosys DSE/SP Round 2 works.

Anyone who attended recently:

  • What was asked?
  • DSA level?
  • Interview or coding heavy?
  • Important topics to prepare?

Need some advice Folks 🙂

u/rat-race-breaker — 5 days ago
▲ 5 r/NammaDevs+5 crossposts

"I'd never paste my schema into a website I don't own."

"I'd never paste my schema into a website I don't own."

This is the most common concern I hear about Schema Weaver. It's a completely fair one. So here's exactly how it works under the hood.

Your SQL never leaves your browser.

💻 CLIENT-SIDE PARSER

Schema Weaver has a built-in PostgreSQL parser that runs entirely in your browser. When you type SQL, it is parsed locally — no server round-trip, no network request, nothing sent anywhere. Full PostgreSQL object model: tables, views, materialized views, enums, domains, functions, sequences, extensions, RLS policies, triggers, partitions, composite types — all parsed in-browser.

📊 CLIENT-SIDE ER DIAGRAM

Generated from your parsed schema using an ELK-based layout engine running in your browser. Disconnect from the internet entirely — the diagram still updates as you type. No server rendering, nothing external. 1000+ tables, all local.

⚡ CLIENT-SIDE SCHEMA COMPILER

The 20-layer schema compiler runs client-side under 50ms. Analyses your full merged schema, detects issues, grades your database A-F — without a single byte of your SQL leaving your machine.

💾 TWO STORAGE OPTIONS

By default your SQL files live in your browser's IndexedDB — nothing sent to any server. Sign in for optional cloud sync: files stored encrypted so you can access them across devices and collaborate with teammates. You choose.

🔒 ZERO DATA COLLECTION

We don't read your SQL. We don't analyse your schema server-side. We don't log your DDL. The only things stored server-side are your account credentials and, if you connect a database, your connection string encrypted with AES-256 — never returned by the API, never logged.

For the Data Explorer: your row data streams directly from your database to your browser. It never touches our servers. The AI reasons over schema metadata only — never your actual row values.

The schema compiler, parser, and ER diagram are all offline-capable. Your SQL stays yours.

🔗 Try it free — no credit card:

• Main site: schemaweaver.vivekmind.com

• SQL Editor: sql-editor.schemaweaver.vivekmind.com

• Data Explorer: data-explorer.schemaweaver.vivekmind.com

• Docs: docs.schemaweaver.vivekmind.com

#PostgreSQL #DataPrivacy #DevTools #BuildInPublic #DatabaseDesign #BackendDevelopment

u/Vivek-Kumar-yadav — 10 days ago

Job guidance

Hey guys...I'm 24 batch mca graduate with 0 experience...I know java stack.. recently attended tcs nqt eventhough i selected for prime I didn't met the tcs eligibility criteria so rejected..that is the last hope for me to get into it career..

There is no other companies hiring massively...most of the companies hiring 25 and 26 batches..even internship also appreciated to gain some experience..startups are running behind on low tier colleges..how to find startups.? And can I get internship as a 24 batch? Any job guidance would be really appreciated..

Edit: don't ask me what u did for 2 years..not everyone is in same situation..I started to learn programming from last year only..

reddit.com
u/mr_blacky2001 — 5 days ago
▲ 6 r/NammaDevs+3 crossposts

Regarding Amrita Mtech Data science

Hi guys , I gave interview for mtech data science in amrita on 1st week of April. I had been waiting for results. It had been 1 month from the date of interview, still now I haven't received results. What should I do now? Should I need to wait or explore any other opportunities. Will the results delay this much?

reddit.com
u/Any-Progress-3843 — 4 days ago

What do you think about bonds in IT?

I got a call to attend F2F interview at MSC technology, ambattur, but they asked to sign 4 year bond, they dont keep the certificate, but have to pay a amount if the bond broken. They have this "Great place to work" certificate. Is it worth it? What do guys think?

FYI: I/m a fresher

reddit.com
u/Separate_Alarm1807 — 7 days ago

Hey everyone,

I have an idea for a health app and I'm looking for people who want to join me to build it. No experience needed. Just interest and willingness to learn.

Imagine one app that does everything for your health:

Quick exercises that take only 5 to 20 minutes (you pick the time)

Food and diet tips made just for you

Video call with a trainer, doctor, dietician, or counsellor anytime

A smart AI friend who answers your health questions 24/7

Emergency button - if something sudden happens, you talk to a doctor on video in less than 2 minutes

Tracks your progress and reminds you to stay healthy

Who is it for?

Busy office workers and students who have no time for gym or long workouts but still want to stay fit and healthy.

What problem does it solve?

Right now, if you want all these things, you need 4 or 5 different apps. One for food, one for exercise, one for doctors, one for mental health. We put everything in one place.

How it works in simple words:

You sign up and tell the app about yourself - your age, what you eat, any health issues, your daily schedule.

Every day, the app suggests small activities like a 10 minute workout or a healthy breakfast idea.

You get reminders on your phone.

If you have a question, you chat with AI.

If you want to talk to a real expert, you book a video call.

If you suddenly feel unwell, you press the emergency button and a doctor joins on video fast.

Every Sunday, the app gives you a report and warns you if something seems wrong with your health.

Plans:

Free plan - basic features and AI chat

Paid plan - everything including video calls with experts

Who am I looking for?

Anyone who thinks this is cool and wants to help. You don't need any experience.

Maybe you like designing, or writing, or talking to people, or learning to code, or just have good ideas.

reddit.com
u/leo_das_74 — 8 days ago

Hey folks,

I'm a 2026 grad doing internship in IBM and my manager recently gave the green signal for my intern-to-FTE conversion at a large tech MNC in Bangalore. The hiring team then contacted my TPO, and my TPO said the CTC is 11 LPA, but they didn't give any clarity on the actual breakdown.

I am too shy to ask for the salary breakdown from the other full-time employees on my team, so I need some help from anyone who has an idea or was placed previously.

What does the base vs. variable split usually look like at this CTC? What is the approximate in-hand salary per month after PF and taxes?

Thanks!

reddit.com
u/WritingAmbitious6495 — 8 days ago

I'm gonna get my FTE offer letter next month, But I'm so much confused, should I accept it or opt for highers.

Hi friends,

So, basically I'm from Chennai. I'm an ece undergraduate in one of the top colleges in Chennai. In the first 2yrs of college life I was only enjoying my college life, until I heard campus placement will be arriving in the 3rd year ending.

So, during the 3rd year of my college, I started to prepare for it, Learnt python, Done certifications in data science and machine learning. As soon as the placement season started my only goal was to get into a decent job as my cgpa was mid and just started learning about data science/ai kind of things.

And then I got an internship + FTE offer from a MNC, in the job description the role was noted as devops, and during the in-person interview they told that it was monitoring kind of a job. As I was in badly need of a job, I accepted it. Now I'm in my internship and probably will get my FTE offer letter next month.

Here I work in a team called GCC, The problem is what we do here is we will get tickets, then we will monitor the dashboard, triage it, escalate to the app dev team, they will provide a fix. It's kinda ops-heavy role and I don't see any growth here. I'm very much worried about my future. I thought of getting enough experience from here, upskill myself parallelly and get into a SRE role.

Could anyone please help me from here.

reddit.com
u/spiderman-1610 — 7 days ago
▲ 8 r/NammaDevs+3 crossposts

Hey everyone,
I’m starting my career in QA Automation(internship-6 months)and wanted some honest opinions.

Does QA Automation have strong long-term growth?

Is it easy to switch from QA Automation to a developer role later?

Just trying to understand if this is a good path.

reddit.com
u/Past-Bus-3610 — 9 days ago

https://github.com/Tarunswamy-Muralidharan/adb-quickstart

Like the heading, was frustrated upi apps telling me to switch off dev option, and me turning it on every time by tapping build number 7 times, so this tool solves it, no root, i have also added one time setup of wireless adb, for people using hotspot from android phone and connecting with ur lap, not sure how many would benefit, but posted on github if u want to use, pls mark if any issues are there

reddit.com
u/zyzz_prodigy — 8 days ago

Hi everyone,

I’m a B.E Computer Science graduate (2024) from Chennai, currently looking for entry-level opportunities in IT roles such as Associate Engineer, DevOps, or Cloud.

A quick background about me:

  • Had offer letters from CTS (GenC) and Accenture (PADA), but onboarding is still pending
  • I also had an ICICI offer, but chose not to proceed since I want to build my career in tech
  • I had been working these days in Urban Company (computer service & repair) and at a local PC building/repair shop to stay active and support myself

Meanwhile, I’ve been continuously building my skills and projects:

  • Developed a DevOps Deployment Monitoring Platform (DevFlow) using GitHub APIs, Tauri, and CI/CD concepts
  • Worked with AWS (EC2, IAM), Docker, Jenkins, Git/GitHub
  • Automated workflows using Selenium WebDriver (Java)
  • Created real-world software projects:
    • Supermarket management system (inventory, sales analysis, customer tracking)
    • Tournament management system (player handling, match generation, live updates)

I’m also familiar with Java, JavaScript, MySQL, MongoDB, and frontend technologies.

Honestly, at this stage, I just want to start my career properly. A stable job means a lot—not just professionally but personally too.

If your company has any openings or if you can refer me, please comment or DM. I’ll reach out and share all details.

Even a small help or referral would mean a lot to me 🙏

Thanks for reading!

reddit.com
u/Unemployed-vip — 10 days ago

Hi guys! I am a first year ug student in thiagarajar college of engineering, I want to apply for internships in IT company, I learned ML, frontend, backend, 4-5 programming languages, dsa, blockchain to an extent. I am not going to wait until being confident that I learned enough because I believe there is no such thing as learning enough, but I'll definitely learn and improve as each day progress. I want u guys to share your opinion and experience on how you got internships and where to apply.

reddit.com
u/InternationalBand213 — 11 days ago