veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

292
active users

#100DaysOfCode

18 posts11 participants1 post today

Day 75/? of coding
Day 75/100 of #100DaysOfCode
Project Update: Blog API (part 3)

++ Progress: Found a good-looking "write-post" React template. I have to figure out the imports and libraries used, and it is A LOT!

++ Learned
🔒 httpOnly Cookies:
When set to true, the browser prevents frontend JavaScript from accessing the cookie (enhances security against XSS attacks).
You can't use document.cookie to read these cookies—they’re only sent to the server automatically with each request.

🧘‍♂️ Sunday Sync — April 13, 2025
Rest day? Not quite. Just a calmer kind of coding. 🌤💻

📌 Daily Progress:
📆 #Beyond365DaysOfCode Day 105
🔁 #100DaysOfCode Day 105
📘 #freeCodeCamp – Staying steady on the Full Stack path

📚 Reading Ritual:
✅ 1 article on freeCodeCamp News
✅ 1 article from Daily.dev

⚙️ Hands-On Focus:
🔹 Light Vim tweaks to boost efficiency
🔹 Trello: Weekly planning + reflection
🔹 Reviewed TypeScript concepts
🔹 Continued Full Stack Curriculum grind

🚀 Saturday Stack — April 12, 2025
Weekend mode: activated. Still coding. Still growing. 🌱⌨️

📌 Progress Report:
💻 #Beyond365DaysOfCode Day 104
🔁 #100DaysOfCode Day 104
🌐 #freeCodeCamp – Full Stack grind continues

📖 Daily Reading:
✅ 1 article from freeCodeCamp News
✅ 1 article from Daily.dev

⚙️ Hands-On Practice:
🔹 30 min of Vim plugin configuration mastery 🔧
🔹 Trello board refreshed 🗂
🔹 Progressed through the Full Stack Developer Curriculum
🔹 TypeScript on Codecademy 🧠🌀

🧠 Thursday Flow — April 10, 2025
Fueling progress one keystroke at a time ⚡💡

📈 Daily Progress Report:
🗓 #Beyond365DaysOfCode Day 102
🔁 #100DaysOfCode Day 102
📚 #freeCodeCamp – Full Stack journey in motion

🔍 Daily Reading Log:
✅ 1 article from freeCodeCamp News
✅ 1 article on Daily.dev

🎯 Hands-On Work:
🔸 30 minutes of focused Vim practice 🎯
🔸 Trello board updated and streamlined 📋
🔸 Continued with Full Stack Developer Curriculum 💻

#Python #Vim #SecondYearOfCode #Code_Academy

🗓 Wednesday Vibes – April 9, 2025
💻✨ Midweek grind, strong and steady! Here's the update from the digital dojo 👇

🚀 Progress Report
📆 #Beyond365DaysOfCode Day 101
💯 #100DaysOfCode Day 101
🧠 #freeCodeCamp – Full Stack track grind continues!

📚 Daily Reading:
✅ freeCodeCamp News – 1 article
✅ Daily.dev – 1 article

🧪 Today’s Experiments:
🔹 Practiced Vim motions for 30 minutes 🧭
🔹 Trello board updated and organized 🗂
🔹 More steps forward in the Full Stack Developer Curriculum 💼

Day 74/? of coding
Day 74/100 of #100DaysOfCode
Project Update: Blog API (part 2)

++ Progress: I'm getting familiar with communicating with my API from my React app. It's like magic.

++ Learned
--> Meterial-ui : I used pre-built components from metiral-ui website for the first time, it is very useful.
--> API : I used fetch function to make requests to my backend server.

Day 72-3/? of coding
Day 72-3/100 of #100DaysOfCode
Project Update: Blog API (part 1)

++I'm learning JWT, and for my required project, I need to build a blog with separate back-end and front-end components, including protected routes.

++ Learned
--> JsonWebToken sign and verify.