Random and Opinionated Thoughts

by: Jennifer Zelazny

Life

Weekend Changes

I always wondered at what age do people start doing things around the house on the weekends, clean windows, get concerned about weeds in the yard, and start remodeling projects. For me: age 31. The last few weeks A and I have been busy around the house getting our yard in order, I have been […]

Games

Find Out When New Wii Games Are Released

Ever since I got the Wii, I have been watching to see what old games would be released for the Virtual Console and I finally decided to check out to see if Nintendo had a feed for all new game releases. Sure enough, they have a RSS feed and it lists all new game releases. […]

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 […]

Business

Jappler Recommends: Vonange

I use Vonage for my home phone, and used to use it as my business phone but decided to go with a ATT with my business line since I thought I wanted to keep a traditional phone line in the house. After my last ATT bill, their hideous ATT business web site (where you are […]

Games

Working Out With the Wii

Over the weekend I was showing a friend my Wii and all the games we have and we decided to focus on boxing. My initial response to boxing was that is was kind of lame, but after the computer player got more difficult – each game became more and more of a workout. At the […]

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 […]

Music

Music and My Life

I listen to music almost all day, everyday. Yesterday I grabbed the latest NIN album from: http://theslip.nin.com and it made me think about how the music stage is really evolving.

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 […]

Games

Finally Got a Wii!

Finally – I made it to a Best Buy that had a Wii over the weekend! I saw the flier in the Sunday paper that Best Buy had some in stock so I jumped in the car with Amy and E and we got there to get a “ticket” which guaranteed a Wii. So far […]

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 […]