Skip to content
View mrepol742's full-sized avatar
:shipit:
meow
:shipit:
meow

Highlights

  • Pro

Block or report mrepol742

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mrepol742/README.md

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                3522 commits        ██████░░░░░░░░░░░░░░░░░░░   23.08 % 
🌆 Daytime                4424 commits        ███████░░░░░░░░░░░░░░░░░░   28.99 % 
🌃 Evening                4718 commits        ████████░░░░░░░░░░░░░░░░░   30.91 % 
🌙 Night                  2599 commits        ████░░░░░░░░░░░░░░░░░░░░░   17.03 % 

📅 I'm Most Productive on Wednesday

Monday                   1969 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.90 % 
Tuesday                  1962 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.85 % 
Wednesday                2581 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.91 % 
Thursday                 2142 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.03 % 
Friday                   2472 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.20 % 
Saturday                 2282 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.95 % 
Sunday                   1855 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.15 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               16 hrs 43 mins      ██████████████░░░░░░░░░░░   55.06 % 
JavaScript               7 hrs 4 mins        ██████░░░░░░░░░░░░░░░░░░░   23.26 % 
Bash                     1 hr                █░░░░░░░░░░░░░░░░░░░░░░░░   03.30 % 
PHP                      1 hr                █░░░░░░░░░░░░░░░░░░░░░░░░   03.30 % 
YAML                     56 mins             █░░░░░░░░░░░░░░░░░░░░░░░░   03.12 % 

🔥 Editors: 
Zed                      29 hrs 29 mins      ████████████████████████░   97.04 % 
VS Code                  53 mins             █░░░░░░░░░░░░░░░░░░░░░░░░   02.96 % 

💻 Operating System: 
Linux                    30 hrs 12 mins      █████████████████████████   99.39 % 
Windows                  11 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   00.61 % 

I Mostly Code in JavaScript

JavaScript               32 repos            █████░░░░░░░░░░░░░░░░░░░░   21.62 % 
TypeScript               21 repos            ████░░░░░░░░░░░░░░░░░░░░░   14.19 % 
HTML                     17 repos            ███░░░░░░░░░░░░░░░░░░░░░░   11.49 % 
Python                   5 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   03.38 % 
Rust                     3 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   02.03 % 

Code Snippet

```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)

Popular repositories Loading

  1. mrepol742.github.io mrepol742.github.io Public

    This portfolio website was made from scratch using vanilla PHP features to streamline code and enhance maintainability.

    PHP 27 22

  2. valentines valentines Public

    A simple valentine day card made using flipbook.

    JavaScript 20 7

  3. SMS-Bomber SMS-Bomber Public archive

    Open Source Code of SMS Bomber Android APK

    Java 16 4

  4. project-orion project-orion Public archive

    A Facebook Messenger Integrated Chatbot

    JavaScript 11 43

  5. facebook-chatgpt-bot facebook-chatgpt-bot Public archive

    Facebook chatbots based on Node.js

    JavaScript 10 9

  6. project-canis project-canis Public template

    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, …

    TypeScript 9 13