Tag: HOWTOs

Apache HOWTOs Web Development

Fun with mod_rewrite

Apache’s mod_rewrite is very powerful. You can prevent hot-linking to your site’s graphics to prevent others from stealing them, redirect your from your old URL to a new URL, re-write URLs, as well as about 500 other really cool things…but today I wanted to share the syntax needed to redirect every incoming URL for a […]

HOWTOs

Staying Anonymous on the Internet

I have recently started using Tor for improved security and privacy when working out of certain locations. Not that I have much to hide but I do not want someone watching all my outgoing network traffic. Tor is also helpful if you are using a computer somewhere where they block ports (thus blocking services such […]

Hints HOWTOs Web Development

If You Want a Web Site Redesign…

If you have thought it through and tried to make small changes but you are still unhappy with your site, here are some things to consider: Existing successful web sites. The first thing that I do as a web developer/consultant is ask my clients to list three-five web sites they like and find easy to […]

Hints HOWTOs UNIX

whereis and locate.

A few simple commands to help make your life working with UNIX a little easier: If you are looking for a certain programs, use:whereis. Example. You want to find out where ipfw is located. In the command line type whereis ipfw and whereis will spit out the location (/sbin/ipfw). If you need to find a […]

HOWTOs jappler.com Web Development

Web Developer Plugin: Display Ruler

When I recently updated my browser, Firefox, to the latest release and noticed that some of my extensions also needed to be updated. I do not use many extensions, but I absolutely love and rely on the Web Developer Extension. I had not gone through all the drop down menus in awhile within the Web […]

Hints HOWTOs UNIX

print file size command.

Earlier today I was asked for the command to show a file size in UNIX and so I thought I would share. There are, of course, a few ways to do this. One great little command to keep handy is:du -h. The du (display utility) will print out the size of a file or directory. […]

HOWTOs WordPress

wordpress widgets.

I recently started looking into WordPress Widgets which allow people to customize their WordPress web site or blog without knowing any HTML. Widgets allow WordPress users to simply “drag and drop” features in their sidebars. Sound interesting? A basic overview on how to get widgets working on your site: Download the Widgets plugin for WordPress […]

Apple Hints HOWTOs

outlook users having issues with mail.app attachments.

A few days I came across a problem with Microsoft Outlook users not being able to open any attachments sent by someone using Apple’s Mail.app application (the default Apple email application). Fortunately the fix is quick and easy! The real problem: Apple, by default, uses a “Rich Text Format” (RTF) for composing all new email […]

Hints HOWTOs

good css practices.

I was recently asked to recommend and comment on some good CSS practices for a client and I thought I would pass some of them. Use a table of contents. I always start my stylesheet(s) with a table of contents so I can easily locate particular styles in the future. I would recommend breaking your […]

HOWTOs

remove all .svn directories in a directory.

Anyone who uses subversion will need this sooner or later. Change directories to the root directory and run: find . -name .svn -print0 | xargs -0 rm -rf. Bingo…all .svn directories are gone and you can start fresh! [tags]subversion, svn[/tags]