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 3921 commits ██████░░░░░░░░░░░░░░░░░░░ 23.47 %
🌆 Daytime 4778 commits ███████░░░░░░░░░░░░░░░░░░ 28.60 %
🌃 Evening 5204 commits ████████░░░░░░░░░░░░░░░░░ 31.15 %
🌙 Night 2801 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.77 %
📅 I'm Most Productive on Wednesday
Monday 2221 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.30 %
Tuesday 2227 commits ███░░░░░░░░░░░░░░░░░░░░░░ 13.33 %
Wednesday 2706 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.20 %
Thursday 2410 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.43 %
Friday 2640 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.80 %
Saturday 2443 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.63 %
Sunday 2057 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.31 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 41 hrs 59 mins ██████████████████░░░░░░░ 72.12 %
PHP 5 hrs ██░░░░░░░░░░░░░░░░░░░░░░░ 08.61 %
HTML 3 hrs 13 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.54 %
CSS 1 hr 25 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.43 %
JSON 1 hr 9 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.99 %
🔥 Editors:
Zed 58 hrs 14 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 58 hrs 14 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 32 repos █████░░░░░░░░░░░░░░░░░░░░ 21.92 %
TypeScript 20 repos ███░░░░░░░░░░░░░░░░░░░░░░ 13.70 %
HTML 17 repos ███░░░░░░░░░░░░░░░░░░░░░░ 11.64 %
Python 4 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.74 %
Rust 3 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 02.05 %
// JavaScript: An object that auto-increments each time it's coerced to a primitive (number or string) using Symbol.toPrimitive.
// Fun for demos/tests; avoid in production code where implicit coercion can confuse readers.
const counter = {
i: 0,
[Symbol.toPrimitive](hint) {
return ++this.i; // increments on every coercion (number, string, or default)
}
};
console.log(+counter); // 1 (numeric coercion)
console.log(counter + 0); // 2 (addition triggers coercion)
console.log(counter * 2); // 6 (3 * 2)
console.log(`${counter}`); // '4' (string coercion)
console.log(counter == 5); // true (loose equality coerces the object)Python: Implement 'guess_mime(path)' that infers a file's MIME type by reading its magic bytes (no external libraries). Support at least PNG, JPEG, GIF, PDF, and ZIP; for ZIP-based formats, distinguish DOCX/XLSX/PPTX from generic ZIP by inspecting '[Content_Types].xml', and detect ODT by its 'mimetype' file. Return 'application/octet-stream' when unknown, and include brief comments citing the magic-number sources you used.
- Submit a PR to answer.
The Fastest, The Lightest and The Tightest android web browser.
Website: melvinjonesrepol.com/webvium-browser
AI Driven blog spot about technology, businesses and related topics.
*website: projectdeep.vercel.app
Monitor your coding activity, create custom leaderboards, and compete with your team or the community.
DevPulse brings WakaTime stats into a sleek, collaborative leaderboard experience.
Website: devpulse-waka.vercel.app
A browser extension that provides a floating console for developers to easily access logs while browsing the web.
Website: melvinjonesrepol.com/floating-console-extension
Get your link. Shorteeeeeen!
Website: go.melvinjonesrepol.com
If you have an idea, let's make that idea come true! From development, production to deployment. We can do that.







