#backenddevelopment Suchergebnisse
Month 2 at ALX Backend was intense! I mastered loops, functions, data structures, and OOP in Python. Debugging was tough, but I learned structure, error handling, and clean coding growing stronger as a backend developer. ๐ #ALX #BackendDevelopment

Wrapped up a great week practicing backend modeling with Mongoose๐ป Built schemas for: ๐ ToDo App (User, Todo, SubTodo) ๐ E-Com. System (User, Product, Order, Category) ๐ฅ Hospital Mg. System (Hospital, Doctor, Patient, Prescription) #BackEndDevelopment #development



๐ I've started my Backend Development journey! ๐ปโจ ๐ First step: Node.js ๐ข โก๏ธ Ran my very first code and got the server up & running ๐ฅ๏ธ๐ Feeling pumped to dive deeper into APIs, databases, and building real-world apps ๐ง๐ #NodeJS #BackendDevelopment #CodingJourney

Day 33 of #30DaysCodeChallenge 1๏ธโฃ Studied Redis in a bit more depth 2๏ธโฃ Learned about Rate Limiter in LLD Got to explore a lot of new concepts today! โก Productivity: Medium #BackendDevelopment #Redis #SystemDesign #100DaysOfCode #CodingJourney


GET & POST requests in Spring Boot! Routes : Post โ /products - adds a new product @PostMapping Get โ /products/{Id} - returns product by ID @GetMapping #BackendDevelopment #SpringBoot #Java #Backend #LearnInPublic




Good docs means: โ Faster frontend integration โ Fewer questions from teammates โ Easier onboarding for new devs โ Clear structure for future updates Donโt just build APIs โ make them discoverable, testable, and understandable #BackendDevelopment #API #Swagger #DevTips

Learned what Redis actually is โ Itโs like the RAM of databases โ super fast and perfect for caching! โก #Python #Redis #BackendDevelopment #Database #Coding #InMemoryDB #100DaysOfCode #DevJourney

๐ ๏ธ Backend Dev Progress Exploring how to set up folders & files for a professional backend project ๐โก Clean structure = easier scaling, teamwork & maintenance ๐ #BuildInPublic #BackendDevelopment #MERN #100DaysOfCode

๐ Excited to share that Iโve joined Akdenar Pvt Ltd as a Backend Developer Intern! Grateful for this opportunity and the support from everyone along the way. Looking forward to learning and growing! #internship #backendDevelopment #career #newbeginnings #grateful #Akdenar

๐ Day 25/100 โ Full-Stack Kickoff ๐ Finished backend of my Course Selling App => Auth (User & Admin) => Schemas: User, Admin, Course, Video, Purchase Payment => Payments with status & methods (UPI, Card, NetBanking) #100DaysOfCode #BackendDevelopment




Hi #Connections If you love backend systems, youโll enjoy my full post on LinkedIn where I dive into what really makes backend engineering beautiful๐ linkedin.com/posts/vaishnavโฆ #BackendDevelopment #SoftwareEngineering #Developers #CodingLife #Twitter #CONNECT

Hi #Connections If you love backend systems, youโll enjoy my full post on LinkedIn where I dive into what really makes backend engineering beautiful๐ linkedin.com/posts/vaishnavโฆ #BackendDevelopment #SoftwareEngineering #Developers #CodingLife #Twitter #CONNECT
๐จโ๐ปDay 1 of my backend journey with Node.js! #100DaysOfCode #Nodejs #BackendDevelopment #FullStackDeveloper

๐ Big milestone today! Started my backend journey with Node.js ๐ป Dove into LibUV & compared it with the browser async model โก One step closer to becoming full-stack ๐ฅ #NodeJS #BackendDevelopment #CodingJourney #100DaysOfCode

Hello Friday! Trying to kill two birds with one stone.๐ง Of course I need money to chase this tech career.๐๐ Those that navigated to tech from a 9-5 job, how did you do it? Please inspire a brother! ๐ #SoftwareDevelopment #buildinpublic #BackEndDevelopment #Consistency

โ Phase 0 - Day 40: Started learning Node.js ๐ Backend begins โ servers, APIs, and more! #100DaysOfCode #NodeJS #BackendDevelopment #WebDevelopment #CodingJourney #BuildInPublic #Developer

Python really is the perfect language for beginners. Month 2 of my ALX Backend journey has been intense, wrapping up with Object-Oriented Programming. Itโs been challenging, but Iโm genuinely glad Iโm on this path! ๐ #ALX_BE @alx_africa #BackendDevelopment #Python #
Built the Job module for my Job Portal project: Created Job model with all fields & relations Implemented CRUD operations (create, read, update, delete) Added role-based access for recruiters & admin Tested all routes in Postman โ #100DaysOfCode #MERNStack #BackendDevelopment

Just finished running memory, context, and retrieval tests on my custom AI agent. From conversation continuity to pronoun resolution, context switching, and even edge casesโฆ my AI agent handled it all very well! #AI #BackendDevelopment #LangChain #buildinpublic




Working on what @JohnWPellew mentioned saving convo state to chat_memory.json, committing prompt versions, and adding schema migrations for memory. Would be adding user IDs so multiple users wonโt share the same chat history. #AI #BackendDevelopment #LangChain #buildinpublic


Month 2 at ALX Backend was intense! I mastered loops, functions, data structures, and OOP in Python. Debugging was tough, but I learned structure, error handling, and clean coding growing stronger as a backend developer. ๐ #ALX #BackendDevelopment

Day 33 of #30DaysCodeChallenge 1๏ธโฃ Studied Redis in a bit more depth 2๏ธโฃ Learned about Rate Limiter in LLD Got to explore a lot of new concepts today! โก Productivity: Medium #BackendDevelopment #Redis #SystemDesign #100DaysOfCode #CodingJourney


โจ Day 97/100 of #100DaysOfCode Today it's all about organisation work and understanding the spring boot services and my sql Scaleton of the project , And what are the technology they wanted use. Near to 100 worth it #BackendDevelopment #SpringBoot #Java #100DaysOfCod
Python really is the perfect language for beginners. Month 2 of my ALX Backend journey has been intense, wrapping up with Object-Oriented Programming. Itโs been challenging, but Iโm genuinely glad Iโm on this path! ๐ #ALX_BE @alx_africa #BackendDevelopment #Python #
Published an article on backend engineering particularly on REST API Design. It covers major aspects of rest api which we should consider while designing and structuring our API link: medium.com/@harshgharat66โฆ #backend #BackEndDevelopment #golang #api #restapi
medium.com
๐งญ REST API DesignโโโBest Practices and Architecture Principles for Modern Backend Engineers
โAPIs are not just contracts between systemsโโโtheyโre contracts between people.โ
Keep building. Keep breaking. Keep learning. Thatโs how we grow as developers ๐ช #BackendDevelopment #NodeJS #Razorpay #WebDevelopment #SoftwareEngineering #Developers #LearningByDoing
PUT & DELETE requests in Spring Boot! Routes: PUT โ /products/update - updates an existing product @PutMapping DELETE โ /products/{id} - deletes a product by ID @DeleteMapping Completes the full CRUD flow โจ #BackendDevelopment #Backend #SpringBoot #LearnInPublic




Wrapped up a great week practicing backend modeling with Mongoose๐ป Built schemas for: ๐ ToDo App (User, Todo, SubTodo) ๐ E-Com. System (User, Product, Order, Category) ๐ฅ Hospital Mg. System (Hospital, Doctor, Patient, Prescription) #BackEndDevelopment #development



GET & POST requests in Spring Boot! Routes : Post โ /products - adds a new product @PostMapping Get โ /products/{Id} - returns product by ID @GetMapping #BackendDevelopment #SpringBoot #Java #Backend #LearnInPublic




Learning Git and GitHub during my internship at Sanskriti Labs has been a game changer. Working on real projects taught me how collaboration brings code to life. #Git #GitHub #BackendDevelopment #Internship #SanskritiLabs #CodingJourney

Hi #Connections If you love backend systems, youโll enjoy my full post on LinkedIn where I dive into what really makes backend engineering beautiful๐ linkedin.com/posts/vaishnavโฆ #BackendDevelopment #SoftwareEngineering #Developers #CodingLife #Twitter #CONNECT
โก๏ธ Waiter (router) takes your order (request body). โก๏ธ Chef (controller) checks the pantry (database). If somethingโs missing 404 Not Found If itโs ready 200 OK and your meal (response) is served ๐ฝ๏ธ. @plpcommunity #NodeJS #ExpressJS #BackendDevelopment #APIs #WebDev #PLP
โจ Day 96/100 of #100DaysOfCode I started from whare I left Today spent time on revision and Intro to bit advance toppics #BackendDevelopment #SpringBoot #Java #learninginpublic #100DaysOfCod
4/4 Monthly Win: Finished the initial project phase ahead of schedule! Saw polymorphism work perfectly, boosting my confidence in designing complex object relationships. Grateful for the growth! ๐ #BackendDevelopment
๐ I've started my Backend Development journey! ๐ปโจ ๐ First step: Node.js ๐ข โก๏ธ Ran my very first code and got the server up & running ๐ฅ๏ธ๐ Feeling pumped to dive deeper into APIs, databases, and building real-world apps ๐ง๐ #NodeJS #BackendDevelopment #CodingJourney

๐ ๏ธ Backend Dev Progress Exploring how to set up folders & files for a professional backend project ๐โก Clean structure = easier scaling, teamwork & maintenance ๐ #BuildInPublic #BackendDevelopment #MERN #100DaysOfCode

๐ Day 25/100 โ Full-Stack Kickoff ๐ Finished backend of my Course Selling App => Auth (User & Admin) => Schemas: User, Admin, Course, Video, Purchase Payment => Payments with status & methods (UPI, Card, NetBanking) #100DaysOfCode #BackendDevelopment




Learned what Redis actually is โ Itโs like the RAM of databases โ super fast and perfect for caching! โก #Python #Redis #BackendDevelopment #Database #Coding #InMemoryDB #100DaysOfCode #DevJourney

๐ Excited to share that Iโve joined Akdenar Pvt Ltd as a Backend Developer Intern! Grateful for this opportunity and the support from everyone along the way. Looking forward to learning and growing! #internship #backendDevelopment #career #newbeginnings #grateful #Akdenar

"Countdown Timerโณ" it is and , its just a little project form my side it is always good to practice concepts by building small projects. Well Until then STAY HARD๐ช. #webdeveloper #SoftwareEngineering #BackEndDevelopment #Java

Day 31/100โ๏ธ > Explored ORMs with Prisma > Designed DB models & relationships > Ran migrations to keep schema in sync #100DaysOfCode #Prisma #BackendDevelopment #BuildInPublic

Day 33 of #30DaysCodeChallenge 1๏ธโฃ Studied Redis in a bit more depth 2๏ธโฃ Learned about Rate Limiter in LLD Got to explore a lot of new concepts today! โก Productivity: Medium #BackendDevelopment #Redis #SystemDesign #100DaysOfCode #CodingJourney


Month 2 at ALX Backend was intense! I mastered loops, functions, data structures, and OOP in Python. Debugging was tough, but I learned structure, error handling, and clean coding growing stronger as a backend developer. ๐ #ALX #BackendDevelopment

๐จโ๐ปDay 1 of my backend journey with Node.js! #100DaysOfCode #Nodejs #BackendDevelopment #FullStackDeveloper

โ Phase 0 - Day 40: Started learning Node.js ๐ Backend begins โ servers, APIs, and more! #100DaysOfCode #NodeJS #BackendDevelopment #WebDevelopment #CodingJourney #BuildInPublic #Developer

Good docs means: โ Faster frontend integration โ Fewer questions from teammates โ Easier onboarding for new devs โ Clear structure for future updates Donโt just build APIs โ make them discoverable, testable, and understandable #BackendDevelopment #API #Swagger #DevTips

What if I told you that soon, this workflow will be possible: @figma โ Visual Backend Design โ Full Node.js App In minutes, not weeks โก #ComingSoon #Figma #BackendDevelopment

Day 49 of #100DaysOfCode ๐ ๐ธ Solved LeetCode QOTD: Alice & Bob Playing Flower Game ๐ป Backend dev grind continues Balancing DSA + Dev is tough, but every struggle is an investment in future wins. ๐ฅ #LeetCode #BackendDevelopment #KeepBuilding



GET & POST requests in Spring Boot! Routes : Post โ /products - adds a new product @PostMapping Get โ /products/{Id} - returns product by ID @GetMapping #BackendDevelopment #SpringBoot #Java #Backend #LearnInPublic




โก Leveling up my backend journey with Node.js + Express.js ๐ Dived into ๐ก Requests & Responses, ๐ File Serving, ๐ CORS, ๐ก๏ธ Middleware, and โฑ๏ธ Job Scheduling. Step by step, building the backbone of real-world apps! ๐ป๐ฅ #Nodejs #Expressjs #BackendDevelopment #WebDevJourney


Day 55/#100DaysOfCode Wrapped up almost the final part of my backend โ got pagination working smoothly โ Next stop: jumping into the UI side ๐จ For DSA, solved Find Closest Person (easy one today since I was deep into backend dev).๐ป#BackendDevelopment #FullStackJourney


Day 23 of #30DaysCodeChallenge 1๏ธโฃ Covered a 2hr lecture on Postman ๐ฌ 2๏ธโฃ Continued working on my project โก 3๏ธโฃ After a long time, solved LeetCode POTD #1323 ๐ก โก Productivity: Medium #Postman #BackendDevelopment #LeetCode #100DaysOfCode #CodingJourney


๐ Big milestone today! Started my backend journey with Node.js ๐ป Dove into LibUV & compared it with the browser async model โก One step closer to becoming full-stack ๐ฅ #NodeJS #BackendDevelopment #CodingJourney #100DaysOfCode

Something went wrong.
Something went wrong.
United States Trends
- 1. Cowboys 70.2K posts
- 2. Fred Warner 9,107 posts
- 3. Panthers 70.8K posts
- 4. Packers 23.9K posts
- 5. Zac Taylor 2,626 posts
- 6. Ravens 63.1K posts
- 7. Browns 62.4K posts
- 8. #FTTB 3,519 posts
- 9. Dolphins 45.7K posts
- 10. #KeepPounding 7,832 posts
- 11. Eberflus 9,649 posts
- 12. Cam Ward 1,890 posts
- 13. Penn State 62.1K posts
- 14. Colts 55.2K posts
- 15. #49ers 5,374 posts
- 16. Steelers 64.8K posts
- 17. Franklin 70.9K posts
- 18. Drake Maye 21.9K posts
- 19. #Bengals 2,318 posts
- 20. Rico Dowdle 10.6K posts