Author Archives: admin

How to add ICMP Echo Request to AWS Security Group from the CLI

The answer to this question is: you need to use –ip-permissions. There does not seem to be any other way to do it. Here is an example (all one line!): aws ec2 authorize-security-group-ingress –group-id sg-000000000000000 –ip-permissions IpProtocol=icmp,FromPort=’8′,ToPort=-1,IpRanges=[{CidrIp=0.0.0.0/0}] The icmp echo … Continue reading

Posted in AWS, cli | Comments Off on How to add ICMP Echo Request to AWS Security Group from the CLI

How to fix STOP: 0x0000007B blue screen when moving virtualbox machine to another computer

My old pc died, and so I pulled the hard drive and copied my virtualbox machine disks onto my new computer. Since the new computer used a new version of virtualbox I couldn’t seem to get the old machine images … Continue reading

Posted in Microsoft, Virtualbox, vmware, windows | Comments Off on How to fix STOP: 0x0000007B blue screen when moving virtualbox machine to another computer

pip is broken with AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’

This error is quite frustrating, and it has been occurring to me when I try to move old django sites to a new server. It is frustrating because once this happens, your pip is broken and you can’t do anything … Continue reading

Posted in Linux, Mac OS X, python, SSL | Comments Off on pip is broken with AttributeError: ‘module’ object has no attribute ‘SSL_ST_INIT’

Generate a certificate request but keep your old key with openssl

Until today, I didn’t know you could do this. I always just did a cert request and generated a new key. Sometimes it is handy to keep your old key, and here is how you do it. openssl req -new … Continue reading

Posted in Linux, SSL | Comments Off on Generate a certificate request but keep your old key with openssl

OSError: [Errno 1] Operation not permitted: Extras/lib/python/six-1.4.1-py2.7.egg-info’

After upgrading some things using homebrew, this error started coming up on a coworker’s machine when he tried to pip install virtualenvwrapper. This error was coming up right before the operation not permitted: Installing collected packages: six Found existing installation: … Continue reading

Posted in Mac OS X, python | Comments Off on OSError: [Errno 1] Operation not permitted: Extras/lib/python/six-1.4.1-py2.7.egg-info’