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 6994 commits █████░░░░░░░░░░░░░░░░░░░░ 21.91 %
🌆 Daytime 9892 commits ████████░░░░░░░░░░░░░░░░░ 30.99 %
🌃 Evening 9783 commits ████████░░░░░░░░░░░░░░░░░ 30.65 %
🌙 Night 5247 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.44 %
📅 I’m Most Productive on Friday
Monday 4587 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.37 %
Tuesday 4090 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.81 %
Wednesday 4932 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.45 %
Thursday 4269 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.38 %
Friday 5328 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.69 %
Saturday 4930 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.45 %
Sunday 3780 commits ███░░░░░░░░░░░░░░░░░░░░░░ 11.84 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 35 hrs 39 mins █████████████████████░░░░ 84.79 %
JavaScript 1 hr 18 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 03.11 %
Other 1 hr 12 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.86 %
YAML 38 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.53 %
HTML 35 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.39 %
🔥 Editors:
VS Code 42 hrs 3 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 42 hrs 3 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 51 repos ████████░░░░░░░░░░░░░░░░░ 30.72 %
Java 31 repos █████░░░░░░░░░░░░░░░░░░░░ 18.67 %
PHP 20 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.05 %
TypeScript 15 repos ██░░░░░░░░░░░░░░░░░░░░░░░ 09.04 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.41 %
// 🎲 Quirky Trick: Swapping two variables in Python with zero extra variables!
# The values of a and b get swapped in a single line, no temporary variable needed.
a = 3
b = 7
a, b = b, a
print(f"Now a is {a}, b is {b}") # Output: Now a is 7, b is 3
Python Challenge: Given a list of mixed-case strings, write a function that returns the most frequent character (case-insensitive) that is not a vowel. For extra challenge, do not use collections.Counter.
Submit a PR to Challenge.