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

Sponsoring

@sindresorhus

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                3832 commits        ██████░░░░░░░░░░░░░░░░░░░   23.52 % 
🌆 Daytime                4712 commits        ███████░░░░░░░░░░░░░░░░░░   28.92 % 
🌃 Evening                5074 commits        ████████░░░░░░░░░░░░░░░░░   31.14 % 
🌙 Night                  2675 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.42 % 

📅 I'm Most Productive on Wednesday

Monday                   2162 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.27 % 
Tuesday                  2169 commits        ███░░░░░░░░░░░░░░░░░░░░░░   13.31 % 
Wednesday                2664 commits        ████░░░░░░░░░░░░░░░░░░░░░   16.35 % 
Thursday                 2323 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.26 % 
Friday                   2552 commits        ████░░░░░░░░░░░░░░░░░░░░░   15.66 % 
Saturday                 2397 commits        ████░░░░░░░░░░░░░░░░░░░░░   14.71 % 
Sunday                   2026 commits        ███░░░░░░░░░░░░░░░░░░░░░░   12.43 % 

📊 This Week I Spent My Time On

💬 Programming Languages: 
TypeScript               8 hrs 2 mins        ███████░░░░░░░░░░░░░░░░░░   27.91 % 
PHP                      6 hrs 46 mins       ██████░░░░░░░░░░░░░░░░░░░   23.52 % 
JavaScript               4 hrs 46 mins       ████░░░░░░░░░░░░░░░░░░░░░   16.61 % 
Blade Template           2 hrs 16 mins       ██░░░░░░░░░░░░░░░░░░░░░░░   07.88 % 
JSON                     1 hr 25 mins        █░░░░░░░░░░░░░░░░░░░░░░░░   04.93 % 

🔥 Editors: 
Zed                      26 hrs 41 mins      ███████████████████████░░   92.68 % 
Android Studio           2 hrs 6 mins        ██░░░░░░░░░░░░░░░░░░░░░░░   07.32 % 

💻 Operating System: 
Linux                    28 hrs 47 mins      █████████████████████████   100.00 % 

I Mostly Code in JavaScript

JavaScript               32 repos            ██████░░░░░░░░░░░░░░░░░░░   22.22 % 
TypeScript               18 repos            ███░░░░░░░░░░░░░░░░░░░░░░   12.50 % 
HTML                     17 repos            ███░░░░░░░░░░░░░░░░░░░░░░   11.81 % 
Rust                     3 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   02.08 % 
Kotlin                   3 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   02.08 % 

Code Snippet

```js
// Quirk: Generate the first 10 Fibonacci numbers with no loop body,
// by using array destructuring and the comma operator in the for-loop's update clause.
for (let [a, b, i] = [0, 1, 0]; i < 10; console.log(a), [a, b, i] = [b, a + b, i + 1]);
### Challenge
In JavaScript: Write a function that sorts an array of filenames in human-friendly order—case-insensitive, accent-insensitive, and numeric-aware (e.g., 'file2' comes before 'file10')—using Intl.Collator where available, and provide a reasonable fallback if it's not.
<!--END_SECTION:footer-->
- Submit a PR to [answer](https://github.com/mrepol742/challenge/fork).

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 8

  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