Future Full-Stack – Telegram
Future Full-Stack
107 subscribers
27 photos
1 file
13 links
Future Full-Stack
learning Full-Stack Dev | Sharing my journey
Daily code tips • Learning together • Growing together
Download Telegram
Channel created
Channel photo updated
🎉 Welcome to Future Fullstack! 🚀

Hi everyone, I’m Shuayb! I’m super excited to share my web development journey with you all 🌐💻

Here’s what you can expect from this channel:

Daily Coding Tips 📝 — practical tips to level up your skills

Project Updates 🔄 — see what I’m currently building

Learning Moments 💡 — insights and lessons I pick up each day

Fun Challenges 🎯 — interactive exercises we can tackle together


Feel free to ask questions, share your thoughts, or just say hi! Let’s grow together in tech. I can’t wait to see where this journey takes us 💪

And if you know anyone interested in coding, invite them to join our community 🤝
👍42🔥2
2
Forwarded from Learn JavaScript
⌨️ Learn JavaScript In 3 Minutes
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
2
Today I learned about asynchronous JavaScript 🤯

Before this, I didn’t really understand how JS handles things like API calls or waiting for data.

Here’s what finally clicked for me 👇

1️⃣ Callbacks
Old-school way. You pass a function into another function and it runs later.
Works… but can get messy (callback hell is real).

2️⃣ Promises
A promise represents a value that will be available in the future.
States:
- pending
- fulfilled
- rejected

This already feels way cleaner than callbacks.

3️⃣ async / await
This was the biggest “aha” moment.
It lets you write async code that looks like normal synchronous code.
So much easier to read and debug.

4️⃣ fetch API
Used to make HTTP requests.
Returns a promise → which is why async/await fits perfectly with it.

5️⃣ XMLHttpRequest
The older way to make requests.
More code, more complexity, but good to know what came before fetch.

Async code felt scary at first, but now it actually makes sense.
Still practicing, but today was a big win 💪

Learning in public feels uncomfortable, but I’m sticking with it 🚀
👍3🔥21
Next step in my JavaScript journey 🚀

I’m going to build a Weather App using JavaScript 🌦️

The goal is to practice:
- Working with APIs
- Using fetch + async/await in a real project
- Handling user input
- Updating the DOM with real data
- Dealing with loading states & errors

Not aiming for perfection — just trying to turn what I learned about async JS into something real.

Let’s see how it goes 👨‍💻
🔥6
🚀 Weather App – Done!

Just finished building my Weather App using JavaScript 🌦️
This project helped me practice:

Async JavaScript (fetch, promises, async/await)

Working with real APIs (OpenWeather)

DOM manipulation & user interactions

🔗 Live demo:
https://weatherapp3443.netlify.app/

💻 Source code:
https://github.com/shuayb344/weather-app

More projects coming soon 👨‍💻🔥

@futurefullstack
🔥8👍2