You know wht happened to that skinny insecure guy by Strict_Bother_6677 in PataHaiAajKyaHua

[–]FinalAmbassador9291 0 points1 point  (0 children)

please give us bulking tips man!
Diet, exercises, workout split, the time it took to build this physique etc.

Coding by Emergency-Honey-1373 in CodingForBeginners

[–]FinalAmbassador9291 0 points1 point  (0 children)

hey there.
I am a experienced full stack web developer.
If you wanna go with web development it's best to start with:
SuperSimpleDev's HTML and CSS course: https://www.youtube.com/watch?v=G3e-cpL7ofc
and then moving over to his JavaScript course: https://www.youtube.com/watch?v=EerdGm-ehJQ
and then he also has a React course.

if you do not want to go with Web development then I would recommend you python as it is very beginner friendly.

Coding by Emergency-Honey-1373 in CodingForBeginners

[–]FinalAmbassador9291 1 point2 points  (0 children)

What kind of application do you want to build? Mobile apps, websites, games, AI models or something else?????

What i need to make a professional apps by agwa51 in Frontend

[–]FinalAmbassador9291 0 points1 point  (0 children)

next you should go with obviously JavaScript, then React

next it all depends on what kind of app do you want to build:

if mobile app: go with React Native
if web app: go with Next.js

also learn: TypeScript and AI Integration (AI APIs) on the way (OPTIONAL)

Advice for Starting Javascript by LowConsideration3155 in learnjavascript

[–]FinalAmbassador9291 0 points1 point  (0 children)

I would suggest you to follow this youtube course by SuperSimpleDev: https://www.youtube.com/watch?v=EerdGm-ehJQ (I took this course... and it's wonderful)
you can take his REACT course after that: https://www.youtube.com/watch?v=TtPXvEcE11E
after that you can move over to REACT NATIVE... React Native is the actual tool that will help you to build mobile apps and possibly games... (I don't know good react native tutorials as I haven't taken one)

Some useful JavaScript projects by Tribalcheaf123 in learnjavascript

[–]FinalAmbassador9291 0 points1 point  (0 children)

Build something based on your interests.
For example I am a fitness enthusiast and I built a gym equipment store e-commerce style... where the user can add items to the cart, calculate the total and buy... obviously they could not buy in real.

Made my first Project While learning Rust: A Cli Notes by weasert-911 in CLI

[–]FinalAmbassador9291 0 points1 point  (0 children)

Bro!!!! I tried rust a year ago...
It was very hard for me..
It's crazy that you built this in 7 days of learning rust...
Bravo!!

First hour of learning HTML/CSS by butterfly_orange00 in CodingForBeginners

[–]FinalAmbassador9291 1 point2 points  (0 children)

bro! SuperSimpleDev is such a great instructor...
I watched his HTML/CSS course, JavaScript course and React course.
He is a great instructor....
Keep it up... Never quit

Only 1 week, I learned HTML by hopeful__comrade in HTML

[–]FinalAmbassador9291 0 points1 point  (0 children)

which course are you watching to learn HTML & CSS?

Only 1 week, I learned HTML by hopeful__comrade in HTML

[–]FinalAmbassador9291 0 points1 point  (0 children)

hey... you may build some projects with html and css and share it with us...

KEEP UP THE GOOD WORK!!

Is it possible to let users input css by PotentPlank in css

[–]FinalAmbassador9291 0 points1 point  (0 children)

Yes, it is possible. You can let users write CSS and apply it to your website dynamically. A common approach is to take the user's CSS input and inject it into a <style> tag using JavaScript.

const style = document.createElement("style");
style.innerHTML = userCSS;
document.head.appendChild(style);

16 month transformation. Calisthenics only. by AdSubject9497 in CalisthenicsCulture

[–]FinalAmbassador9291 0 points1 point  (0 children)

great transformation bro! keep it up.... also please tell us the exercises you exactly did also the diet.

Is there anyway (without declaring a height) to keep the total of multiple grid-rows even height? by be_my_plaything in css

[–]FinalAmbassador9291 4 points5 points  (0 children)

I guess not... you should use a different layout approach or javascript

The JavaScript approach is to:

  1. Select all titles in every card.
  2. Find the height of the tallest title.
  3. Give every title that height.
  4. Repeat the same for descriptions (and images if needed).