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 6969 commits █████░░░░░░░░░░░░░░░░░░░░ 21.88 %
🌆 Daytime 9874 commits ████████░░░░░░░░░░░░░░░░░ 31.01 %
🌃 Evening 9778 commits ████████░░░░░░░░░░░░░░░░░ 30.71 %
🌙 Night 5223 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.40 %
📅 I'm Most Productive on Friday
Monday 4585 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.40 %
Tuesday 4090 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.84 %
Wednesday 4913 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.43 %
Thursday 4255 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.36 %
Friday 5317 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.70 %
Saturday 4911 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.42 %
Sunday 3773 commits ███░░░░░░░░░░░░░░░░░░░░░░ 11.85 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 27 hrs 11 mins ███████████████░░░░░░░░░░ 58.64 %
HTML 6 hrs 54 mins ████░░░░░░░░░░░░░░░░░░░░░ 14.88 %
PHP 6 hrs 22 mins ███░░░░░░░░░░░░░░░░░░░░░░ 13.74 %
Other 1 hr 30 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 03.24 %
SQL 1 hr 10 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.54 %
🔥 Editors:
VS Code 46 hrs 22 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 46 hrs 22 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 51 repos ████████░░░░░░░░░░░░░░░░░ 31.10 %
Java 31 repos █████░░░░░░░░░░░░░░░░░░░░ 18.90 %
PHP 20 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.20 %
TypeScript 13 repos ██░░░░░░░░░░░░░░░░░░░░░░░ 07.93 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.44 %
// 🦄 Quirky Trick: Swap two variables WITHOUT a temporary variable, using XOR (JavaScript)
let a = 42, b = 99;
// Swapping magic starts here!
a = a ^ b;
b = a ^ b;
a = a ^ b;
// a and b have now swapped values!
console.log(a, b); // 99 42
Python Challenge: Given a paragraph of text, write a function that counts the number of unique words that are palindromes (same forwards and backwards). Ignore punctuation and letter casing. Example: 'Level, Madam, kayak.' should return 3.
Submit a PR to Challenge.