Category: Technology

Love it or hate it – it is here to stay.

Apple Serenity Now!

Undeleting Accidentally Deleted Files

It happens to everyone – and it happened to me last week. I use my MiniStack external 500gig drive for my iTunes music library…and to make room for a complete backup (using Time Machine) I accidentally deleted all my music. Did I have a backup of all my music? No. I recently cleaned up my […]

Hints HOWTOs Web Development

Undelete Something With SVN

Ever delete something with svn (svn del) and then realize you needed it again? You can get it back by using: svn copy -r HEAD filenameyoudeleted.extension filenameyoudeleted.extension svn copy is the command to get a working copy back -r is short for revision. I used HEAD which will give you the latest in repository. You […]

CSS Web Development

Using !important With CSS

I am not a “quick fix” or “work around” type of person. When a CSS debugging project comes my way I look first at fixing the problem systemically vs. applying the quick fix. Recently though I was brought into a project with an insane amount of CSS and conflicting styles all over the place. Since […]

HOWTOs Web Development

HOWTO Change the SVN Editor

Because I always forget…to change the text editor that svn uses with the commit messages, just type in this command (if you use bash): export SVN_EDITOR=vi *Substitute vi for your editor of choice. **Personally, I once was a pico/nano fan, then I moved to emacs, and now I am a vi person.

Javascript WordPress

Jappler Recommends: Lightview Plus WordPress Plugin

I recently switched from using a gallery WordPress plugin called fGallery to something that is more elegant and updated: NextGen Gallery During this transition, I found a really cool lightbox-ish plugin called Lightview Plus which is more polished than your typical lightbox plugin. Example: You do not have to add in extra code to get […]

Hints Web Development

Subversion File Status Reference

Something that confuses a lot of people when they start using subversion is the file status. (svn st) Here is a quick list of the file status codes and what they mean: A File was added C Conflicting changes D File was deleted G File was merged R File was replaced U File was updated […]

Web Development WordPress

Post Revision Coming Soon to WordPress!

I subscribe to the WordPress Development Updates Feed and this morning I got a nice morning surprise: “Post revisioning is in trunk”. This means you will be soon able to create a post, publish it, make a revision, and then keep the old version as well as the new version so you could compare them […]

bbPress Business Web Development

I Apologize for the Light Posting…

I have been extremely busy with two particular projects in the last few weeks. One – a major site optimization and the other – a custom bbPress solution which has had me reading through the functions at all hours of the day to figure out exactly what is available to me and then how to […]

CSS HTML/XTML

Simple 3 Column Layout

I was talking to one of my friends today who does a lot backend programming but often needs a quick and easy 3 column layout that has the floats all figured out. His frustration with floats prompted me to make a very basic layout for him to use. If you find yourself in the same […]

HOWTOs Web Development

Switch Repositories (SVN)

In order to take a look at WordPress 2.5 before it was released, I used subversion to check out the latest code available using the instructions given on the WordPress site. Once WordPress 2.5 was released, I wanted to keep my sites using 2.5 and not the bleeding edge releases (2.6) so I needed to […]

Apple Serenity Now!

Chicago: Cold

I know it is generally cold here in the winter – and even though we had a nice break a few days ago, it is cold here, but man I was shocked to see my Mac Mini’s ambient temperature reporting: So much for that temperature reporting application!

Apple Web Development

Developer Menu in Safari 3.1!

My preferred browser is Safari but when I need to do any serious debugging, I use Firefox because of the web developer, firebug, and yslow (for firebug) addons. In the most recent update of Safari (Safari 3.1), we now have the option to show a “Developer” menu (without any hacks) when using the browser. There […]