mrepol742

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                6901 commits        █████░░░░░░░░░░░░░░░░░░░░   21.83 % 
🌆 Daytime                9845 commits        ████████░░░░░░░░░░░░░░░░░   31.14 % 
🌃 Evening                9707 commits        ████████░░░░░░░░░░░░░░░░░   30.71 % 
🌙 Night                  5158 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.32 % 

📅 I’m Most Productive on Friday

Monday                   4551 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.40 % 
Tuesday                  4027 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.74 % 
Wednesday                4900 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.50 % 
Thursday                 4215 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.33 % 
Friday                   5275 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.69 % 
Saturday                 4888 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.46 % 
Sunday                   3755 commits        ███░░░░░░░░░░░░░░░░░░░░░░   11.88 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               10 hrs 57 mins      ███████████░░░░░░░░░░░░░░   42.92 % 
PHP                      4 hrs 5 mins        ████░░░░░░░░░░░░░░░░░░░░░   16.05 % 
JavaScript               3 hrs 18 mins       ███░░░░░░░░░░░░░░░░░░░░░░   12.92 % 
YAML                     1 hr 34 mins        ██░░░░░░░░░░░░░░░░░░░░░░░   06.15 % 
Blade Template           1 hr 26 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   05.65 % 

🔥 Editors: 
VS Code                  25 hrs 32 mins      █████████████████████████   100.00 % 

💻 Operating System: 
Linux                    25 hrs 32 mins      █████████████████████████   100.00 % 

I Mostly Code in JavaScript

JavaScript               51 repos            ████████░░░░░░░░░░░░░░░░░   32.08 % 
Java                     31 repos            █████░░░░░░░░░░░░░░░░░░░░   19.50 % 
PHP                      20 repos            ███░░░░░░░░░░░░░░░░░░░░░░   12.58 % 
TypeScript               9 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   05.66 % 
Python                   4 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   02.52 % 

Code Snippet

// 🎲 Did you know? You can swap two variables in Python without a temp variable!
# This uses tuple unpacking, a fun Python trick:
x = 42
y = 99
x, y = y, x
print(f"x: {x}, y: {y}")  # Output: x: 99, y: 42

Challenge

Python Challenge: Write a function that finds the most frequent word in a given text file, ignoring case and punctuation. (Hint: You’ll need to research how to read files, normalize text, and count word occurrences.)

Submit a PR to Challenge.