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 6886 commits █████░░░░░░░░░░░░░░░░░░░░ 21.83 %
🌆 Daytime 9821 commits ████████░░░░░░░░░░░░░░░░░ 31.14 %
🌃 Evening 9682 commits ████████░░░░░░░░░░░░░░░░░ 30.70 %
🌙 Night 5148 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.32 %
📅 I'm Most Productive on Friday
Monday 4533 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.37 %
Tuesday 4020 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.75 %
Wednesday 4898 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.53 %
Thursday 4205 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.33 %
Friday 5265 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.69 %
Saturday 4879 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.47 %
Sunday 3737 commits ███░░░░░░░░░░░░░░░░░░░░░░ 11.85 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 8 hrs 15 mins ████████░░░░░░░░░░░░░░░░░ 33.47 %
PHP 5 hrs 11 mins █████░░░░░░░░░░░░░░░░░░░░ 21.04 %
HTML 4 hrs 42 mins █████░░░░░░░░░░░░░░░░░░░░ 19.06 %
JavaScript 1 hr 21 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.51 %
JSON 1 hr 14 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.04 %
🔥 Editors:
VS Code 24 hrs 41 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 24 hrs 41 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 50 repos ████████░░░░░░░░░░░░░░░░░ 31.65 %
Java 31 repos █████░░░░░░░░░░░░░░░░░░░░ 19.62 %
PHP 20 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.66 %
TypeScript 9 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 05.70 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.53 %
// Ever seen a recursive arrow function with itself as default parameter?
const mindBlown = (f = mindBlown) => f === mindBlown ? '🤯' : f();
console.log(mindBlown()); // Output: 🤯
Write a function that takes a nested array of numbers of arbitrary depth and returns the sum of all numbers (without using flat or flatMap).