Sometimes you need to make a copy of a website for offline use. There are a number of offline website downloader tools I’ve found helpful for this task. Offline Website Downloaders Unix Command line wget -p -k http://www.example.com/ Mac Application SiteSucker Windows Application HTTrack Why Would You Do This? Using these tools has allowed me […]
Dev Tips
How to Name a File
Naming a file, while seemingly an easy task has a number of nuances to it. Here are some tips to improve your file naming. A rose by any other name, would smell just as sweet but would be more difficult to locate. Use all lowercase letters A combination of upper and lowercase letters in a […]
How to Disable JavaScript in Chrome
2014-08-29 UPDATE: Current version of Chrome has issue I’m seeing an issue where the Disable JavaScript checkbox is becoming unchecked on refresh (thus undoing the point of this post). More info at https://code.google.com/p/chromium/issues/detail?id=369844 Current fix seems to be “click Disable JavaScript a bunch of times” (yes, I realize this is a ridiculous fix) How to […]
Testing Redirects
Testing redirects can be a nightmare since the web browsers aggressively cache redirects. Use incognito mode in Chrome to make it easy to clear cached redirects by closing the Incognito window. Even Better Update Testing redirects from the command line works even better. curl -I http://www.example.com/ will return the headers for the request including the […]