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                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 % 

Code Snippet

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

Challenge

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.

Updates

Webvium Browser

The Fastest, The Lightest and The Tightest android web browser.

Website: melvinjonesrepol.com/webvium-browser


PROJECT DEEP

AI Driven blog spot about technology, businesses and related topics.

*website: 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


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


Deploy Your Own Shortlink App

Get your link. Shorteeeeeen!

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