#codenewbie search results
✅ Day 66 of #100DaysOfCode Highlight: It's done! Can now say I've made an asteroid shooter game using pygame 👾 (special thanks to @bootdotdev) It's still really bare bones, but it's functional and playable 🥳 #CodingJourney #CodeNewbie
✅2/100 locked in for the day 🚀 📘 3H – Data Structures & Algorithms ⚛️ 5H – React.js (Frontend) 🖥️ 5H – Node.js (Backend) Total: 13 Hours of focused learning 💡 Staying consistent, leveling up, and enjoying the process ✨ #CodeNewbie #100DaysOfCode #ReactJS #NodeJS #DSA

50+ days streak on LeetCode! 🔥 Brain officially running on “debug mode” 😅 #LeetCode #CodeNewbie #ProgrammingLife

🔥100 amazing people in my corner 🚀 If you’re into tech, coding, or startups, let’s connect and share ideas 💡 #Tech #CodeNewbie #LetsGrowTogether

Hey guys; While still in the tech journey I just want you guys to know that. Consistency beats talent in tech. You don't need to know everything -just keep grinding, keep building projects one at a time. -osaz_dev #webdev #CodeNewbie #python @SuigamingNG #SuiEcosystem

Sharing my latest learning project: a simple portfolio using pure HTML & CSS. Open to feedback and suggestions! 🙏 #CodeNewbie #WebDevelopment #FeedbackWelcome #HTML #CSS #letsconnect

Which one gives you the biggest headache? 😭👇 A. Frontend B. Backend #CodeNewbie #WebDev #Frontend #Backend
Late nights, glowing screens, and endless lines of code — chasing bugs until they turn into features. 🌙💻✨ The grind never sleeps, but every keystroke brings me closer to mastery. #100DaysOfCode #BuildInPublic #CodeNewbie #DevCommunity #LateNightCoding

📅 Day 33 of #100DaysOfCode ✅ Learned about the Turtle library ✅ Built a Random Walk ✅ Created a Spirograph ✅ Recreated Damien Hirst’s Dot Painting It’s wild how a few lines of code can turn into art. #Python #CodeNewbie #DevJourney
DAY 45: Took me a whole week just to build this “simple” game. Still not 100% happy with it, but I learned a lot of new things along the way. And yeah, I can finally say that web dev is interesting. #100DaysOfCode #LearnInPublic #CodeNewbie #WebDevelopment
Getting my hands dirty with code. 👩💻💻#Coding #WebDevelopment #CodeNewbie #TechJourney #100DaysOfCode #Programmer #WomenInTech #Developer #FrontEndDeveloper #LearnToCode #JavaScript #HTML #CSS #CodeLife #TechCommunity #BuildInPublic

Yooo, wrote the code without any help, on my own after learning the algo of binary search.. Will practice more questions based on this concept. Lessgooo! #codenewbie #coding #lovebabbardsa

const now = new Date(); const options = { hour: 'numeric', minute: 'numeric', day: 'numeric', month: 'long' }; console.log(new Intl.DateTimeFormat('en-GB', options).format(now)); JS handles the formatting depending on the user’s locale! #CodeNewbie #JavaScript #webdev
A good use case: Showing a countdown timer before logging a user out 👇 let time = 10; const timer = setInterval(() => { console.log(time); if (time === 0) clearInterval(timer); time--; }, 1000); That’s JS automation at its finest ⚙️ #CodeNewbie #JavaScript #webdev
const now = new Date(); const options = { hour: 'numeric', minute: 'numeric', day: 'numeric', month: 'long' }; console.log(new Intl.DateTimeFormat('en-GB', options).format(now)); JS handles the formatting depending on the user’s locale! #CodeNewbie #JavaScript #webdev
When regular numbers aren’t enough, BigInt saves the day! 🧠 const huge = 987654321987654321n; console.log(huge + 1n); Used for integers larger than Number.MAX_SAFE_INTEGER. #CodeNewbie #JavaScript #webdev
Numeric separators make big numbers more readable 💡 const budget = 1_000_000_000; console.log(budget); // 1000000000 The underscores _ don’t affect the number’s value — they just improve readability! #CodeNewbie #JavaScript #webdev
Unpopular opinion: Coding itself isn’t that hard. I think the hard part is Staying consistent & Knowing what to learn next Once you figure those out, especially knowing what to learn next, the code part becomes the easy part. #100daysofcoding #CodeNewbie #WebDev #100DaysOfCode

✅ Day 66 of #100DaysOfCode Highlight: It's done! Can now say I've made an asteroid shooter game using pygame 👾 (special thanks to @bootdotdev) It's still really bare bones, but it's functional and playable 🥳 #CodingJourney #CodeNewbie
📅 Day 33 of #100DaysOfCode ✅ Learned about the Turtle library ✅ Built a Random Walk ✅ Created a Spirograph ✅ Recreated Damien Hirst’s Dot Painting It’s wild how a few lines of code can turn into art. #Python #CodeNewbie #DevJourney
My CSS now has transitions & animations🚀… meanwhile lack of electricity power is busy animating my lights on & off 😩😂⚡ #CodeNewbie #TechJourney “



✅2/100 locked in for the day 🚀 📘 3H – Data Structures & Algorithms ⚛️ 5H – React.js (Frontend) 🖥️ 5H – Node.js (Backend) Total: 13 Hours of focused learning 💡 Staying consistent, leveling up, and enjoying the process ✨ #CodeNewbie #100DaysOfCode #ReactJS #NodeJS #DSA

Your first project should make you cringe later. That’s how you know you’ve grown. What was your first project? 👇 #DevJourney #NoEditHD #CodeNewbie

Day 38: -Wrote 4–5 programs this weekend. • For now, just trying to manage academics & personal stuff, and also learned a dangerous thing ->Skipping coding for 1–2 weeks can make you forget basics like semicolons. #LearnInPublic #CodeNewbie #100DaysOfCode #WebDev



🚀 Loop magic in Python 🐍 Building star pyramid patterns ⭐ with just a few lines of code! Every pattern teaches logic, spacing, & creativity ✨ What’s the first pattern you ever coded? 🤔💻 #Python #CodingLife #CodeNewbie #100DaysOfCode

Sharing my latest learning project: a simple portfolio using pure HTML & CSS. Open to feedback and suggestions! 🙏 #CodeNewbie #WebDevelopment #FeedbackWelcome #HTML #CSS #letsconnect

🔥100 amazing people in my corner 🚀 If you’re into tech, coding, or startups, let’s connect and share ideas 💡 #Tech #CodeNewbie #LetsGrowTogether

Day 52 of #100daysofCode Solved :Trapping Rain Water problem on LeetCode! Took a little help to refine my approach #LeetCode #CodeNewbie #100DaysOfCode

Day 122 ✅ #GFG160 @geeksforgeeks Solved Minimum Jumps today! 🏃♀️⚡ Learned how to minimize jumps in O(n) without full DP! #DSA #CodeNewbie

Is converting a method to a function pointer in Rust like trying to teach a cat to bark? Source: devhubby.com/thread/how-to-… #Concurrency #LearnToCode #CodeNewbie #FunctionalProgramming #rust #method

🚀Day 40 of My Web Dev Journey – ReactJS Last 3 days,I built a Notes App with: 🔹 Zustand 🔹 Modal (createPortal) 🔹 Form Validation + Edit 🔹 Search,Category & Completed Filters 🔹 Persistence 📖 Blog: ritikwebdev.hashnode.dev/day-40-how-i-b… #ReactJS #100DaysOfCode #CodeNewbie #LearnInPublic




🚀 Day 43 of #100DaysOfCode ✅ Solved another LeetCode problem! ⚡ Optimized solution with Binary Search + Check Function 📈 Runtime: 8ms | Beats 59.07% 📉 Memory: 22.88 MB | Beats 73.11% Consistency > Motivation 💯 #LeetCode #CodeNewbie #Cplusplus

My biggest takeaway from today’s JavaScript session with @yu_angela is that coding isn’t only about memorizing syntax or functions, the real challenge lies in learning how to break problems down into simpler steps. #JavaScript #Coding #CodeNewbie #Programming #WebDev

Is it a field day in Rust whenever arrays of structs converge? Source: devhubby.com/thread/how-to-… #DataStructures #RustProgramming #CodeNewbie #SoftwareDevelopment #value #fieldy

Something went wrong.
Something went wrong.
United States Trends
- 1. Chiefs 101K posts
- 2. Branch 29.6K posts
- 3. Mahomes 30.8K posts
- 4. #TNABoundForGlory 50.2K posts
- 5. #LoveCabin N/A
- 6. LaPorta 10K posts
- 7. Goff 13.4K posts
- 8. Bryce Miller 4,215 posts
- 9. Kelce 15.7K posts
- 10. #OnePride 6,294 posts
- 11. Dan Campbell 3,349 posts
- 12. #LaGranjaVIP 46.8K posts
- 13. #DETvsKC 4,818 posts
- 14. Butker 8,348 posts
- 15. Mariners 48K posts
- 16. Pacheco 4,879 posts
- 17. Gibbs 5,503 posts
- 18. Baker 53.8K posts
- 19. collinsworth 2,916 posts
- 20. Mike Santana 3,976 posts