Typing SVG

I’m Ariful Anik, and you might know me as xettabyte. I’m currently pursuing a Bachelor’s degree in Computer Science and Technology at Nanjing Tech University. My fascination with technology runs deep – I’m that guy who’s always excited about the latest developments. A dedicated self-learner, I’m constantly on the lookout for opportunities to expand my knowledge. By day, I’m a student; by night, I’m a bug hunter, with a track record of getting recognized by several organizations. My current focus areas include Bug Bounty hunting, Linux System Administration, and delving into the realms of Web Application and Cloud Security. I believe in the power of technology to transform the world, and I’m eagerly embracing the journey to make a mark in the cybersecurity landscape.


# Clone repository
git clone life.git

# Create a new branch for better self
git checkout -b better-self

# Make  changes
git commit -am "Learned a new skill"
git commit -am "Started exercising regularly"
git commit -am "Worked on communication skills"

# Rebase to refine commits
git rebase -i HEAD~3

# Merge changes back to main life branch
git checkout main
git merge better-self

# Push changes to share improved self
git push origin main