Daily Learning Log: DSA + Development — Day 3 Today was about strengthening logic and understanding the “why” behind the code. Python (DSA): ✅ Practiced loop-based problems ✅ Worked on number logic (reverse, palindrome, digit operations) ✅ Focused on breaking problems into steps before coding Development (Node.js): ✅ Revised core Node.js concepts ✅ Revisited how async code works at a high level Key takeaway: 👉 Writing the logic in simple words before coding reduces mistakes and confusion. Still learning. Staying consistent. One day at a time 🚀 #Python #DSA #NodeJS #LearningInPublic #MCA
Strengthening Logic with Python and Node.js
More Relevant Posts
-
Daily Learning Log: DSA + Development — Day 4 Focused today on practice, clarity, and connecting fundamentals. Python (DSA): ✅ Practiced string and number-based problems ✅ Worked on list and tuple problems ✅ Learned the concept of factorial and its implementation ✅ Improved understanding of loops and conditions Development (Node.js): ✅ Revised how a request flows in a Node.js server ✅ Started with Express.js and learned basic HTTP methods Key takeaway: 👉 Strong fundamentals make complex problems feel simpler over time. Staying consistent and learning step by step 🚀 Always open to feedback and guidance. #Python #DSA #NodeJS #LearningInPublic #MCA
To view or add a comment, sign in
-
Daily Learning Log: DSA + Development — Day 5 🚀 Focused today on understanding concepts deeply instead of just writing code. Python (DSA): ✅ Learned the concept of recursion ✅ Understood base case vs recursive case ✅ Implemented recursion for factorial and simple problems ✅ Realized how recursion breaks a big problem into smaller subproblems Development (Node.js / Express): ✅ Learned what Express.js is and why it’s used ✅ Created a basic Express server ✅ Understood routing and HTTP methods (GET, POST) ✅ Learned how request–response flow works in Express Key takeaway: 👉 Clear thinking is more important than complex code. Simpler logic leads to better solutions. Consistency > motivation. Learning step by step 🚀 Always open to feedback and guidance. #Python #DSA #Recursion #ExpressJS #NodeJS #LearningInPublic #MERN #MCA
To view or add a comment, sign in
-
Daily Learning Log: DSA + Development — Day 20 🚀 🧠 Python (DSA): ✅ Practiced array traversal (normal + reverse) ✅ Solved frequency count problems using dictionary ✅ Focused on avoiding off-by-one errors 🌐 Development (Node.js + Express + MongoDB): ✅ Revised authentication concepts ✅ Creating authentication for url shortner ✅ Fixed small bugs in backend routing Day 20 complete ✅ #DSA #100DaysOfCode #BackendDevelopment #Consistency #LearningJourney
To view or add a comment, sign in
-
Day 8 was focused on applying fundamentals to real problems. Python (DSA): ✅ Learned the basics of time complexity Development (Node.js): ✅ Learned about HTTP status codes (200, 404, etc.) ✅ Understood what headers are and what they contain ✅ Learned how to connect Node.js with MongoDB Key takeaway: 👉 Consistent practice turns concepts into confidence. Staying disciplined and learning step by step 🚀 Always open to feedback and guidance. #Python #DSA #NodeJS #LearningInPublic #MCA
To view or add a comment, sign in
-
Day 10 of learning in public 🚀 Focused on strengthening fundamentals and connecting concepts. Python (DSA): ✅ Practiced time complexity basics ✅ Solved array and loop-based problems ✅ Improved problem breakdown before coding Development (Node.js): ✅ Revised middleware and request–response cycle ✅ Practiced building simple REST APIs ✅ Worked with MongoDB integration Still learning, still improving — one step at a time. #Python #DSA #NodeJS #LearningInPublic #MCA #BuildInPublic
To view or add a comment, sign in
-
JSON-RPC is a lightweight remote procedure call protocol that uses JSON to encode method calls and responses. A client sends a JSON object with a method name and parameters over a transport (like TCP or HTTP), the server deserializes it, invokes the matching function, and replies with a JSON object that includes either a result or an error. It’s simple, language-agnostic, and good for calling server-side functions as if they were local. #AI #ML #Python #Golang #JSON #RPC https://lnkd.in/gaY-RbuH
To view or add a comment, sign in
-
🔥 Most beginners learn Python… But very few learn how to write powerful functions. Today in my Python Full Stack journey, I discovered something that completely changed how I look at functions. At first, I thought arguments were just about passing values… But then I realized — they are what make code flexible, reusable, and production-ready. Here’s what I learned today: 👉 Positional Arguments – Simple, but order controls everything. 👉 Default Arguments – Your function becomes intelligent with fallback values. 👉 Keyword Arguments – Cleaner, more readable calls. 👉 *args – Accept unlimited inputs without breaking your function. 👉 **kwargs – Handle dynamic named data like a pro. 💡 Big Realization: Good developers don’t just write code that works. They write code that others can understand, extend, and trust. Small concepts like these are silently building my foundation in backend development. Consistency > Intensity. Day by day, function by function — becoming a better developer 🚀 Follow along if you enjoy watching someone grow in public. #Python #LearnInPublic #FullStackDeveloper #CodingJourney #100DaysOfCode #Developers #Tech
To view or add a comment, sign in
-
☀️ Morning Python thought… Python teaches all of us a simple but powerful lesson: Readable code is productive code. In real projects, the goal isn’t just to make things work — it’s to make them understandable, maintainable, and scalable. The best solutions are often the ones that look obvious in hindsight. My daily rule of thumb: ✔ If it feels complicated, simplify it ✔ If it’s not readable, refactor it ✔ If future you might struggle… fix it now 🙂 Because great Python isn’t just about writing code — it’s about writing clarity. Happy coding everyone 🐍🚀 #Python #OPENFORC2C #CleanCode #SoftwareEngineering #C2C #BackendDevelopment #DeveloperMindset #C2H #LearningInPublic
To view or add a comment, sign in
-
🐍 Program to Print ASCII Value of a Character | Python & Multi-Language Concept ASCII (American Standard Code for Information Interchange) assigns a unique numeric value to every character, and understanding this concept is essential for beginners in programming. In this example, we learn how to find and print the ASCII value of a given character, with a focus on Python and an overview across multiple languages. 📌 Concepts covered: • What ASCII values are • Using Python’s built-in ord() function • Converting characters to ASCII in Java, C, C++, C#, and JavaScript • Understanding character-to-integer mapping 💡 You’ll learn: ✔ How characters are stored internally ✔ Language-independent logic behind ASCII ✔ Simple and interview-friendly programs ✔ Strong foundation for string manipulation 🎯 Ideal for: Python Beginners | Programming Starters | Interview Preparation | Logic Building 👉 Follow Ashok IT School for daily programming basics & examples 💬 Comment “ASCII” for source code & practice questions #PythonProgramming #ASCII #ProgrammingBasics #LearnPython #CodingPractice #InterviewQuestions #AshokIT
To view or add a comment, sign in
-
🚀 Built a Currency Converter CLI App using Python Today I built a command-line Currency Converter that: ✔️Fetches real-time exchange rates using an external API ✔️Handles network errors and timeouts ✔️Validates user input (currency codes & amount) ✔️Prevents crashes using proper exception handling ✔️Uses clean loop-based control flow (no recursion) Tech used: Python • requests • REST API • Exception Handling Small project — big learning. Excited to keep improving and building. 💪 github repo:https://lnkd.in/eetfqTmb Thumbnail: Chatgpt #Python #APIs #BeginnerProjects #BackendDevelopment #LearningByBuilding
To view or add a comment, sign in
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development