AkbarAhmed.com

Engineering Leadership

Please see my prior post on how to Setup virtualenv on Windows. Open PowerShell, then enter the following commands: cd C:\Python27 .\env_tornado\Scripts\activate.bat .\Scripts\easy_install.exe pip pip.exe install tornado -E .\env_tornado   If you want to install in the global site packages, then skip pip above and use: .\Scripts\easy_install.exe tornado That’s it. Time to start writing code.

I’m going to assume you have Python 2.7 correctly installed on Windows at C:\Python27. These instructions are applicable to Windows XP and Windows 7.   Open Windows PowerShell, then enter: cd C:\Python27 .\Scripts\virtualenv.exe –no-site-packages env_tornado And now to activate the new environment: .\env_tornado\Scripts\activate.bat The new virtual environment is now setup and ready for use

I have finally stopped installing Flash in my browsers by default. Up to now, I used to install Flash as soon as I upgraded my browser. However, it’s time to start the transition to the brave new world of HTML (including HTML5). Flash, it’s been great.

I’m a big proponent of keeping a consistent naming standard, even when crossing languages. True, capitalization and syntax may change, but the standard should remain. Importantly, I have found that naming should play to the strengths of the operating system. File Names For example, on every operating system you can sort files by name (i.e. …

Continue reading

Converting a .p12 SSL Code Signing Certification to the .pfx format is amazingly simply. I wasted a couple of hours looking on Google without luck. So I hope this post saves someone else the time I wasted. The facts: 1.) A .p12 and .pfx are the exact same binary format, although the extension differs. 2.) …

Continue reading

Categories: SSL