ECE student | 1% better every day

Joined July 2025
49 Photos and videos
Designed a homepage for Architect AI, an AI writing An assistant that helps you write more clearly, faster, and with more precision. Built the full desktop mobile layout as part of My Stage 0 design task.
1
4
21
If na my school dem go don find your matric number😂
Person tell lecturer say he no sabi teach, nah wetin lecturer talk be this 😳
2
2
87
Yeah, you begin to lose momentum
Skipping coding for a few days feels like starting from scratch again🤧ngl..
1
2
45
Carles retweeted
Skipping coding for a few days feels like starting from scratch again🤧ngl..
84
75
679
60,940
Ironically, the ‘perfect’ February wasn’t perfect at all
3
18
GSoC prep is honestly more stressful than I expected. So many orgs. Idea lists. Codebases. Where do you even start? If you’ve gone through this before and wouldn’t mind putting me through the process step by step, I’d really appreciate it 🙏 Trying not to give up.
2
33
Finalist today. Winners next time. The work continues.
Didn’t take the win, but we made the Top 10. Grateful for the experience... we learned a ton, pushed our limits, and built something we’re proud of. Next time, we go harder. 💪
7
41
Carles retweeted
Didn’t take the win, but we made the Top 10. Grateful for the experience... we learned a ton, pushed our limits, and built something we’re proud of. Next time, we go harder. 💪
Another step forward. Selected. Now we build. Let's see how it goes 😁
2
2
7
159
Solved another LeetCode problem today. This one is about creating a cancellable delayed execution: delay fn by t ms with args, but return a cancelFn that can stop it before it runs if called early.
1
28
Solved another LeetCode problem today. This one is about creating a cancellable interval: fn runs immediately, then repeats every t ms until cancelled after cancelTimeMs
3
28
Built a weather dashboard with just HTML, CSS and Vanilla JS ⛅. City search, current weather, no frameworks Live: weather-dashboard-three-swar… 🚀🚀🚀
1
5
58
Solved another LeetCode problem today. This problem is about creating a delay using promises. It shows how to pause execution for a specific amount of time with async behavior.
4
21
Carles retweeted
Portfolio update: finally completed the hero section. Lots of adding, removing, and refining until I got to something I’m satisfied with. On to the next section.
Spent 2 hours crafting this navbar animation 😤 Fully responsive mobile hamburger menu Built with GSAP (worth every minute) Still refining my portfolio, but progress > perfection. What do you think? 👀
2
1
2
178
Solved my first LeetCode Medium problem today. It’s a simple introduction to memoization and caching function results
2
14
Understanding Promise Combinators in JavaScript - Promise.race() Promise.race() runs multiple promises and returns the one that finishes first. It doesn’t care if it succeeds or fails. First result wins.
1
3
17
- Promise.allSettled() Promise.allSettled() waits for all promises to finish, no matter the outcome. You get both successes and failures.
1
2
10
- Promise.any() Promise.any() returns the first successful promise. It ignores failures unless everything fails.
2
8
Solved another LeetCode problem today. This problem is about controlling function execution. The goal is to wrap an existing function, so it runs only once, no matter how many times it’s called.
3
11
Sometimes you don’t want tasks to wait for each other. You want them to run at the same time. That’s where Promise.all() helps.
2
16
When a function is marked async, it always returns a Promise. Even if you return a normal value, JavaScript wraps it for you.
3
12