Skip to content
View nazirul-amin's full-sized avatar
  • Kuala Lumpur, Malaysia

Block or report nazirul-amin

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
nazirul-amin/README.md

Illustration

Hi, I'm Nazirul

I’m a software developer with a passion for web and mobile technologies. I enjoy working on fullstack projects and always seek to improve my skills in various programming languages and frameworks. My main focus areas include backend development, frontend frameworks, and mobile app development. Outside of works, I love exploring new tools and technologies that can help me build better, faster, and more scalable applications.

Feel free to check out my work and reach out if you'd like to collaborate on exciting projects!

πŸ’» Tech Stack:

Frameworks and Libraries

Laravel Inertia Js Vue js Tailwind CSS Vite Flutter

Programming Languages

PHP TypeScript JavaScript JSON HTML5 CSS3

Databases

MariaDB MySQL SQLite Redis PostgreSQL

Testing and Linting

ESLint Prettier

Tools and Platforms

Docker npm Postman

Operating Systems, Tools, and Platforms

macOS GitHub GitLab GitHub Copilot ChatGPT Figma Jira OpenAI

πŸ“ˆ Stats

nazirul-amin's Streak

nazirul-amin's Top Languages

Pinned Loading

  1. Format percentage to always show in ... Format percentage to always show in format 00.01, 00.20, 01.20, 12.00
    1
    <script setup>
    2
    const formatPercentage = (performer, field) => {
    3
        let value = performer[field].replace(/[^\d]/g, '');
    4
        if (value === '') {
    5
            performer[field] = '00.00';
  2. Format input text to 00:00:00. When ... Format input text to 00:00:00. When input 1 it will be 00:00:01 and when input 12 it will be 00:00:12
    1
    <script setup>
    2
    const formatDuration = (event) => {
    3
        // Get the current value from the input event
    4
        let value = event.target.value.replace(/[^\d]/g, '');
    5
        if (value === '') {
  3. Dotted Separator Component Next Js Dotted Separator Component Next Js
    1
    import { cn } from "@/lib/utils";
    2
    
                  
    3
    interface DottedSeparatorProps {
    4
        className?:  string;
    5
        color?:  string;
  4. Laravel Deployer Laravel Deployer
    1
    <?php
    2
    namespace Deployer;
    3
    
                  
    4
    require 'recipe/laravel.php';
    5