Skip to content

Instantly share code, notes, and snippets.

View tahniat-ashraf's full-sized avatar
🇧🇩

Tahniat Ashraf tahniat-ashraf

🇧🇩
  • Berlin, Germany
View GitHub Profile
@tahniat-ashraf
tahniat-ashraf / .git-commit-template.txt
Last active August 20, 2019 11:28 — forked from adeekshith/.git-commit-template.txt
This commit message template helps you write great commit messages and enforce it across teams.
# <type>: (If applied, this commit will...) <subject> (Max 50 char)
# |<---- Using a Maximum Of 50 Characters ---->|
# Example: MRV-13: Introduce the widget to handle image creation
# (Optional) Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# (Optional) Provide links or keys to any relevant tickets, articles or other resources
# Example: closes MRV-22
@tahniat-ashraf
tahniat-ashraf / git-rebase.markdown
Created August 15, 2019 21:17 — forked from lgmkr/git-rebase.markdown
Git rebase workflow

Checkout a new working branch

 git checkout -b <branchname>

Make Changes

 git add
 git commit -m "description of changes"

Sync with remote

@tahniat-ashraf
tahniat-ashraf / docker-help.md
Created August 21, 2019 08:01 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

Data Set

    private List<Wizards> getWizards(){
        return List.of(
                new Wizards("Gryfindor","phoenix feather core","Half Blood","Male","Harry Potter"),
                new Wizards("Gryfindor","unicorn hair core","Pure Blood","Male","Ronald Wisely"),
                new Wizards("Gryfindor","dragon heart string core","Mud Blood","Female","Hermione Granger"),
                new Wizards("Slytherin","unicorn hair core","Pure Blood","Male","Draco Malfoy"),
                new Wizards("Ravenclaw","unicorn hair core","Pure Blood","Male","Cedric Diggory")