Skip to content
View HirogaKatageri's full-sized avatar
:atom:
Constantly planning~
:atom:
Constantly planning~
Block or Report

Block or report HirogaKatageri

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

Hi there, I'm Gian - aka Hiroga Katageri πŸ‘‹

Twitter Follow

I'm a Husband, Father and Software Engineer~

  • πŸ’ I met and married my wife in 2019.
  • πŸ‘§ We had our first child in 2020.
  • πŸ‘§ We had our second child in 2022.
  • 😎 My focus is mostly on Mobile Applications, Backend and AI.

Languages and Tools 🧰

Android

iOS

Flutter

Kotlin

Java

Dart

Javascript

Typescript

AWS

Pinned

  1. Shell Script Commands: Git Shortcuts Shell Script Commands: Git Shortcuts
    1
    # Add the following line to your ~/.bashrc or where your other shell commands are at.
    2
    # git.ignore: Untracks ignored files in Git.
    3
    # git.prune: Deletes local merged branches on current branch. It protects: (master, main, develop)
    4
    
                  
    5
    alias git.ignore='git add . && git commit -m "Committing all changes..." && git rm -r --cached . && git add . && git commit -m "Removing ignored tracked files..."'