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 3407 commits ██████░░░░░░░░░░░░░░░░░░░ 23.04 %
🌆 Daytime 4281 commits ███████░░░░░░░░░░░░░░░░░░ 28.95 %
🌃 Evening 4567 commits ████████░░░░░░░░░░░░░░░░░ 30.88 %
🌙 Night 2533 commits ████░░░░░░░░░░░░░░░░░░░░░ 17.13 %
📅 I'm Most Productive on Wednesday
Monday 1892 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.79 %
Tuesday 1885 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.75 %
Wednesday 2507 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.95 %
Thursday 2079 commits ████░░░░░░░░░░░░░░░░░░░░░ 14.06 %
Friday 2428 commits ████░░░░░░░░░░░░░░░░░░░░░ 16.42 %
Saturday 2223 commits ████░░░░░░░░░░░░░░░░░░░░░ 15.03 %
Sunday 1774 commits ███░░░░░░░░░░░░░░░░░░░░░░ 12.00 %
📊 This Week I Spent My Time On
💬 Programming Languages:
TypeScript 14 hrs 38 mins ██████████████░░░░░░░░░░░ 54.33 %
PHP 4 hrs 15 mins ████░░░░░░░░░░░░░░░░░░░░░ 15.79 %
JavaScript 3 hrs 49 mins ████░░░░░░░░░░░░░░░░░░░░░ 14.18 %
YAML 1 hr 20 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 05.00 %
Markdown 32 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 02.04 %
🔥 Editors:
Zed 26 hrs 57 mins █████████████████████████ 100.00 %
💻 Operating System:
Linux 26 hrs 57 mins █████████████████████████ 100.00 %
I Mostly Code in JavaScript
JavaScript 32 repos █████░░░░░░░░░░░░░░░░░░░░ 21.33 %
PHP 21 repos ████░░░░░░░░░░░░░░░░░░░░░ 14.00 %
TypeScript 21 repos ████░░░░░░░░░░░░░░░░░░░░░ 14.00 %
HTML 17 repos ███░░░░░░░░░░░░░░░░░░░░░░ 11.33 %
Python 5 repos █░░░░░░░░░░░░░░░░░░░░░░░░ 03.33 %
```python
# Memoization without globals: uses a mutable default argument as a persistent cache across calls.
def fib(n, _cache={0: 0, 1: 1}):
if n < 0:
raise ValueError("n must be non-negative")
if n not in _cache:
_cache[n] = fib(n - 1) + fib(n - 2)
return _cache[n]
# Demo: repeated calls re-use the same hidden cache
print([fib(i) for i in range(10)]) # -> [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
print(len(fib.__defaults__[0]), "items in cache") # peek at the shared cache### Challenge
Python: Using only the standard library, write a script that, given a GitHub repository in the form 'owner/repo', queries the GitHub REST API to print the top 3 contributors by commit count for the default branch. You must (1) follow pagination via Link headers, (2) handle HTTP 403 rate limits by backing off and retrying based on the X-RateLimit-Reset header, and (3) output lines as 'login: count'.
<!--END_SECTION:footer-->
- Submit a PR to [answer](https://github.com/mrepol742/challenge/fork).
### Updates
### Webvium Browser
The Fastest, The Lightest and The Tightest android web browser.
**Website:** [melvinjonesrepol.com/webvium-browser](https://melvinjonesrepol.com/webvium-browser)
---
### PROJECT DEEP
AI Driven blog spot about technology, businesses and related topics.
**website:* [projectdeep.vercel.app](https://projectdeep.vercel.app)
---
### DevPulse
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](https://devpulse-waka.vercel.app)
---
### Floating Console Extension
A browser extension that provides a floating console for developers to easily access logs while browsing the web.
**Website:** [melvinjonesrepol.com/floating-console-extension](https://melvinjonesrepol.com/floating-console-extension)
---
### Deploy Your Own Shortlink App
Get your link. Shorteeeeeen!
**Website:** [go.melvinjonesrepol.com](https://go.melvinjonesrepol.com)
### Need help?
If you have an idea, let's make that idea come true!
From development, production to deployment. We can do that.
[Pricing](https://melvinjonesrepol.com/pricing) - [Contact me](https://melvinjonesrepol.com/contact-me)







