I’m constantly inspired by the fast-paced world of technology and love diving into new tools and frameworks that push the boundaries of what’s possible. Whether I’m learning something new or building creative solutions, I’m passionate about bringing fresh ideas to life and sharing what I discover with others. Let’s build something amazing together! 🚀
I’m an Early 🐤
🌞 Morning 7030 commits █████░░░░░░░░░░░░░░░░░░░░ 21.95 %
🌆 Daytime 9918 commits ████████░░░░░░░░░░░░░░░░░ 30.96 %
🌃 Evening 9818 commits ████████░░░░░░░░░░░░░░░░░ 30.65 %
🌙 Night 5266 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.44 %
📅 I’m Most Productive on Friday
Monday 4599 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.36 %
Tuesday 4140 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.92 %
Wednesday 4948 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.45 %
Thursday 4261 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.30 %
Friday 5334 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.65 %
Saturday 4947 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.44 %
Sunday 3803 commits ███░░░░░░░░░░░░░░░░░░░░░░ 11.87 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 6 hrs 12 mins █████████░░░░░░░░░░░░░░░░ 37.86 %
PHP 3 hrs 32 mins █████░░░░░░░░░░░░░░░░░░░░ 21.63 %
JSON 1 hr 4 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 06.56 %
JavaScript 59 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 06.08 %
Bash 58 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.99 %
🔥 Editors:
Zed 8 hrs 55 mins ██████████████░░░░░░░░░░░ 54.45 %
VS Code 7 hrs 27 mins ███████████░░░░░░░░░░░░░░ 45.55 %
💻 Operating System:
Linux 16 hrs 23 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 50 repos ███████░░░░░░░░░░░░░░░░░░ 29.24 %
Java 31 repos █████░░░░░░░░░░░░░░░░░░░░ 18.13 %
PHP 23 repos ███░░░░░░░░░░░░░░░░░░░░░░ 13.45 %
TypeScript 22 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.87 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.34 %
// Quirky Trick: Swap two variables in one line using bitwise XOR in Python!
a = 42
b = 17
# This clever swap works without a temporary variable.
a ^= b; b ^= a; a ^= b
print(a, b) # Output: 17 42
In Python, write a function that receives a list of words and returns the most ‘vowel-rich’ word (highest vowel count). If multiple words tie, return the first one. Consider only English vowels (a, e, i, o, u), and ignore case. Research any built-in functions that may help, but do not use collections.Counter.
Submit a PR to Challenge.