#codenewbie 搜尋結果

Diving into React Native today. Building out the basics! #ReactNative #CodeNewbie #buildinpublic

shimanshu_c's tweet image. Diving into React Native today. Building out the basics! #ReactNative #CodeNewbie #buildinpublic

✅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

NehaSha42019127's tweet image. ✅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

Day 21/50 of #50DaysOfJS Today I escaped from callback hell and found salvation in Promises ✅ Cleaner async code ✅ Better error handling ✅ No more nesting nightmares Async JS finally starting to make sense! #JavaScript #CodeNewbie #WebDev

Sunshine_MiraJ's tweet image. Day 21/50 of #50DaysOfJS

Today I escaped from callback hell  and found salvation in Promises 
✅ Cleaner async code
✅ Better error handling
✅ No more nesting nightmares
Async JS finally starting to make sense!

#JavaScript #CodeNewbie #WebDev

✅ 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


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

Patil_Harshal_5's tweet image. 🔥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

Osazedotsui's tweet image. 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

mhdafriandi_'s tweet image. 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

ayanakoji_kiyo's tweet image. 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 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


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

alieGotha's tweet image. 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

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

octocat__codes's tweet image. 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

meet_laisi's tweet image. 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


Diving into React Native today. Building out the basics! #ReactNative #CodeNewbie #buildinpublic

shimanshu_c's tweet image. Diving into React Native today. Building out the basics! #ReactNative #CodeNewbie #buildinpublic

My CSS now has transitions & animations🚀… meanwhile lack of electricity power is busy animating my lights on & off 😩😂⚡ #CodeNewbie #TechJourney

Mira_cle0122's tweet image. My CSS now has transitions & animations🚀… meanwhile lack of electricity power is busy animating my lights on & off 😩😂⚡ #CodeNewbie #TechJourney

“
Mira_cle0122's tweet image. My CSS now has transitions & animations🚀… meanwhile lack of electricity power is busy animating my lights on & off 😩😂⚡ #CodeNewbie #TechJourney

“
Mira_cle0122's tweet image. 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

NehaSha42019127's tweet image. ✅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

codewithabhiX's tweet image. 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

aryan127000's tweet image. 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
aryan127000's tweet image. 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
aryan127000's tweet image. 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

Day 21/50 of #50DaysOfJS Today I escaped from callback hell and found salvation in Promises ✅ Cleaner async code ✅ Better error handling ✅ No more nesting nightmares Async JS finally starting to make sense! #JavaScript #CodeNewbie #WebDev

Sunshine_MiraJ's tweet image. Day 21/50 of #50DaysOfJS

Today I escaped from callback hell  and found salvation in Promises 
✅ Cleaner async code
✅ Better error handling
✅ No more nesting nightmares
Async JS finally starting to make sense!

#JavaScript #CodeNewbie #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

PrinceKush31873's tweet image. 🚀 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

🚀 Learning journey update: Today I dived into Node.js + Express.js ⚡ Got the hang of the basics of Node.js, explored routes, and worked with REST verbs 🔥 Step by step, backend is starting to make sense! 🛠️ #100DaysOfCode #CodeNewbie #DevJourney #BuildInPublic #CodingJourney

SyntaxTiwari's tweet image. 🚀 Learning journey update: Today I dived into Node.js + Express.js ⚡
Got the hang of the basics of Node.js, explored routes, and worked with REST verbs 🔥
Step by step, backend is starting to make sense! 🛠️
#100DaysOfCode #CodeNewbie #DevJourney #BuildInPublic #CodingJourney
SyntaxTiwari's tweet image. 🚀 Learning journey update: Today I dived into Node.js + Express.js ⚡
Got the hang of the basics of Node.js, explored routes, and worked with REST verbs 🔥
Step by step, backend is starting to make sense! 🛠️
#100DaysOfCode #CodeNewbie #DevJourney #BuildInPublic #CodingJourney

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

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

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

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

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

Patil_Harshal_5's tweet image. 🔥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

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

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

alieGotha's tweet image. 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 1- #100DaysOfCode learned Printing, Stringer, Debugging and input function #Python #CodeNewbie

DhruvKadara's tweet image. Day 1- #100DaysOfCode learned Printing, Stringer, Debugging and input function #Python #CodeNewbie

🚀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

ritik65477's tweet image. 🚀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
ritik65477's tweet image. 🚀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
ritik65477's tweet image. 🚀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
ritik65477's tweet image. 🚀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

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

eischideraa_unn's tweet image. 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

Loading...

Something went wrong.


Something went wrong.


United States Trends