Python makes it easy to run a simple http server from any directory on your system. From command line execute the following command from the directory you would like the server to run from: $ python -m SimpleHTTPServer 8080 A simple http server will be running with the root being whatever directory you executed the… Continue reading Quickly Run A HTTP Server From Any Directory
Category: Web
Tips, tricks and explanations for web tools, standards and emerging technologies.
Debug and Inspect Webpages on AVD (Android Emulator) Browsers
There is a lot of documentation on the web on ways to debug websites for Android using their AVD (Android Virtual Device/Emulator). But I thought to make a simple step-by-step instruction to get a web debugger up and running for an AVD. Weinre is the debugger that I use. You can download weinre build from… Continue reading Debug and Inspect Webpages on AVD (Android Emulator) Browsers
ISO 2 Character And 3 Character Country Codes
Here is an SQL file of the 2 Character and their corresponding 3 Character ISO Country Codes: ISO_CC.sql I’ve needed to use this several times, so I thought posting might help someone.
Avoid FTP Info Request From WordPress Updates
When performing WordPress updates, some installations prompt for FTP information. This request for FTP information is because WordPress cannot write the updates to files on the server through PHP and therefore requests FTP login information to attempt to write files via FTP instead of PHP. But, if you do not have FTP access, or do… Continue reading Avoid FTP Info Request From WordPress Updates
Alternative to Akismet
Aksimet is a paid anti-spam comment service that comes standard with your WordPress installation. As it is the standard for dealing with comment spam in WordPress, but it is a paid service. A combination of the following two plugins has proved to be a great free alternative to Akismet: Antispam Bee (Don’t let the German… Continue reading Alternative to Akismet
Easy Regular Expression Testing
RegEx Pal is the best online Regular Expression testing system I have ever used. It is remarkably easy to use, it performs the regular expression in real-time and highlights syntax. It was launched in 2007, and I’m sorry to have only found it now, because using it has improved my skills with regular expression 10-fold… Continue reading Easy Regular Expression Testing
AWS micro EC2 instance WordPress LAMP stack optimized low memory settings
Amazon Web Services EC2 micro instances are a good way to test and develop a LAMP stack running WordPress, but, the settings for Apache, MySQL and PHP on a Linux AMI (Amazon Managed Image), by default, tend to have memory settings too high for using on a micro EC2 instance. Which can cause the WordPress… Continue reading AWS micro EC2 instance WordPress LAMP stack optimized low memory settings
AWS EC2 Amazon Linux AMI change timezone
AWS (Amazon Web Services) EC2 Amazon Linux AMI timezone will most likely be different than your local machines’ timezone. To remedy this issue on Amazon’s Linux machine image, ssh in and type the following commands in prompt: sudo su become root user ln -sf /usr/share/zoneinfo/America/Toronto /etc/localtime Choose your time zone ( in this example Toronto… Continue reading AWS EC2 Amazon Linux AMI change timezone
Triage – Handmade Leather Goods
Just finished helping a friend get a shop up and running: http://triagegoods.com On WordPress, this store represents a lot of work and fun. It’s worthing taking a peak at. Will be working hard to market with all the middle ware goodness that exists now a days.
Solving WordPress’s White Screen of Death
WordPress has an issue that can be dumbfounding to say the least. An occurrence called the “White Screen of Death” can happen for really any issue; incompatible plugin, theme bug, an update to a file, etc. But it’s the blank screen with no information that is the difficult part of solving the blank screens cause.… Continue reading Solving WordPress’s White Screen of Death