Skip to content

Instantly share code, notes, and snippets.

View omerio's full-sized avatar

Omer Dawelbeit omerio

View GitHub Profile
@tinkerbotfoo
tinkerbotfoo / get_ec2_instance_secur_info.py
Last active October 3, 2021 11:13
Get decrypted EC2 Windows instance Administrator password using python boto
###requirements.txt
#pycrypto
#pyopenssl
## Creds
AWS_EC2_ACCESS_ID='AKIA**********'
AWS_EC2_SECRET_KEY = 'mh83**************'
PEM_FILE = os.path.expanduser('D:\\abc\\scripts\\s\\test.pem')
### Get Windows Admin password of the newly created AWS instance
@chrisvfritz
chrisvfritz / index.html
Created November 18, 2014 19:22
Simplest possible HTML template
<!doctype html>
<html>
<head>
<title>This is the title of the webpage!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>
@jcaraballo
jcaraballo / git-branch-between-different-repositories.md
Created March 6, 2012 01:05
How to fork a github repository in bitbucket

#Create bitbucket branch

##Create local branch

$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
  master
* sync