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 6862 commits █████░░░░░░░░░░░░░░░░░░░░ 21.78 %
🌆 Daytime 9854 commits ████████░░░░░░░░░░░░░░░░░ 31.28 %
🌃 Evening 9639 commits ████████░░░░░░░░░░░░░░░░░ 30.60 %
🌙 Night 5144 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.33 %
📅 I'm Most Productive on Friday
Monday 4518 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.34 %
Tuesday 4002 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.71 %
Wednesday 4881 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.50 %
Thursday 4167 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.23 %
Friday 5247 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.66 %
Saturday 4866 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.45 %
Sunday 3818 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.12 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 5 hrs 47 mins ███████░░░░░░░░░░░░░░░░░░ 27.43 %
PHP 4 hrs 49 mins ██████░░░░░░░░░░░░░░░░░░░ 22.82 %
HTML 2 hrs 40 mins ███░░░░░░░░░░░░░░░░░░░░░░ 12.68 %
Blade Template 2 hrs 2 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 09.66 %
JavaScript 1 hr 18 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 06.17 %
🔥 Editors:
VS Code 21 hrs 8 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 21 hrs 8 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 49 repos ████████░░░░░░░░░░░░░░░░░ 31.01 %
Java 31 repos █████░░░░░░░░░░░░░░░░░░░░ 19.62 %
PHP 20 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.66 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.53 %
Blade 2 repos ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.27 %
// Reverses your console log message... by reversing its arguments!
console.log.apply(console, [...'Hello, world!'].reverse().join(''))
Write a function that takes a string and returns true if the string is a palindrome (reads the same forwards and backwards), ignoring case and spaces. Do not use built-in reverse methods.
// Swaps two variables without a temp variable using array destructuring
[a, b] = [b, a];
Write a function that takes a string and returns true if the string is a palindrome (the same forwards and backwards), ignoring case and non-alphanumeric characters.
// Swap two variables without a temporary variable, using array destructuring!
[a, b] = [b, a];
Write a function that, given a string, returns true if it is a palindrome (reads the same forwards and backwards), ignoring case and non-alphanumeric characters.