Category: HOWTOs

Step by step guides to help with technical issues that I have worked on over the years.

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]

HOWTOs WordPress

iPod and WordPress coolness in one day.

I came across an awesome HOWTO on getting linux and games on your iPod. Now if I just had a color screen iPod (I have gen 2). On another note, WordPress.com now offers “VIP Hosting” which would be a great option for a few projects I am working on. Great job Automattic! [tags]iPod, linux, games, […]

Hints HOWTOs

creating google maps.

I just finished a quick project for a friend that used Google Maps. I was approached with the question: “I want to create a map that will illustrate the two hotel options and the reception hall for my wedding invitation. Do you know of any mapping software that I could use to do this?” I […]

Apache HOWTOs HTML/XTML Web Development

mod_include to the rescue

After working with content management managements for well quite awhile now, the thought of creating more than seven (more than five, less than ten) static pages for a client makes me cringe. Why? I am spoiled by using template driven solutions. With templateing, if I need to make a header change, I change it one […]

CSS Hints HOWTOs Web Development

troubleshooting/debugging css.

After spending fourteen hours this weekend working on CSS for a project (99% positioning), I thought I should write something about troubleshooting and debugging common problems I usually run into in hopes it can save others a few minutes/hours/frustration. What to do when the unexpected happens (including when nothing at all): class(.) or ID(#)? There […]