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                3920 commits        ██████░░░░░░░░░░░░░░░░░░░   23.48 % 
🌆 Daytime                4774 commits        ███████░░░░░░░░░░░░░░░░░░   28.59 % 
🌃 Evening                5203 commits        ████████░░░░░░░░░░░░░░░░░   31.16 % 
🌙 Night                  2800 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.77 % 

📅 I'm Most Productive on Wednesday

Monday                   2221 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.30 % 
Tuesday                  2227 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.34 % 
Wednesday                2706 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.21 % 
Thursday                 2410 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.43 % 
Friday                   2640 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.81 % 
Saturday                 2437 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.60 % 
Sunday                   2056 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.31 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               37 hrs 7 mins       █████████████████░░░░░░░░   69.56 % 
PHP                      6 hrs 2 mins        ███░░░░░░░░░░░░░░░░░░░░░░   11.33 % 
HTML                     3 hrs 10 mins       █░░░░░░░░░░░░░░░░░░░░░░░░   05.94 % 
GraphQL                  1 hr 34 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   02.95 % 
CSS                      1 hr 14 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   02.33 % 

🔥 Editors: 
Zed                      53 hrs 22 mins      █████████████████████████   100.00 % 

💻 Operating System: 
Linux                    53 hrs 22 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 % 

Code Snippet

// TypeScript brand trick: attach phantom types to numbers to enforce units at compile time.
// Prevents mixing meters and seconds, with zero runtime cost.

type Brand<T, B extends string> = T & { readonly __brand: B };

type Meters = Brand<number, 'Meters'>;
type Seconds = Brand<number, 'Seconds'>;
type MetersPerSecond = Brand<number, 'MetersPerSecond'>;

const meters = (n: number) => n as Meters;
const seconds = (n: number) => n as Seconds;

const speed = (distance: Meters, time: Seconds): MetersPerSecond =>
  (distance / time) as MetersPerSecond;

// Usage
const d = meters(100);
const t = seconds(9.58);
const v = speed(d, t); // ok, v is MetersPerSecond

// Uncomment to see compile-time errors:
// const bad = speed(seconds(100), meters(9.58)); // Type error: argument types do not match
// const alsoBad: Seconds = meters(5); // Type error: cannot assign Meters to Seconds

Challenge

In Python: Write a function get_capital(country: str) -> str that queries a public REST API to return the capital of the given country. Constraints: use only the standard library for HTTP, handle timeouts and 4xx/5xx responses, disambiguate tricky names (e.g., Congo), and include a brief docstring describing the API you chose.

Updates

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: 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: https://melvinjonesrepol.com/floating-console-extension


Deploy Your Own Shortlink App

Get your link. Shorteeeeeen!

Website: 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 - 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