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 3832 commits ██████░░░░░░░░░░░░░░░░░░░ 23.52 %
🌆 Daytime 4711 commits ███████░░░░░░░░░░░░░░░░░░ 28.92 %
🌃 Evening 5074 commits ████████░░░░░░░░░░░░░░░░░ 31.14 %
🌙 Night 2675 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.42 %
📅 I'm Most Productive on Wednesday
Monday 2162 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.27 %
Tuesday 2169 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.31 %
Wednesday 2663 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.35 %
Thursday 2323 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.26 %
Friday 2552 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.66 %
Saturday 2397 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.71 %
Sunday 2026 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.44 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 8 hrs 14 mins ███████░░░░░░░░░░░░░░░░░░ 28.34 %
PHP 6 hrs 34 mins ██████░░░░░░░░░░░░░░░░░░░ 22.63 %
JavaScript 4 hrs 55 mins ████░░░░░░░░░░░░░░░░░░░░░ 16.93 %
Blade Template 2 hrs 16 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 07.80 %
JSON 1 hr 35 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.46 %
🔥 Editors:
Zed 27 hrs 1 min ███████████████████████░░ 93.01 %
Android Studio 2 hrs 1 min ██░░░░░░░░░░░░░░░░░░░░░░░ 06.99 %
💻 Operating System:
Linux 29 hrs 3 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 32 repos ██████░░░░░░░░░░░░░░░░░░░ 22.22 %
TypeScript 18 repos ███░░░░░░░░░░░░░░░░░░░░░░ 12.50 %
HTML 17 repos ███░░░░░░░░░░░░░░░░░░░░░░ 11.81 %
Rust 3 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.08 %
Kotlin 3 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.08 %
// Quirky JS: Make (a == 1 && a == 2 && a == 3) evaluate to true by customizing how an object converts to a primitive.
const a = {
n: 1,
[Symbol.toPrimitive]() { return this.n++; }
};
console.log(a == 1 && a == 2 && a == 3); // truePython: Write a function that detects and decrypts a Caesar-ciphered uppercase English string using frequency analysis (no external libraries). Print the inferred shift and plaintext, and briefly justify your approach.
- Submit a PR to answer.







