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 6955 commits █████░░░░░░░░░░░░░░░░░░░░ 21.80 %
🌆 Daytime 9931 commits ████████░░░░░░░░░░░░░░░░░ 31.13 %
🌃 Evening 9814 commits ████████░░░░░░░░░░░░░░░░░ 30.76 %
🌙 Night 5206 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.32 %
📅 I'm Most Productive on Friday
Monday 4588 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.38 %
Tuesday 4043 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.67 %
Wednesday 4932 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.46 %
Thursday 4275 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.40 %
Friday 5338 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.73 %
Saturday 4906 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.38 %
Sunday 3824 commits ███░░░░░░░░░░░░░░░░░░░░░░ 11.99 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 36 hrs 47 mins ███████████████░░░░░░░░░░ 58.23 %
PHP 11 hrs 30 mins █████░░░░░░░░░░░░░░░░░░░░ 18.23 %
HTML 8 hrs 20 mins ███░░░░░░░░░░░░░░░░░░░░░░ 13.20 %
Other 1 hr 15 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.99 %
Prisma 1 hr 5 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.73 %
🔥 Editors:
VS Code 63 hrs 10 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 63 hrs 10 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 %
// Quine: A program that prints its own source code (in Python)
# This is a fun and quirky demonstration of self-replicating code!
s = 's = {!r}
print(s.format(s))'
print(s.format(s))
Python Challenge: Research and implement a function that takes a string representing a simple mathematical expression (like '2+3*4') and evaluates it WITHOUT using the built-in eval() function. Think carefully about operator precedence and possible edge cases.
Submit a PR to Challenge.