ar
Feedback
Self Taught Developers

Self Taught Developers

الذهاب إلى القناة على Telegram

Self Taught Dev| Personal Blog | 3rd Year Cs https://github.com/umera27

إظهار المزيد
365
المشتركون
لا توجد بيانات24 ساعات
-17 أيام
+6130 أيام
أرشيف المشاركات
⭐️Px Vs Em Vs Rem
Do you choose the right unit for your CSS? Understanding px, em, and rem is essential for building scalable and responsive designs. 1. px (Pixels) - Fixed size. - Doesn’t adapt to user preferences. - Ideal for precise measurements like borders. 2. em (Relative to Parent) - Relative to the font size of the parent element. - Great for scaling elements within a component. 3. rem (Relative to Root) - Relative to the font size of the root (:root). - Ideal for consistent and global scaling. When to Use? - Use px for borders or fixed dimensions. - Use em for local scaling inside components. - Use rem for global consistency across the app. 💡 Bonus: Combine rem for base sizing and em for internal adjustments! Next Post: Viewport Units (vw, vh, vmin, vmax)

Website development
Hi guys 👋 Today I have exciting news to share! My team and I are building a project(:-Full stack website ), and I'll be sharing my journey of building it from scratch. I was nervous about it because I was learning everything while I do it. #TechNews #SelfTaughtDev #SelfTaughtDev #FullStackDev #WebDev #DevCommunity @SelfTaughtDev1

Reality
+1
Reality

Repost from Tech Nerd
So, we’ll have the session Today at 7:00 PM (1:00 local time, mata). Topic: Intro to React Native for Web Devs We’ll cover the basics, build a simple app, and create both an APK and an AAB file for the Play Store. It’s not a full-on 0-to-hero course—just a quick intro with some best practices. 🔥 @selfmadecoder

Repost from Yohannes Haile
enforced candle night dinner

#Day_04_Frontend_Challenge Project Title: Recipe Hey everyone, 👋 How are you doing? Today I completed a project called 'Reci
+2
#Day_04_Frontend_Challenge Project Title: Recipe Hey everyone, 👋 How are you doing? Today I completed a project called 'Recipe for Coffee with Coconut Milk'. I built it using HTML and CSS. Live Demo #WebDevChallenge #FrontEndDev #DevCommunity #TechTalk #Day04challenge @SelfTaughtDev1

JavaScript fetch api
+6
JavaScript fetch api

Repost from Mr. SeeFun.Dev
Stages of my coding journey so far: HTML 😎 → CSS 💪 → JavaScript 😭 Relatable, anyone? 😂
Stages of my coding journey so far: HTML 😎 → CSS 💪 → JavaScript 😭 Relatable, anyone? 😂

Repost from Java Programming
public class Solution {

public static void main(String args[]) {

int x = 6; int y = 5;

if(++y == x--) { System.out.println("Hello World"); }

else { System.out.println("World"); }
 } 
}

Repost from Java Programming
What is the output of the below Java code?
Anonymous voting

Repost from Evangadi Tech
What is new? Next batch applicants! https://youtu.be/IrUHoXLx0G4?si=X76jzc47hLuzCDKa

10 awesome frontend development YouTube channels: 1. Traversy Media 🚀 2. The Net Ninja 🥷 3. Dev Ed 🎨 4. Academind 📚 5. Fireship 🔥 6. Codevolution 💻 7. DesignCourse 🎨 8. Florin Pop 🧑‍💻 9. Web Dev Simplified 🌐 10. Kevin Powell 🎥 @SelfTaughtDev1

Hey fellows, how are you doing? I know I've missed a lot of days without showing you my frontend dev progress. The reason is that I had some issues (class stuff) and I stopped working on it for a few days. #DevCommunity #FrontEndDev #WebDevChallenge @SelfTaughtDev1

photo content
+5

The difference between loose equality (==) and strict equality (===)? 🤓loose equality(:- used to check value equality. (:-=checks for value equality with coercion allowed. 🤓Strictly equality (:- used to check value and type equality. (:-checks for value equality with out allowing coercion. For example Var a="12"; Var b=12; a==b //true they are equal in value. a===b //false they are equal in value not in type. //a is string //b is number.

JS Quiz Guess 🤔output of this snippets code💻?🤓 Console.log(1+ +"3"+"2"+2); Console.log("1"+ +"3"+"2"+ +2); 🙋Drop ur 🤓answer with explanation in the comment section📨📨📨👇

Repost from Dagmawi Babi
The episode we've been waiting for is out. 🥳 Andreas Kling — Early Life, Beliefs, Addiction, Open Source, SerenityOS, Ladybi
The episode we've been waiting for is out. 🥳 Andreas Kling — Early Life, Beliefs, Addiction, Open Source, SerenityOS, Ladybird Browser • youtube.com/watch?v=Gfly3j5qWpM Enjoy! ❤️ #MyYouTube #Podcasts @Dagmawi_Babi

When u use + operator with a string and a number JavaScript converts the number to a string and concatenates them...