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 6940 commits █████░░░░░░░░░░░░░░░░░░░░ 21.82 %
🌆 Daytime 9872 commits ████████░░░░░░░░░░░░░░░░░ 31.04 %
🌃 Evening 9773 commits ████████░░░░░░░░░░░░░░░░░ 30.73 %
🌙 Night 5216 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.40 %
📅 I'm Most Productive on Friday
Monday 4585 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.42 %
Tuesday 4050 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.74 %
Wednesday 4910 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.44 %
Thursday 4255 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.38 %
Friday 5317 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.72 %
Saturday 4911 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.44 %
Sunday 3773 commits ███░░░░░░░░░░░░░░░░░░░░░░ 11.86 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 30 hrs 9 mins ██████████████░░░░░░░░░░░ 55.35 %
PHP 9 hrs 17 mins ████░░░░░░░░░░░░░░░░░░░░░ 17.04 %
HTML 7 hrs 36 mins ███░░░░░░░░░░░░░░░░░░░░░░ 13.96 %
Other 1 hr 32 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.83 %
SQL 1 hr 10 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.16 %
🔥 Editors:
VS Code 54 hrs 29 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 54 hrs 29 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 %
// Swap two variable values without using a temporary variable, via destructuring (works in JavaScript/TypeScript)
let a = 5, b = 9;
// Neat swap trick:
[a, b] = [b, a];
console.log(a, b); // Output: 9 5
Python Challenge: Write a function that determines whether a given string is a valid palindrome by ignoring spaces, punctuation, and capitalization. You are not allowed to use any string/library methods that remove characters (like .replace() or regex substitution).
Submit a PR to Challenge.