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 6956 commits █████░░░░░░░░░░░░░░░░░░░░ 21.81 %
🌆 Daytime 9951 commits ████████░░░░░░░░░░░░░░░░░ 31.21 %
🌃 Evening 9792 commits ████████░░░░░░░░░░░░░░░░░ 30.71 %
🌙 Night 5188 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.27 %
📅 I'm Most Productive on Friday
Monday 4580 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.36 %
Tuesday 4031 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.64 %
Wednesday 4933 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.47 %
Thursday 4274 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.40 %
Friday 5300 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.62 %
Saturday 4908 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.39 %
Sunday 3861 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.11 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 37 hrs 11 mins ██████████████░░░░░░░░░░░ 57.58 %
PHP 11 hrs 32 mins ████░░░░░░░░░░░░░░░░░░░░░ 17.88 %
HTML 8 hrs 18 mins ███░░░░░░░░░░░░░░░░░░░░░░ 12.87 %
JavaScript 1 hr 43 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.67 %
Blade Template 1 hr 33 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.41 %
🔥 Editors:
VS Code 64 hrs 35 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 64 hrs 35 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 51 repos ████████░░░░░░░░░░░░░░░░░ 31.68 %
Java 31 repos █████░░░░░░░░░░░░░░░░░░░░ 19.25 %
PHP 20 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.42 %
TypeScript 10 repos ██░░░░░░░░░░░░░░░░░░░░░░░ 06.21 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.48 %
// 🪄 Ever wanted to swap two variables without a temp variable? This quirky JS trick does just that!
let a = 5, b = 10;
[a, b] = [b, a];
console.log(`a: ${a}, b: ${b}`); // a: 10, b: 5
Python challenge: Write a function that determines whether a given string is a pangram (contains every letter of the English alphabet at least once). Avoid using set() or the string module.
Submit a PR to Challenge.