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 3277 commits ██████░░░░░░░░░░░░░░░░░░░ 23.39 %
🌆 Daytime 3979 commits ███████░░░░░░░░░░░░░░░░░░ 28.40 %
🌃 Evening 4385 commits ████████░░░░░░░░░░░░░░░░░ 31.29 %
🌙 Night 2371 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.92 %
📅 I'm Most Productive on Wednesday
Monday 1780 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.70 %
Tuesday 1788 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.76 %
Wednesday 2353 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.79 %
Thursday 1981 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.14 %
Friday 2216 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.82 %
Saturday 2158 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.40 %
Sunday 1736 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.39 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 20 hrs 38 mins ███████████████░░░░░░░░░░ 61.61 %
Markdown 2 hrs 32 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 07.61 %
JSON 2 hrs 13 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 06.67 %
JavaScript 1 hr 53 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.64 %
Vue 1 hr 11 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 03.54 %
🔥 Editors:
Zed 31 hrs 43 mins ████████████████████████░ 94.74 %
Unknown Editor 1 hr 26 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 04.29 %
Claude Code 19 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 00.96 %
💻 Operating System:
Linux 33 hrs 29 mins █████████████████████████ 100.00 %
I Mostly Code in TypeScript
PHP 12 repos █████░░░░░░░░░░░░░░░░░░░░ 19.35 %
JavaScript 12 repos █████░░░░░░░░░░░░░░░░░░░░ 19.35 %
Assembly 2 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 03.23 %
C 1 repo ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.61 %
Java 1 repo ░░░░░░░░░░░░░░░░░░░░░░░░░ 01.61 %
// This JavaScript snippet uses a function that redefines itself after the first call to optimize future executions.
function fibonacci(n) {
if (n <= 1) return n;
// Redefine fibonacci to a memoized version after first call
const memo = [0, 1];
fibonacci = function(n) {
if (memo[n] !== undefined) return memo[n];
memo[n] = fibonacci(n - 1) + fibonacci(n - 2);
return memo[n];
};
return fibonacci(n);
}
console.log(fibonacci(10)); // Outputs 55Write a Python function that finds the smallest positive integer missing from an unsorted list of integers. You cannot use sorting; try to achieve better than O(n log n) runtime.
- Submit a PR to answer.
The Fastest, The Lightest and The Tightest android web browser.
URL: melvinjonesrepol.com/webvium-browser
A lightweight, web-based and offline-capable POS system built for flawless performance, supporting multi-department roles and full functionality.
URL: melvinjonesrepol.com/point-of-sale
A comprehensive freight management solution designed to streamline logistics operations for businesses of all sizes.
URL: melvinjonesrepol.com/axleshift-freight-management
A modern and efficient e-commerce solutions tailored for small to medium-sized businesses specifically built with Laravel, enabling seamless setup and cost effective web hosting.
URL: melvinjonesrepol.com/ulisha-store-laravel
A content-first discussion platform where users can post structured protocols, create discussion threads, and engage through comments, reviews, and voting.
URL: melvinjonesrepol.com/protocol-discussion-platform
A scalable, modular WhatsApp chatbot built in TypeScript. It leverages modern best practices, lean architecture, Prisma ORM, Dockerization, and environment-based configuration to deliver a robust, flexible successor to Orion.
URL: melvinjonesrepol.com/canis-chatbot
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.
URL: devpulse-olive.vercel.app
A browser extension that provides a floating console for developers to easily access logs while browsing the web.
URL: melvinjonesrepol.com/floating-console-extension
The only shortlink you will ever need. Simple, lightweight and utilize Redis for transactions.
If you have an idea, let's make that idea earn money! From planning, building to production. We can do that.







