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                3821 commits        ██████░░░░░░░░░░░░░░░░░░░   23.46 % 
🌆 Daytime                4698 commits        ███████░░░░░░░░░░░░░░░░░░   28.84 % 
🌃 Evening                5068 commits        ████████░░░░░░░░░░░░░░░░░   31.11 % 
🌙 Night                  2702 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.59 % 

📅 I'm Most Productive on Wednesday

Monday                   2174 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.35 % 
Tuesday                  2170 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.32 % 
Wednesday                2656 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.31 % 
Thursday                 2332 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.32 % 
Friday                   2553 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.67 % 
Saturday                 2383 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.63 % 
Sunday                   2021 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.41 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               17 hrs 17 mins      ███████████████░░░░░░░░░░   58.64 % 
PHP                      5 hrs 14 mins       ████░░░░░░░░░░░░░░░░░░░░░   17.77 % 
Kotlin                   2 hrs 22 mins       ██░░░░░░░░░░░░░░░░░░░░░░░   08.06 % 
Svelte                   42 mins             █░░░░░░░░░░░░░░░░░░░░░░░░   02.39 % 
SCSS                     26 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.50 % 

🔥 Editors: 
Zed                      26 hrs 25 mins      ██████████████████████░░░   89.55 % 
Android Studio           3 hrs 4 mins        ███░░░░░░░░░░░░░░░░░░░░░░   10.45 % 

💻 Operating System: 
Linux                    29 hrs 30 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

# Rotate a 2D point by θ radians using complex numbers (matrix-free rotation).
import cmath, math

def rotate(point, theta):
    z = complex(*point) * cmath.rect(1, theta)  # multiply by e^()
    return (z.real, z.imag)

# Example: rotate (1, 0) by 90°
print(rotate((1, 0), math.pi/2))  # -> (0.0, 1.0)

Challenge

In Rust: Write a function that determines a file's type ("png", "jpeg", "gif", or "pdf") by inspecting a byte slice's magic numbers—no external crates; research the correct signatures (including JFIF/EXIF variants) and handle ambiguous cases.

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


Deploy Your Own Shortlink App

Get your link. Shorteeeeeen!

Website: https://go.melvinjonesrepol.com/

Popular repositories Loading

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

    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