Category Archives: Development

Anything related to Programming and Program Development. Shaping our latest technologies.

Installing MySQLDB on Windows Errors

Select box Plugin option is: fourWell after trying to recompile the entire library, i came across this link. http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python A plethora of precompile python libraries.  What a great resource. Up until i found the precompiled libraries i came across a plethora of errors trying to compile MySQLdb.  Errors I’ve gotten: File setup_windows.py line 7, in [...]

Also posted in Python | Leave a comment

Password protecting nginx

Select box Plugin option is: four Create a Username/Password which will be stored in ‘useraccess’, a file I just made up. htpasswd -b -c useraccess username password -b: allows password in command line rather than prompt -c: creates new passwd file, or rewrites and appends if the file already exists. Now in the nginx config, [...]

Also posted in nginx, Uncategorized | Leave a comment

Free Cloud Hosting for a year? Sign me up!

Select box Plugin option is: fourhttp://www.google.com/search?sourceid=chrome&ie=UTF-8&q=amazon+free+tier

Also posted in Linux, Server & Web Site Administration, Web Development & Administration, Web Hosting | Leave a comment

WordPress-Smart 404 Plugin

Select box Plugin option is: four A great tool for not showing 404 pages on your wordpress website.  I’ve used this for a couple years now.  I just recently discovered that if you type in a url with a keyword that cannot be found in your posts or pages, this plugin will show a 404 [...]

Also posted in Wordpress | Leave a comment

Reveal Password in web browser – Asterisks Revealed

Select box Plugin option is: four Thank you stumble upon, for your weekly interesting emails.  Every email I’ve gotten from StumbleUpon has in fact held my interested.  One of the few sites I actually allow weekly emails from.  Thanks to those emails I’ve found this little handy javascript. javascript:(function(){var s,F,j,f,i; s = “”; F = [...]

Also posted in JavaScript, Software, Web Browsers | Leave a comment

Speeding up Windows Vista file transfers over the network.

Select box Plugin option is: fourVista performs very fast on advanced networking environment, but introduced too much overhead in normal home office environment, you just need to disable some settings to reduce the overhead, all is done in 2 simple steps. Unless you equipped with advanced PC and networking devices, your can expect performance dropped [...]

Also posted in techblog | Leave a comment

Updating timezone information on my VPS

Select box Plugin option is: fourHaha because of having a VPS I cannot set the time on it, from what I can tell.  All though I cannot change the time, i can update the timezone.  This is a very easy to do command: export TZ=America/Chicago BAM! After running this command I run the command:  date [...]

Also posted in techblog | Leave a comment

Enabling DOMDocument in php

Select box Plugin option is: fourHow to enable DOMDocument in php. Well you can take the time to recompile php, but that’s just a pain. Now if you have SSH Shell access to your linux server running php, this can be pretty easy. I’m running CentOS 5, let me know if this doesn’t work for [...]

Also posted in techblog | Leave a comment

Using SSH without using or needing a password

Select box Plugin option is: fourI’ve tried many methods now of using SSH keys to login without a password.  Needless to say, I had to mix a couple methods to make this work.  This isn’t that hard. Step 1) You’re on a linux machine (or putty’d into a linux box) trying to SSH into a [...]

Also posted in techblog | Leave a comment

WordPress Starter Plugin

Select box Plugin option is: fourEverything you need to write your own plugin. This is the starter solution. It shows how to plugin with your own class to wordpress, already set up custom functions. This is version 1 of this empty plugin. The admin menu (with a submenu), a settings page, another settings page. You [...]

Also posted in Internet, PHP, techblog, Web Development & Administration, Wordpress | 2 Comments