Skip to content
View ah-sabbir's full-sized avatar

Block or report ah-sabbir

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
ah-sabbir/README.md

Welcome 🀝

visitors Open Source Love


**I'm Sabbir .

  • πŸ”­ I’m currently working on JavaScript

  • 🌱 I’m currently learning MERN


Connect with me:


πŸ“ˆ My working Stats:

Top Langs


πŸ“ˆ My GitHub Stats:

sabbir's


Languages and Tools:

HTML5 CSS3 Bootstrap Tailwind CSS JavaScript Reactjs Nextjs Reduxjs FireBase Git



πŸ‘¨β€πŸ’» Repositories πŸ‘¨β€πŸ’»




# My PC Configs ## Before Run yml file make sure the following command already run.
# Update and upgrade apt packages
sudo apt update && sudo apt upgrade -y
sudo apt install ansible -y


# My PC Configs ``` - name: Install Necessary Applications on Ubuntu hosts: localhost become: yes # Use sudo tasks: - name: Update and upgrade apt packages apt: update_cache: yes upgrade: yes
- name: Install necessary applications
  apt:
    name:
      - curl
      - git
      - vim
      - htop
      - build-essential
      - python3
      - python3-pip
      - docker.io
      - docker-compose
    state: present

- name: Install NVM
  shell: |
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
  args:
    executable: /bin/bash

- name: Load NVM and install Node.js
  shell: |
    export NVM_DIR="$HOME/.nvm"
    [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
    nvm install node
  args:
    executable: /bin/bash

- name: Install Visual Studio Code
  apt_repository:
    repo: 'deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main'
    state: present

- name: Install code
  apt:
    name: code
    state: present

- name: Install Postman
  shell: |
    wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
    sudo tar -xzf postman.tar.gz -C /opt
    sudo ln -s /opt/Postman/Postman /usr/bin/postman
  args:
    executable: /bin/bash

- name: Clean up
  apt:
    autoremove: yes
    autoclean: yes

Pinned Loading

  1. free-programming-books free-programming-books Public

    Forked from EbookFoundation/free-programming-books

    πŸ“š Freely available programming books

  2. 50-days-of-js 50-days-of-js Public

    JavaScript

  3. NFTG_codes NFTG_codes Public

    This is NFT Generator made with python3; Generate your NFT as per your need in a few seconds.

    Python 2