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

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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! 🚀

Lines of code

I'm an Early 🐤

🌞 Morning                6969 commits        █████░░░░░░░░░░░░░░░░░░░░   21.88 % 
🌆 Daytime                9874 commits        ████████░░░░░░░░░░░░░░░░░   31.01 % 
🌃 Evening                9778 commits        ████████░░░░░░░░░░░░░░░░░   30.71 % 
🌙 Night                  5223 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.40 % 

📅 I'm Most Productive on Friday

Monday                   4585 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.40 % 
Tuesday                  4090 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.84 % 
Wednesday                4913 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.43 % 
Thursday                 4255 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.36 % 
Friday                   5317 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.70 % 
Saturday                 4911 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.42 % 
Sunday                   3773 commits        ███░░░░░░░░░░░░░░░░░░░░░░   11.85 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               27 hrs 11 mins      ███████████████░░░░░░░░░░   58.64 % 
HTML                     6 hrs 54 mins       ████░░░░░░░░░░░░░░░░░░░░░   14.88 % 
PHP                      6 hrs 22 mins       ███░░░░░░░░░░░░░░░░░░░░░░   13.74 % 
Other                    1 hr 30 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   03.24 % 
SQL                      1 hr 10 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   02.54 % 

🔥 Editors: 
VS Code                  46 hrs 22 mins      █████████████████████████   100.00 % 

💻 Operating System: 
Linux                    46 hrs 22 mins      █████████████████████████   100.00 % 

I Mostly Code in JavaScript

JavaScript               51 repos            ████████░░░░░░░░░░░░░░░░░   31.10 % 
Java                     31 repos            █████░░░░░░░░░░░░░░░░░░░░   18.90 % 
PHP                      20 repos            ███░░░░░░░░░░░░░░░░░░░░░░   12.20 % 
TypeScript               13 repos            ██░░░░░░░░░░░░░░░░░░░░░░░   07.93 % 
Python                   4 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   02.44 % 

Code Snippet

// 🦄 Quirky Trick: Swap two variables WITHOUT a temporary variable, using XOR (JavaScript)
let a = 42, b = 99;
// Swapping magic starts here!
a = a ^ b;
b = a ^ b;
a = a ^ b;
// a and b have now swapped values!
console.log(a, b); // 99 42

Challenge

Python Challenge: Given a paragraph of text, write a function that counts the number of unique words that are palindromes (same forwards and backwards). Ignore punctuation and letter casing. Example: 'Level, Madam, kayak.' should return 3.

Submit a PR to Challenge.

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 26 22

  2. valentines valentines Public

    A simple valentine day card made using flipbook.

    JavaScript 16 8

  3. SMS-Bomber SMS-Bomber Public archive

    Open Source Code of SMS Bomber Android APK

    Java 11 4

  4. project-orion project-orion Public

    A Facebook Messenger Integrated Chatbot

    JavaScript 11 42

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

    Facebook chatbots based on Node.js

    JavaScript 10 12

  6. Hello-World Hello-World Public

    "Hello World" Program in all known Computer languages

    Classic ASP 7 7