Sifen.Dev


Гео и язык канала: не указан, не указан
Категория: не указана


Junior web dev on a full-stack journey, sharing my progress daily ...and yep, I’m a guy!
Portfolio - https://sifentest1.netlify.app/

Связанные каналы

Гео и язык канала
не указан, не указан
Категория
не указана
Статистика
Фильтр публикаций


Coding is like a puzzle 🧩 the more pieces you fit together, the clearer the picture gets. It’s challenging, but there’s always that satisfaction when things click into place! 🔥


🎉 Woohoo! We just hit 300 subscribers! 🎉

A huge THANK YOU to each of you for being part of this journey. Your support, comments, and ideas keep me motivated every day! Can’t wait to keep learning, building, and sharing more cool stuff with you all. 🚀

#CodeFam




Today, I’m exploring how JavaScript works behind the scenes, and wow there’s so much complexity! 🤯 Memory management, call stacks, event loops…it’s wild how much is going on. And the craziest part? One guy built the core of it all in just 10 days! 😅
#DevJourney


Ever wonder what life would be like if we had “undo” and “redo” buttons IRL? Imagine the power! Made an awkward comment? Undo. Forgot to save a file? Redo. Missed an opportunity? Redo. 😂


🧑‍💻 JavaScript Challenge of the Day! 🧑‍💻

Today’s focus: Array Methods in JavaScript 🚀 Arrays are powerful in JS, and learning how to use methods like .map(), .filter(), and .reduce() can make your code so much cleaner and efficient! Here's a quick rundown:

const numbers = [1, 2, 3, 4, 5];

// .map() - creates a new array with each element doubled
const doubled = numbers.map(num => num * 2); // [2, 4, 6, 8, 10]

// .filter() - creates a new array with only even numbers
const evens = numbers.filter(num => num % 2 === 0); // [2, 4]

// .reduce() - sums all the elements
const sum = numbers.reduce((acc, num) => acc + num, 0); // 15

These methods are lifesavers when working with data! Give them a try, and let me know how you use them in your projects! 💡 #DevJourney


What’s everyone’s favorite part of coding? 💻 Is it problem-solving, that “Aha!” moment when things finally work, or just seeing the final result come to life?

Drop your answer below and let’s see what keeps us all motivated! 🚀 #CodingVibes


New tool Discovered: diagrams.net!

Discovered diagrams and it’s a game changer! 🛠 This free tool lets you easily create flowcharts and diagrams that help make coding projects clearer. Whether it’s planning out how functions work together, visualizing what connects where, or organizing the steps in your code, it’s all way easier to keep track of.

Perfect for simplifying those tricky JavaScript projects! 🌐 #NewToolDiscovery


So...I just realized what hashtags are actually for 😂 I didn’t know until now that they help organize posts! Apparently, they make it easier to find specific topics, and now I feel like I’ve been missing out.

Starting today, I’ll be tagging posts with relevant hashtags (and maybe going back to add them to old posts too!) so you can sort through my feed more easily.

Here are the tags I’ll be using:
- #NewToolDiscovery 🛠 - When I find cool tools to share.
- #Projects 🚀 - To track what I’m building.
- #TipsAndTricks 💡 - Quick coding tips I’ve learned.
- #DevJourney 📈 - Updates on my web dev journey.

Hope this helps, and thanks. 😅


🥳 Good Morning, Code Fam! 🥳

Today officially marks 1 month since we started this journey together! 🚀 Huge thanks to everyone for your support, engagement, and encouragement along the way. Excited to see where we’ll go next! Let’s keep learning, building, and pushing forward 💪🔥

#Milestone


🚀 Site Update! 🚀

I've finished building most of my site! , and it's fully responsive! 📱💻 The project section is just a demo for now, but my real projects will be up soon. If you notice anything missing or have suggestions, drop them in the comments! 👨‍💻 Check it out here: sifendev


Hey guys! 👋

I'm trying to build a small CV, but haven’t found a good free site to create one yet. Anyone know a free platform for making a CV? Drop your suggestions in the comments! 🚀


Day 8: DOM Adventures and Portfolio Rebuild! 🛠✨

Today, I’m diving into DOM manipulation with a hands-on project to build out some interactive components, including a light and dark mode toggle! 💡🌙 It’s all about getting a stronger grip on these concepts 💪 Plus, my portfolio is getting a fresh look with these new updates.

Excited to see it all come together—stay tuned for the final reveal! 😄


Hey Code Fam! 🧑‍💻 JavaScript has me in a real battle right now 😅 Every day brings a new challenge, but hey surviving is winning, right? 💪 Taking it step-by-step and pushing through. Got any tips or similar struggles? Drop them in the comments!


💡 Tip of the Day: If you’re navigating the endless world of web development, check out roadmap It's a fantastic site for exploring step-by-step roadmaps on front-end, back-end, DevOps, and more. Whether you’re a beginner or looking to go pro, this guide can help you map out your learning journey! 💥
#NewToolDiscovery


Today, I’ve been diving into some core DOM manipulation concepts by working on new components and rebuilding parts of my portfolio website! 💻 Every bit of practice is making my skills sharper and my projects cleaner. Can’t wait to see the new look come together! 🚀🔥


🎉 Just Finished: Number Guessing Game! 🎉

I’ve just completed a number guessing game, and it’s live! Here’s how it works:

Guess a random number within a set range, and the game will let you know if you’re too high, too low, or spot on. Keep going until you get it right, and try to beat your best score!

Give it a try and let me know your highest streak!

✅Link-GuessMyNumber



🔥 #Projects

260 0 0 11 11

🚀 Day 8: DOM Manipulation Magic! 🚀

Today, I’m diving deep into DOM manipulation and bringing a cool game to life! 🎮 Working on making it interactive and responsive, and I’m aiming to have it finished and live by the end of the day. Stay tuned it’s going to be fun! 👾 #WebDevJourney #JavaScript #ComingSoon


🎨 CSS Magic Unlocked! 🎨

Today, I dove into CSS animations, and it’s amazing how much life they bring to a webpage! Check out this little bounce effect I experimented with for a button:

.button {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border-radius: 5px;
font-size: 1.2em;
cursor: pointer;
animation: bounce 1s ease infinite;
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
It’s a simple effect, but it adds a nice touch! If you have favorite CSS tricks, share them below..I’d love to learn more! 🔥 #CSSMagic #WebDevJourney


Today was a very busy day, and honestly, I'm exhausted. I didn't manage to code today. But I'll keep it light with some CSS practice tonight.

Back to the grind tomorrow!☄️

Показано 20 последних публикаций.