Forwarded from Java Programming
What is the output of the below Java code?
Anonymous Quiz
58%
Hello World
26%
World
8%
Run time error
8%
Compilation error
Forwarded 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"); }
}
}Forwarded from SeeFun.Dev (Sifen.Dev)
Stages of my coding journey so far: HTML 😎 → CSS 💪 → JavaScript 😭
Relatable, anyone? 😂
Relatable, anyone? 😂
😁3
Forwarded from Web Development - HTML, CSS & JavaScript
JavaScript fetch api
#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
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
👍1🔥1
Forwarded from Yohannes Haile (Yohannes Haile)
enforced candle night dinner
😁1
Forwarded from Tech Nerd (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
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
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
👍2
⭐️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)
👍1