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.

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
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 HTML5 CSS3 Python

Databases

MariaDB MySQL SQLite Redis PostgreSQL

Testing and Linting

ESLint Prettier

Operating Systems, Tools, and Platforms

Windows Ubuntu macOS Docker npm GitHub GitLab Postman Figma Slack Jira Ollama Hugging Face v0 OpenAI Google Gemini AWS Cloudflare DigitalOcean Firebase Vercel Visual Studio Code Windsurf Warp

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