Skip to content
View victorezec's full-sized avatar

Block or report victorezec

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
victorezec/README.md

Hi there 👋

👋 Hey there, I'm Victor

🚀 Software Developer | PHP • Laravel • JavaScript • Go Lang • React • React Native • MySQL

I'm a passionate developer who loves turning ideas into clean, scalable, and high-performance software.
I build full-stack web and mobile applications using modern tools and best practices.


🚀 Tech Stack

Languages & Frameworks

💎 PHP • Laravel • JavaScript • Go Lang • React • React Native • HTML • CSS
🗄️ MySQL • REST APIs • JSON
⚙️ Git • Linux • NPM • Composer

Tools & Technologies

🖥️ VS Code • Postman • GitHub • Figma • Docker • TailwindCSS


🌐 Connect With Me

        

⚡ Fun Facts

  • 💡 I love building real-world solutions.
  • 🎯 Always learning something new.
  • 🎮 When not coding, I'm gaming, exploring tech, or watching movies.

Pinned Loading

  1. PHPMailer PHPMailer Public

    Forked from PHPMailer/PHPMailer

    The classic email sending library for PHP

    PHP

  2. VirtualApp VirtualApp Public

    Forked from asLody/VirtualApp

    Virtual Engine for Android(Support 14.0 in business version)

    Java

  3. PHP Email Sender (using PHPMailer) PHP Email Sender (using PHPMailer)
    1
    <?php
    2
    /**
    3
     * EmailHelper - Send HTML emails easily using PHPMailer
    4
     * Description: Reusable email sending class with SMTP setup.
    5
     */
  4. PHP Helper to Format Currency and Nu... PHP Helper to Format Currency and Numbers
    1
    <?php
    2
    /**
    3
     * Formatter - Utility class for formatting numbers, currency, and dates
    4
     * Description: Simple helper for formatting values consistently across PHP projects.
    5
     */
  5. Simple PHP cURL API Request Simple PHP cURL API Request
    1
    <?php
    2
    
                  
    3
    $url = "https://api.example.com/data";
    4
    $data = ["username" => "Victor", "token" => "123456"];
    5
    
                  
  6. Token-Based Authentication Example Token-Based Authentication Example
    1
    <?php
    2
    function generateToken($userId) {
    3
        $secret = 'my_secret_key';
    4
        $payload = [
    5
            'user_id' => $userId,