Virtualenv provides a way to utilize a local python interpreter instead of the system’s. This is especially helpful in situations whereby a project needs to be deployed and may need […]
More →Virtualenv provides a way to utilize a local python interpreter instead of the system’s. This is especially helpful in situations whereby a project needs to be deployed and may need […]
More →Python has a unique way of executing and there a number of ways to wrap and twist the main entry point, catch errors, and provide for command line arguments. If […]
More →Meld provides visual diff to files and directories. Primarily it allows the user to visual view differences within files in order to merge them together. Recently I needed to merge […]
More →Git is a tool that straightway out of Linux Kernel development. It is the mechanism by which code is updated and pushed back into the Linux Kernel as Linux continues […]
More →Markdown is a format commonly used for help or informational files. It has been commonly used for open source projects and provides a simple, intuitive way to provide readible readmes […]
More →It is generally good coding practice to separate settings and the data needed run and scripts themselves. here are two ways to make Python settings file: Simple Python Python itself […]
More →Python is well known for its abundance of libraries which handle just about anything. Recently I needed a Python script to perform commands over SSH. As it turns out there […]
More →There is a very handy way to know how fast a terminal command runs. Simply add the command ‘time’ before a terminal command to get back a helpful listing of […]
More →