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                6994 commits        █████░░░░░░░░░░░░░░░░░░░░   21.91 % 
🌆 Daytime                9892 commits        ████████░░░░░░░░░░░░░░░░░   30.99 % 
🌃 Evening                9783 commits        ████████░░░░░░░░░░░░░░░░░   30.65 % 
🌙 Night                  5247 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.44 % 

📅 I'm Most Productive on Friday

Monday                   4587 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.37 % 
Tuesday                  4090 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.81 % 
Wednesday                4932 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.45 % 
Thursday                 4269 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.38 % 
Friday                   5328 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.69 % 
Saturday                 4930 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.45 % 
Sunday                   3780 commits        ███░░░░░░░░░░░░░░░░░░░░░░   11.84 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               35 hrs 39 mins      █████████████████████░░░░   84.79 % 
JavaScript               1 hr 18 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   03.11 % 
Other                    1 hr 12 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   02.86 % 
YAML                     38 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.53 % 
HTML                     35 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.39 % 

🔥 Editors: 
VS Code                  42 hrs 3 mins       █████████████████████████   100.00 % 

💻 Operating System: 
Linux                    42 hrs 3 mins       █████████████████████████   100.00 % 

I Mostly Code in JavaScript

JavaScript               51 repos            ████████░░░░░░░░░░░░░░░░░   30.72 % 
Java                     31 repos            █████░░░░░░░░░░░░░░░░░░░░   18.67 % 
PHP                      20 repos            ███░░░░░░░░░░░░░░░░░░░░░░   12.05 % 
TypeScript               15 repos            ██░░░░░░░░░░░░░░░░░░░░░░░   09.04 % 
Python                   4 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   02.41 % 

Code Snippet

// Ever seen a function that calls itself during definition?
// This self-referential lambda prints Fibonacci numbers up to n in Python

fibonacci = (lambda f, n, a=0, b=1: None if n==0 else (print(a), f(f, n-1, b, a+b)))(lambda f, n, a=0, b=1: None if n==0 else (print(a), f(f, n-1, b, a+b)), 10)
# Output:
# 0
# 1
# 1
# 2
# 3
# 5
# 8
# 13
# 21
# 34

Challenge

Python Challenge: Given only access to string methods (no built-in eval, exec, or import), write a function that determines if a string represents a valid mathematical integer expression (e.g., '3+2*2' is valid; '3++' is not).

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