I’m not a person who is good with Math, Astronomy, or other Sciences so I really struggled with figuring out how to properly determine the ascending sign in my astrology software.
Continue reading
Steps to building the PySwissEph library on Windows
- Download a Python27 release
- Download MinGW
- During the MinGW setup, install GCC/G++ plus additional libraries (“pthreads, etc, etc”)
- Configure Python and MinGW to work together by following: this link
- In pyswisspeh-master/libswe/swejpl.c around line 79 comment out the following line:
/*typedef __int64 off_t;*/
- in setup.py add pthreads to your Link Flags:
ldflags = ['-lpthread']
AES Encrypted Video – Decrypted in Temporary Memory
I recently created an addition to Cry About Crypt that allows for decrypted playback of encrypted video media inside temporary memory. In this article I will explain what I did along with the functional source code contained in order to achieve this.
Continue reading
A Quick and Dirty URL Shortener in Web2py
This URL Shortener: http://s-o.link, is built using the web2py framework. I built this web software to easily send tiny links for easy sharing over SMS, for various mobile apps that I build. In particular this mobile app: www.missedmybus.ca.
URL Rewrite Non Existing Requests [NginX]
Rewrite all requests which no longer exist to domain.
Continue reading