SeeFun.Dev
743 subscribers
349 photos
24 videos
7 files
189 links
He/Him

Building, coding, and sharing

Github- https://github.com/sifenfisaha

Dm- @see_fun
Download Telegram
🚀 Challenge Alert! 🚀

Hey Code Fam, I’m throwing down a challenge to YOU! 💥 I’m about to start a new project that will evolve as I level up my web development skills, and I want YOU to help decide what I should build!

The challenge? 🏆 Give me your BEST project idea that:
- Starts simple (HTML, CSS, JS) 🛠
- Can scale up to a full-stack app with frameworks, backend, databases, and even AI integration 🚀
- Adds real-world value and could potentially be monetized 💡
- Is portfolio-ready to help me land that dream job! 💼

💡 Drop your project ideas below and let’s see who can come up with the most awesome concept! I’ll pick the top idea, build it, and share my progress with you all step by step! 🔥

Will YOUR idea be the one I build? Let’s find out! ⚡️

#ChallengeAccepted #WebDevJourney #BuildWithMe
🔥21
Oops! Missed Yesterday's Update 😅
Hey everyone! I didn’t post my progress yesterday life got in the way! But I’m back on track now and ready to keep learning. Stay tuned for today’s update, I’ve got some cool stuff coming your way! 💻💡
Please open Telegram to view this post
VIEW IN TELEGRAM
5🔥2👍1
✔️ Day 2: Data Types and Variable Declaration 

Let’s dive deeper into JavaScript today! We’ve learned about variables, now let's explore data types and how to declare variables with let and const. Here’s the breakdown:

1. Data Types: Variables store different types of data:
   - String: Text like 'Hello'
   - Number: Numbers like 25
   - Boolean: True/false values like true

let myName = 'Sifen';   // String
let age = 20;           // Number
let isLearningJS = true; // Boolean

console.log(myName, age, isLearningJS);


2. let vs const:
   - let allows you to change the value later.
   - const is for values that never change.

let score = 10;
score = 15;  // This works!

const birthYear = 2004;
birthYear = 2005;  // This gives an error!


Use let when the value might change, and const for constants. Understanding how to handle data types and declarations will make coding a lot easier! 🔥

#JavaScriptBasics #LearningJourney #WebDevelopment
Please open Telegram to view this post
VIEW IN TELEGRAM
👏8👍2🔥1
✔️ Day 3: Comparison and Logical Operators in JavaScript! 💻🤔

Today’s focus is on comparison and logical operators. These are essential for making decisions in your code. Let’s dive in!

1. Comparison Operators:
- == checks if values are equal
- === checks if values and types are equal
- > greater than, < less than
- != checks if values are not equal

let age = 18;
console.log(age == '18'); // true (only checks value)
console.log(age === '18'); // false (checks both value and type)


2. Logical Operators:
- && (AND) checks if both conditions are true
- || (OR) checks if one of the conditions is true
- ! (NOT) negates a condition

let isAdult = true;
let hasID = false;
console.log(isAdult && hasID); // false (because one is false)
console.log(isAdult || hasID); // true (because one is true)


These operators will help you build logic and control the flow of your apps! 🔥 Keep pushing!

#JavaScriptLearning #Day3 #WebDevJourney #CodingLife #LogicalThinking
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4🔥1
SeeFun.Dev
What type of project would YOU like to see built?
🎉 And the Winner is... BudgetMate! 🎉

Thanks to everyone who voted! The BudgetMate Personal Finance Tracker idea took the top spot! 💸 I’m super excited to start building this project, where you’ll be able to track expenses, set savings goals, and manage your budget all in one place. 

I’ll kick off the project once I’ve got a solid grasp on JavaScript, so stay tuned for updates on my progress. Let’s bring BudgetMate to life together! 🔥

#BudgetMate  #WebDevJourney #PersonalFinance
👍7👏21
✔️ Day 4: Mastering Conditional Statements in JavaScript! 💻🔍

Today’s all about conditional statements! These allow our code to make decisions based on conditions, making it interactive and dynamic. Let’s break down the basics:

1. if Statements: Run code only if a condition is true.
2. else if and else: Add more conditions and a fallback if none match.

let age = 18;

if (age >= 18) {
console.log("You're an adult! 🎉");
} else {
console.log("You're still a minor! 🧒");
}


3. Switch Statements: Useful when checking multiple conditions for one variable.

let day = "Monday";

switch(day) {
case "Monday":
console.log("Start of the week grind! 💪");
break;
case "Friday":
console.log("Weekend’s almost here! 🎉");
break;
default:
console.log("Another day, another code! 🤓");
}


These statements are key to adding decision-making power to your code! 💥 Keep Pushing!

#JavaScriptBasics #Day4 #ConditionalStatements #WebDevelopment
Please open Telegram to view this post
VIEW IN TELEGRAM
2👍2
🌞 Good Morning, Code Fam! 🌞
👍1
✔️ 🚀 Day 5: Looping into JavaScript! 🚀

Today’s all about loops – the secret sauce for repeating tasks without writing the same code over and over. 🔄

What I’m covering:
- For and while loops 💫
- Writing cleaner, smarter code 💡

JavaScript’s feeling more intuitive every day! Let’s keep the momentum going! 💪

#Day5 #JavaScript #CodeLife #CodingJourney
Please open Telegram to view this post
VIEW IN TELEGRAM
4
Should I start posting updates at a fixed time every day?
Anonymous Poll
80%
Yes
20%
No
🔥3👍1
✔️ Day 5: Mastering the Loop! 🔄
Today, I dove into loops – the magic that lets us repeat tasks in code without writing them over and over! Loops make coding way more efficient, so let’s break it down:

🔹 For Loop: Perfect for when you know how many times you need to repeat something.
🔹 While Loop: Great for when you want to keep going until a certain condition is met.

Here’s a small example I tried out:

// Using a for loop to count from 1 to 5
for (let i = 1; i <= 5; i++) {
console.log("Loop iteration: " + i);
}

// Using a while loop for the same thing
let count = 1;
while (count <= 5) {
console.log("While loop count: " + count);
count++;
}


Both loops achieve the same thing, but each has its own style and flexibility. Can't wait to put these to work in real projects! 💻
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥4
🎨 Starting the Design for BudgetMate!

Today, I kicked off the design phase for my BudgetMate website, and I’ve already found an awesome tool to help me sketch it out: excalidraw! It’s super intuitive for layout planning, and big thanks to my friend’s channel, @codistiano, for recommending it. Excited to see how this design shapes up! 💡

#NewToolDiscovery
81🔥1
Forwarded from Web Development
🎧 7 of the best YouTube channels to learn Programming
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4🔥1👏1
✔️ Day 6: Diving into Functions! 🔍

Today, I explored functions in JavaScript—honestly, they’re game-changers. Functions allow you to reuse code without rewriting it every time, which keeps things efficient and clean.

Here's a quick example of how they work:

function greet(name) {
return `Hello, ${name}!`;
}

console.log(greet("CodeFam")); // Output: Hello, CodeFam!


In this code, the greet function takes a name as a parameter and returns a greeting. So now, I can reuse greet anytime I want!

Functions make code reusable and help organize logic. It’s like writing code that works on autopilot. 💥

Have you worked with functions yet? Drop a comment!👇

#Day6 #JavaScriptJourney #Functions #ReusableCode
Please open Telegram to view this post
VIEW IN TELEGRAM
21👍1🔥1