Skip to content

Instantly share code, notes, and snippets.

View tanzeelrana's full-sized avatar
🏠
Working from home

Tanzeel tanzeelrana

🏠
Working from home
View GitHub Profile
@tanzeelrana
tanzeelrana / ssh.sh
Created November 28, 2022 00:13 — forked from zircote/ssh.sh
Convert a AWS PEM into a ssh pub key
ssh-keygen -y -f private_key1.pem > public_key1.pub
@tanzeelrana
tanzeelrana / Remove all git tags
Created March 8, 2019 20:14 — forked from okunishinishi/Remove all git tags
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d
@tanzeelrana
tanzeelrana / lab4_.idea_compiler.xml
Created February 9, 2017 14:51
Web Application Sysc 4806 Address Book App
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="lab4" />
</profile>