Filter
Exclude
Time range
-
Near
Artificial Intelligence is rapidly transforming the way modern applications are built, deployed, and scaled. πŸš€ Visit: baiacademy.co.uk/ai-software… #ArtificialIntelligence #FullStackDevelopment #SoftwareDevelopment #AIProgramming #WebDevelopment #DigitalTransformation
1
Built KharchaFlow πŸš€ A smart expense tracking web app that helps users manage income and expenses, visualize spending habits, and gain actionable financial insights through analytics. πŸ”— kharchaflow.vercel.app #WebDevelopment #FinanceTracker #JavaScript #FullStackDevelopment
2
βš™οΈ Frontend Backend, Automated Why juggle multiple tools when you can build everything in one seamless workflow? With MetaInside, AI handles the heavy lifting across your entire stack: 🎨 UI components βš™οΈ APIs & backend logic πŸ”— Smart contract and blockchain interactions Spend less time switching between tools and more time building what matters. One workflow. One platform. Endless possibilities. πŸš€ #Web3 #AI #dApps #NoCode #Blockchain #FullStackDevelopment
2
10
92
πŸš€ Day 31 - Restarting My Full-Stack Journey Today was one of the most exciting milestones in my backend journey so far. Instead of learning isolated concepts, I built a complete backend project and connected multiple technologies together to create a real-world API. πŸ› οΈ Project Built: πŸ“‡ Contact Manager API Built using: * Node.js * Express.js * MongoDB * Mongoose * JWT Authentication * bcrypt πŸ“š What I learned today: βœ… Express Project Structure * Routes * Controllers * Models * Middleware * Config Files βœ… MVC Architecture * Separating business logic from routes * Writing cleaner and scalable code βœ… MongoDB & Mongoose * Creating Schemas * Creating Models * Performing CRUD Operations * Database Relationships using ObjectId references βœ… User Authentication * User Registration * User Login * Password Hashing with bcrypt * JWT Token Generation βœ… Authorization * Protected Routes * Token Validation Middleware * Accessing authenticated user information βœ… Custom Middleware * Authentication Middleware * Centralized Error Handling Middleware βœ… Environment Variables * Storing secrets securely * Database connection strings * JWT secret keys πŸ› οΈ Features Implemented: βœ… Register User βœ… Login User βœ… Generate JWT Token βœ… Create Contact βœ… Get All Contacts βœ… Get Single Contact βœ… Update Contact βœ… Delete Contact βœ… Protected API Routes πŸ’‘ Biggest takeaway: Today was the first time I felt like I was building a real backend application instead of just experimenting with APIs. Understanding how authentication, databases, middleware, controllers, and routes work together gave me a much clearer picture of how modern backend systems are structured. From simple Express servers to a complete authenticated CRUD API , the journey is getting more exciting every day πŸš€ #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #ExpressJS #MongoDB #Mongoose #JWT #WebDevelopment #LearningInPublic #ChaiCode @Hiteshdotcom @piyushgarg_dev @yntpdotme @surajtwt_ @ChaiCodeHQ @nirudhuuu
πŸš€ Day 30 - Restarting My Full-Stack Journey Today was a very practical backend development day. Instead of focusing only on theory, I spent most of my time building APIs with Express.js and understanding how routing and middleware work behind the scenes. This was one of those days where concepts started feeling much more real because I could actually see requests moving through my application. πŸ“š What I learned today: βœ… Express Fundamentals * Creating Express applications * Understanding request and response objects * Working with JSON data using: app.use(express.json()) * Sending responses using: * `res.send()` * `res.json()` * `res.status()` * `res.redirect()` * `res.sendStatus()` βœ… Route Parameters & Query Parameters Worked with: /menu/:id and /search?q=biryani Understanding the difference between: * `req.params` * `req.query` βœ… HTTP Methods in Express Implemented: * GET * POST * PUT * PATCH * DELETE Built CRUD-style APIs and understood where each method should be used. βœ… Express Routing * Route handlers * Dynamic routes * Wildcard routes * Route chaining using: app.route() βœ… Middleware Deep Dive Learned how middleware works in Express: * Request logging middleware * Timing middleware * Authentication middleware * Authorization middleware Understanding: next() and why forgetting it can cause requests to hang forever. βœ… Authentication & Authorization Built custom middleware for: * Token validation * User identification * Role-based access control Understanding the difference between: * Authentication β†’ Who are you? * Authorization β†’ What are you allowed to do? πŸ› οΈ Practical Work Built multiple Express applications that included: βœ… Basic Express Server βœ… Route Parameters βœ… Query Parameters βœ… CRUD Operations βœ… Request Logging βœ… Authentication Middleware βœ… Role-Based Authorization βœ… Custom Response Handling πŸ’‘ Biggest takeaway: Today made me realize that middleware is one of the most powerful concepts in backend development. Instead of writing the same code in every route, middleware allows us to handle logging, authentication, validation, and many other concerns in a clean and reusable way. Backend development is starting to feel much more structured and scalable now πŸš€ #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #ExpressJS #JavaScript #APIs #Middleware #LearningInPublic #ChaiCode #DAY1 #DAY30 #100DaysOfSilence @Hiteshdotcom @piyushgarg_dev @yntpdotme @surajtwt_ @ChaiCodeHQ
1
15
Before anyone sees a beautiful website, there are countless moments like this behind the scenes. πŸ˜‚πŸ’» Developer's daily reminder: If there's no bug, are you really coding? πŸ’» #OsitexCreativeHub #WebDeveloperLife #FullStackDevelopment #TechJourney #DebuggingMode
1
6
128
Day 29/90 πŸš€ Solved LC 160 & LC 15 today. Also reviewed the state of our Research Application Portal and planned the next phase: University Registration, Synopsis Evaluation, Thesis Evaluation, Viva Management, and Admin Dashboard πŸ’» #100DaysOfCode #DSA #FullStackDevelopment
8
59
πŸš€ Day 30 - Restarting My Full-Stack Journey Today was a very practical backend development day. Instead of focusing only on theory, I spent most of my time building APIs with Express.js and understanding how routing and middleware work behind the scenes. This was one of those days where concepts started feeling much more real because I could actually see requests moving through my application. πŸ“š What I learned today: βœ… Express Fundamentals * Creating Express applications * Understanding request and response objects * Working with JSON data using: app.use(express.json()) * Sending responses using: * `res.send()` * `res.json()` * `res.status()` * `res.redirect()` * `res.sendStatus()` βœ… Route Parameters & Query Parameters Worked with: /menu/:id and /search?q=biryani Understanding the difference between: * `req.params` * `req.query` βœ… HTTP Methods in Express Implemented: * GET * POST * PUT * PATCH * DELETE Built CRUD-style APIs and understood where each method should be used. βœ… Express Routing * Route handlers * Dynamic routes * Wildcard routes * Route chaining using: app.route() βœ… Middleware Deep Dive Learned how middleware works in Express: * Request logging middleware * Timing middleware * Authentication middleware * Authorization middleware Understanding: next() and why forgetting it can cause requests to hang forever. βœ… Authentication & Authorization Built custom middleware for: * Token validation * User identification * Role-based access control Understanding the difference between: * Authentication β†’ Who are you? * Authorization β†’ What are you allowed to do? πŸ› οΈ Practical Work Built multiple Express applications that included: βœ… Basic Express Server βœ… Route Parameters βœ… Query Parameters βœ… CRUD Operations βœ… Request Logging βœ… Authentication Middleware βœ… Role-Based Authorization βœ… Custom Response Handling πŸ’‘ Biggest takeaway: Today made me realize that middleware is one of the most powerful concepts in backend development. Instead of writing the same code in every route, middleware allows us to handle logging, authentication, validation, and many other concerns in a clean and reusable way. Backend development is starting to feel much more structured and scalable now πŸš€ #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #ExpressJS #JavaScript #APIs #Middleware #LearningInPublic #ChaiCode #DAY1 #DAY30 #100DaysOfSilence @Hiteshdotcom @piyushgarg_dev @yntpdotme @surajtwt_ @ChaiCodeHQ
πŸš€ Day 29 β€” Restarting My Full-Stack Journey Today I went deeper into Node.js and learned what actually happens behind the scenes when JavaScript runs outside the browser. This was one of those topics where understanding the internals made many previously confusing concepts finally click. πŸ“š What I learned today: βœ… How JavaScript Runs in Browsers vs Node.js * Browsers provide Web APIs * Node.js provides Node APIs * Both use JavaScript but have different runtime environments βœ… Understanding Node.js Architecture * V8 JavaScript Engine * Node.js APIs * C/C Bindings * libuv * Event Loop Understanding how all these components work together to execute JavaScript outside the browser. βœ… Node.js Process Lifecycle Learned what happens when we run: ```bash node index.js ``` * A Node.js process is created * A main thread is allocated * Top-level code starts executing * Modules are loaded * Event callbacks are registered * Event loop starts processing tasks βœ… Event Loop Deep Dive Explored major event loop phases: * Timers * I/O Poll Phase * `setImmediate()` * Close Callbacks And how Node.js decides when to continue or exit the process. βœ… Main Thread vs Thread Pool Learned: * JavaScript runs on the main thread * CPU-blocking code can freeze execution * libuv uses a thread pool for certain expensive operations * Why blocking code like `while(true)` should be avoided βœ… Understanding Asynchronous Execution Practiced examples using: * `console.log()` * `setTimeout()` * Event Loop execution order And understood why asynchronous callbacks execute after synchronous code completes. πŸ› οΈ Practice: * Explored Node.js execution flow * Tested event loop behavior using timers * Experimented with callback execution order * Learned how blocking code impacts application performance πŸ’‘ Biggest takeaway: Before today, I knew that Node.js was "single-threaded." Now I understand what that actually means. Learning about the event loop, libuv, the main thread, and asynchronous execution helped me understand how Node.js handles thousands of operations efficiently without blocking the application. The deeper I go into backend development, the more fascinating it becomes πŸš€ #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #JavaScript #EventLoop #WebDevelopment #LearningInPublic #ChaiCode #dayxwebtoon #TrendingforPavel #100DaysOfSilence #DAY29 @Hiteshdotcom @nirudhuuu @yntpdotme @ChaiCodeHQ @surajtwt_ @codedailybot @_100DaysOfCode @100days
1
1
47
Build a Real-World Social Media Platform from Scratch! Join our 1-Month Full Stack Developer Internship and gain hands-on experience with React, Node.js, MongoDB, REST APIs, and real-world project deployment. #FullStackDevelopment #Internship #CubenSquare
10
Multilingual AI is the future. Making technology more accessible through natural conversations. πŸš€ #AI #VoiceAI #FullStackDevelopment #MachineLearning #FutureTech
1
12
Day 16/75 Today's JavaScript Progress: -Strings -if/else Conditions -Arrays 15 days ago I was learning HTML. Today I'm writing JavaScript logic. Small daily improvements lead to big results. πŸ“ˆπŸ’» #75DaysOfCode #JavaScript #FullStackDevelopment #Coding #WebDevelopment #BuildInPub
12
Next generation apps will not just have interfaces. They will have conversations. πŸŒŽπŸ€– #AI #VoiceAI #FullStackDevelopment #MachineLearning #FutureTech
1
15
Day 28/90 πŸš€ Solved LC 28 using KMP and LC 11 using Two Pointers. Also implemented the RRC review workflow for our Research Application Portal with applicant/expert roles, JWT auth, dashboards, and review actions πŸ’» #100DaysOfCode #DSA #FullStackDevelopment #BuildInPublic
1
2
29
Hey everyoneπŸ‘‹πŸ½ !! Starting my Full Stack Development journey in public.. I'm currently building small projects and making mistakes along the way.. Looking forward to sharing what I build, what I learn along the way.. #100DaysOfCode #WebDevelopment #FullStackDevelopment
11
πŸš€ Day 29 β€” Restarting My Full-Stack Journey Today I went deeper into Node.js and learned what actually happens behind the scenes when JavaScript runs outside the browser. This was one of those topics where understanding the internals made many previously confusing concepts finally click. πŸ“š What I learned today: βœ… How JavaScript Runs in Browsers vs Node.js * Browsers provide Web APIs * Node.js provides Node APIs * Both use JavaScript but have different runtime environments βœ… Understanding Node.js Architecture * V8 JavaScript Engine * Node.js APIs * C/C Bindings * libuv * Event Loop Understanding how all these components work together to execute JavaScript outside the browser. βœ… Node.js Process Lifecycle Learned what happens when we run: ```bash node index.js ``` * A Node.js process is created * A main thread is allocated * Top-level code starts executing * Modules are loaded * Event callbacks are registered * Event loop starts processing tasks βœ… Event Loop Deep Dive Explored major event loop phases: * Timers * I/O Poll Phase * `setImmediate()` * Close Callbacks And how Node.js decides when to continue or exit the process. βœ… Main Thread vs Thread Pool Learned: * JavaScript runs on the main thread * CPU-blocking code can freeze execution * libuv uses a thread pool for certain expensive operations * Why blocking code like `while(true)` should be avoided βœ… Understanding Asynchronous Execution Practiced examples using: * `console.log()` * `setTimeout()` * Event Loop execution order And understood why asynchronous callbacks execute after synchronous code completes. πŸ› οΈ Practice: * Explored Node.js execution flow * Tested event loop behavior using timers * Experimented with callback execution order * Learned how blocking code impacts application performance πŸ’‘ Biggest takeaway: Before today, I knew that Node.js was "single-threaded." Now I understand what that actually means. Learning about the event loop, libuv, the main thread, and asynchronous execution helped me understand how Node.js handles thousands of operations efficiently without blocking the application. The deeper I go into backend development, the more fascinating it becomes πŸš€ #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #JavaScript #EventLoop #WebDevelopment #LearningInPublic #ChaiCode #dayxwebtoon #TrendingforPavel #100DaysOfSilence #DAY29 @Hiteshdotcom @nirudhuuu @yntpdotme @ChaiCodeHQ @surajtwt_ @codedailybot @_100DaysOfCode @100days
πŸš€ Day 28 - Restarting My Full-Stack Journey Today was another exciting backend day as I moved beyond theory and started understanding how web servers, Express.js, TypeScript tooling, and backend project workflows work together. I also built my first basic backend Todo CRUD application to put these concepts into practice. πŸ“š What I learned today: βœ… Understanding Web Servers * How clients and servers communicate * Ports and server processes * Why servers continuously listen for incoming requests βœ… Node.js HTTP Module * Creating a basic web server using the built-in `http` module * Understanding: * Request (`req`) * Response (`res`) * Handling different routes and HTTP methods manually βœ… Dependency Management * Understanding: * `node_modules` * Dependency trees * `package-lock.json` * Why dependency locking is important for consistent environments βœ… Introduction to Express.js * Creating APIs with Express * Routing using: * `app.get()` * `app.post()` * Parsing JSON using: * `express.json()` βœ… TypeScript Project Setup * `tsconfig.json` * `rootDir` * `outDir` * Compiling TypeScript into JavaScript βœ… Development Workflow Improvements * Local TypeScript installation * `tsc-watch` * Auto compilation and server restart during development βœ… Type Definitions * Understanding `@types/*` * Installing: * `@types/node` * Express type definitions * Better IntelliSense and type safety βœ… Runtime Validation * Introduction to Zod * Understanding why TypeScript alone is not enough for validating external inputs πŸ› οΈ Practical Work Built a basic Todo CRUD API using: * Node.js * Express.js * TypeScript Implemented: βœ… Create Todo βœ… Read Todos βœ… Update Todo βœ… Delete Todo This was my first step toward building real backend applications. πŸ’‘ Biggest takeaway: Frontend taught me how users interact with applications. Backend is teaching me how applications actually process requests, manage data, and communicate with clients behind the scenes. Building my first CRUD API made the client-server relationship much clearer and made backend development feel far less intimidating. Excited to keep moving deeper into Node.js, Express, APIs, validation, and databases πŸš€ #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #ExpressJS #TypeScript #WebDevelopment #LearningInPublic #ChaiCode #DaysCount #DAY1 #DAY28 #trendingsongs #100daysofadam @Hiteshdotcom @piyushgarg_dev @nirudhuuu @surajtwt_ @yntpdotme
51
TypeScript tip πŸ‘‡ "./src/**/*.ts" in your tsconfig include field means: ./src/ β†’ src folder **/ β†’ every subfolder recursively *.ts β†’ any TypeScript file one line. tells TypeScript exactly where to look. #TypeScript #fullstackdevelopment #buildinpublic
15
Turn your passion for technology into a rewarding career with our Full Stack Web Development Program. VISIT YOUR NEAREST CENTRE NOW! Contact: 91 98201 27177 #FullStackDevelopment #WebDevelopment #Coding #Programmer #Developer #HTML #CSS #JavaScript #WordPress #CareerInIT
14
πŸš€ Need a Full Stack Development Service? From idea to deployment, our expert team handles the complete development journey so you can focus on growing your business. πŸ“© Let's build something amazing together. #FullStackDevelopment #WebDevelopment #SoftwareDevelopment
2
3
Day 27/90 πŸš€ Solved LC 636 Exclusive Time of Functions and completed my current Stack journey on LeetCode. Next up: Monotonic Stacks. Also planned Applicant, Expert, and Admin workflows for our Research Portal with my teammates πŸ’» #100DaysOfCode #DSA #FullStackDevelopment
1
8
78
Day 15/75 Started JavaScript today! ⚑ βœ… V8 Engine βœ… let, var & const βœ… Data Types βœ… JavaScript Fundamentals From static websites to interactive applications. #75DaysOfCode #JavaScript #FullStackDevelopment #WebDevelopment #BuildInPublic
1
2
25