_sameersingh_ Profile Banner
Sameer Singh Profile
Sameer Singh

@_sameersingh_

Followers
341
Following
36K
Media
185
Statuses
966

Learning Web Dev 💻 | Programming 👨‍💻 | Data Analyst 📊| SQL & Python Enthusiast | Turning data into insights and challenging the status quo.

India
Joined September 2017
Don't wanna be here? Send us removal request.
@_sameersingh_
Sameer Singh
10 months
🚀 Sales Analysis with Power BI 📊 Uncovering key trends & optimizing decisions with an interactive dashboard! ✅ 6 KPIs | ✅ 6 Graphs | ✅ 2 Slicers | ✅ Custom Measures 🔍 Insights: ◈ Top-performing segments & regions ◈ Sales & discount trends ◈ Cost & profit variations
9
5
38
@_sameersingh_
Sameer Singh
7 days
The GPS for your API. Path Params? Query Params? Versioning? If your web apps are confusing you, master routing first! Full guide on web routing here! 👇 https://t.co/zSABq1hOgL #API #WebDev #Routing #WebDevelopment #python
medium.com
[Click here to read for free.]
0
1
2
@Starlink
Starlink
24 days
With more than 8,500 satellites in orbit, Starlink provides connectivity through harsh weather conditions, network disruptions, and natural disasters. Order online in under 2 minutes.
846
2K
13K
@_sameersingh_
Sameer Singh
7 days
The GPS for your API. Path Params? Query Params? Versioning? If your web apps are confusing you, master routing first! Full guide on web routing here! 👇 https://t.co/zSABq1hOgL #API #WebDev #Routing #WebDevelopment #python
medium.com
[Click here to read for free.]
0
1
2
@_sameersingh_
Sameer Singh
9 days
Ever wondered what really happens when you click a button on Instagram? Just dropped a blog breaking down how backends actually work, from browser - DNS - server - database, using simple language and real-world flow. Read here: https://t.co/20ujHqd1xR #WebDevelopment #AWS
Tweet card summary image
medium.com
[Click here to read for free.]
0
1
1
@_sameersingh_
Sameer Singh
9 days
Ever wondered what really happens when you click a button on Instagram? Just dropped a blog breaking down how backends actually work, from browser - DNS - server - database, using simple language and real-world flow. Read here: https://t.co/20ujHqd1xR #WebDevelopment #AWS
Tweet card summary image
medium.com
[Click here to read for free.]
0
1
1
@_sameersingh_
Sameer Singh
13 days
AI agents are more than chatbots,they reason, use tools, and act like digital teammates. Here’s a simple breakdown of how they actually work. Read the blog 👇 https://t.co/jaXNEHSyBz #LLM #AI #AgenticAI
Tweet card summary image
medium.com
How AI Agents Actually Think [Click here to read for free] Artificial Intelligence feels like magic… until you understand how it really works. And when you finally do, the magic becomes even more …
1
1
1
@_sameersingh_
Sameer Singh
13 days
AI agents are more than chatbots,they reason, use tools, and act like digital teammates. Here’s a simple breakdown of how they actually work. Read the blog 👇 https://t.co/jaXNEHSyBz #LLM #AI #AgenticAI
Tweet card summary image
medium.com
How AI Agents Actually Think [Click here to read for free] Artificial Intelligence feels like magic… until you understand how it really works. And when you finally do, the magic becomes even more …
1
1
1
@_sameersingh_
Sameer Singh
14 days
If your load balancer goes down, your users don’t care why — they just feel the outage. Here’s a simple blog explaining real causes + real fixes for LB failures. Blog link:  https://t.co/woY69hDlle #aws #cloudcomputing #devops #architecture #backend #systemdesign #nginx #Web3
blog.stackademic.com
[Click here to read for free]
1
1
2
@_sameersingh_
Sameer Singh
14 days
If your load balancer goes down, your users don’t care why — they just feel the outage. Here’s a simple blog explaining real causes + real fixes for LB failures. Blog link:  https://t.co/woY69hDlle #aws #cloudcomputing #devops #architecture #backend #systemdesign #nginx #Web3
blog.stackademic.com
[Click here to read for free]
1
1
2
@_sameersingh_
Sameer Singh
17 days
Just set up my first FastAPI project and it’s insanely smooth. Install, create an app, run uvicorn… boom, your API is live. Wrote a simple breakdown of the whole setup in a beginner-friendly way. Check it out 👇 #FastAPI #Python #Backend #WebDev #APIs https://t.co/7j7fZfrFuD
Tweet card summary image
blog.stackademic.com
When you’re starting backend development with FastAPI, the beginning can feel a bit overwhelming, especially if you’re new to virtual…
2
0
3
@_sameersingh_
Sameer Singh
17 days
If JWTs ever felt confusing, this post breaks them down in clean, beginner-friendly language, how they work, what’s inside them, and why the signature matters. Perfect for anyone building APIs or learning backend development. Give it a read! https://t.co/GYOdwKo65F
0
0
2
@_sameersingh_
Sameer Singh
17 days
💡 JWT Login Flow in One Line Credentials → Token → Token in Header → Server Verifies → Access That’s it. JWTs are simple once you understand how they work.
0
0
0
@_sameersingh_
Sameer Singh
17 days
🧠 Key Takeaways ◉ JWTs are not encrypted ◉ Don’t store sensitive info inside ◉ The signature ensures data integrity ◉ JWT is stateless (server stores nothing) ◉ Always send the token in the Authorization header
1
0
0
@_sameersingh_
Sameer Singh
17 days
🔥 The server verifies tokens by: Rebuilding the signature using its secret key Comparing with the signature inside the token If both match → token is legit If not → token is rejected
1
0
0
@_sameersingh_
Sameer Singh
17 days
🛑 Why Signature Matters If someone tries to modify the token (e.g., change role from “user” → “admin”), the signature becomes INVALID. They would need your SECRET KEY to create a valid signature. And they don’t have it. Result? 🚫 Access denied.
1
0
0
@_sameersingh_
Sameer Singh
17 days
🔸 Signature = the most important part Signature = Header + Payload + Secret Key → hashed. This ensures nobody has changed anything inside the token. Only your server knows the secret key.
1
0
0
@_sameersingh_
Sameer Singh
17 days
🔸 Payload = the actual data inside the token ⚠️ Important: JWTs are NOT encrypted. Anyone can decode & see the payload. So DO NOT put passwords, bank details, etc. You can safely put things like: ◆︎ user_id ◆︎ role (admin/user) ◆︎ expiration time
1
0
0
@_sameersingh_
Sameer Singh
17 days
🔸 Header = metadata Contains info like algorithm and token type. { "alg": "HS256", "typ": "JWT" } You usually never touch this.
1
0
0
@_sameersingh_
Sameer Singh
17 days
🤯 What is a JWT exactly? A JWT has 3 parts: 1⃣ Header 2⃣ Payload 3⃣ Signature Example token looks like this: eyJh...bGciOiJIUzI1Ni... Just looks like gibberish, but it’s structured.
1
0
0
@_sameersingh_
Sameer Singh
17 days
📝 Login Flow With JWT: ➥ User sends email + password ➥ Server verifies ➥ Server creates a JWT token ➥ Token is sent back to the user ➥ User stores it (localStorage/cookie) ➥ User sends token in headers for protected routes ➥ Server checks token → allows or denies
1
0
0
@_sameersingh_
Sameer Singh
17 days
🔐 JWT-Based Auth (Token-Based) This one is stateless. The server doesn’t store anything. Instead, it gives you a token (a long string), and YOU keep it. You send this token every time you need access.
1
0
0