prashantmishra (@mprashant1100) 's Twitter Profile
prashantmishra

@mprashant1100

Full Stack Engineer | Product Designer | Hawan | Building Hawan for Bharat | Freelancer

ID: 2408548627

linkhttp://hawan.site calendar_today24-03-2014 07:25:22

251 Tweet

165 Followers

165 Following

prashantmishra (@mprashant1100) 's Twitter Profile Photo

Error handling in Python finally clicked. Exceptions aren’t failures they’re signals that normal flow broke. try → risky code except → handle what you can finally → clean up, always This is how real backend systems survive. Next: Built-in functions & Pythonic code #python

Error handling in Python finally clicked.

Exceptions aren’t failures
they’re signals that normal flow broke.

try → risky code
except → handle what you can
finally → clean up, always

This is how real backend systems survive.

Next: Built-in functions & Pythonic code
#python
prashantmishra (@mprashant1100) 's Twitter Profile Photo

Learning Python the Pythonic way now. Big shift: Don’t write loops for everything. Use enumerate, zip, any, all, and list comprehensions to express intent. Python isn’t about clever code. It’s about clear code. #Python #pythonprogramming #pythoncoding

Learning Python the Pythonic way now.

Big shift:
Don’t write loops for everything.

Use enumerate, zip, any, all,
and list comprehensions to express intent.

Python isn’t about clever code.
It’s about clear code.

#Python #pythonprogramming #pythoncoding
prashantmishra (@mprashant1100) 's Twitter Profile Photo

Hi! I'm looking to #Connect with people interested in: 🌐 Web Development 💹 React 🎖️ Internships 🤖 DSA 🦏 JavaScript ✅ Development 🏗️ Building online 📂 Open Source 💻 Computer Science 💼 Freelancing #letsconnect #buildinpublic #WebDev #FrontEndDeveloper

prashantmishra (@mprashant1100) 's Twitter Profile Photo

Finished all Python basics It took me 4 hours total — I studied 1 hour a day, so wrapped it up in 4 days. Now the real part begins: I’ve started building mini projects to deepen my understanding. Will share those next. If you want the 4-hour Python roadmap, drop a comment 👇

Finished all Python basics 

It took me 4 hours total —
I studied 1 hour a day, so wrapped it up in 4 days.

Now the real part begins:
I’ve started building mini projects to deepen my understanding.
Will share those next.

If you want the 4-hour Python roadmap,
drop a comment 👇
prashantmishra (@mprashant1100) 's Twitter Profile Photo

No updates from last 2 days, I have been busy somewhere in work. Started Building projects on pure python. I’ll share the GitHub link soon. #python #pythonprojects #Developers #SoftwareEngineer

prashantmishra (@mprashant1100) 's Twitter Profile Photo

Built my second pure Python project — FinTrace Small expense-tracking system that help me understand • why storage logic should be separate • how incremental data (append, not overwrite)work • clean structure without framework No FastAPI,no database just Python fundamentals

Built my second pure Python project — FinTrace
Small expense-tracking system that help me understand
• why storage logic should be separate
• how incremental data (append, not overwrite)work
• clean structure without framework
No FastAPI,no database just Python fundamentals
prashantmishra (@mprashant1100) 's Twitter Profile Photo

Day 1 of interview prep 🚀 Restarting from fundamentals. Today’s focus: var, let, const. Not syntax. Not definitions. But how JavaScript actually scopes, hoists, and executes them. Strong basics > clever answers. #javascript #InterviewTips #frontend

prashantmishra (@mprashant1100) 's Twitter Profile Photo

Day 2 of interview prep TDZ is NOT a memory issue. let and const do get memory. They just can’t be accessed before declaration. TDZ is an access rule, not a memory problem. Once you get this, hoisting makes sense. #InterviewTips #javascript

prashantmishra (@mprashant1100) 's Twitter Profile Photo

Node.js isn’t fast because it’s multi-threaded. JavaScript is single-threaded. The real difference is blocking vs non-blocking. Blocking → everything waits. Non-blocking → work starts, execution continues. Node doesn’t do more at once. It just doesn’t waste time waiting.