Archive for April, 2008

All posts written in April, 2008.

Finally Got a Wii!

Posted by: Jen | 3 Comments »

Categorized: Entertainment, Games

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 I only have 2 games (Wii Sports and some other game that came with a second controller) but look forward to getting some more games soon. Anyone play the newest Mario?

Subversion File Status Reference

Posted by: Jen | No Comments »

Categorized: Hints, Web Development

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
  • ? File is not under version control (you will need to add it)
  • ! File is missing (probably was deleted using the OS or some other application and not subversion)

Tagged: ,

Post Revision Coming Soon to WordPress!

Posted by: Jen | No Comments »

Categorized: Web Development, 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 at a later date. This is one reason I often push clients to Drupal if this is something they need, but to have this in WordPress – this is great news. Great work guys!

I Apologize for the Light Posting…

Posted by: Jen | 4 Comments »

Categorized: bbPress, Business, Web Development

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 implement it. I first started using bbPress at version 0.7 (same version as I started playing around with WordPress) and even though bbPress has matured to 0.9.x – the documentation is scarce so simple things I am used to accomplishing with WordPress (mainly custom queries) has been a challenge. I am almost done with the bbPress project which I will highlight as soon as it is up and ready to go. Overall – I have been really busy, but I have been working on great projects and have a lot of future posts planned out that will discuss some of what I learned.

Growl Gone Bad

Posted by: Jen | 1 Comment »

Categorized: Serenity Now!

GrowlSome days are better than others. Somedays you do not need to work with other humans to get slapped in the face. Welcome to my day. (For those that do not know what you are looking at – it is a screen full of error notification messages brought to me by Growl)

Tagged:

Simple 3 Column Layout

Posted by: Jen | 2 Comments »

Categorized: CSS, HTML/XTML

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 situation – check out my basic 3 column layout.

Tagged: , , ,

DespairWear

Posted by: Jen | No Comments »

Categorized: Jappler Recommends

I am a huge fan of all Despair.com items, but I had not been there for a few months so when I saw they are now selling shirts (DespairWear) I got really excited. Expect to see me sporting one of these in the near future!

EveryBlock

Posted by: Jen | No Comments »

Categorized: Jappler Recommends

There is a really cool web site out there that I stumbled across a few days ago: EveryBlock.com. This really cool web site lets you look at events and places on a “neighborhood” level. You can see all crimes, photos, Craigslist listings, businesses, film locations, etc by entering in a zip code or by choosing a neighborhood. This is a really cool tool – especially if you are thinking about moving into a new neighborhood. This was a great find because it has Chicago as one of it’s pilot cities! I look forward to watching this site grow.

Career Advice for College Students (or Anyone)

Posted by: Jen | 3 Comments »

Categorized: Hints, Penn State, People

I returned from a trip to my alma mater, The Pennsylvania State University, a few days ago after getting asked to speak at the History Department career fair. I was one of seven speakers at the event. We all had various non-traditional history degree careers (which was the point) and surprisingly we all had a very similar message to give to everyone.

  • Network. We all got to where we were by connections and relationships we had made along the way.
  • Get yourself out there. Most of our first job experiences were not what we wanted to do for the rest of our lives, but it gave us a place to start and a place to start networking.
  • Find something you love and specialize in it. This world is becoming a very specialized world and there is a job out there for just about anything. To separate yourself out – find a niche that you love and go with it. This really catapulted my business (WordPress and bbPress specialization)
  • Don’t wait for opportunities to come your way – make your own opportunities. So many people think “My boss will give me a raise if I work hard” or believe that if they do well – they will get what they deserve. This is not usually the case. Look out for yourself – and go out and get what you want in life!

Switch Repositories (SVN)

Posted by: Jen | No Comments »

Categorized: HOWTOs, Web Development

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 easily switch repositories from http://svn.automattic.com/wordpress/trunk/ to http://svn.automattic.com/wordpress/branches/2.5/.
I had never had to switch repositories, so it took some reading to figure it out. For future reference, the following command works when used in the directory you have the checked out files in: “svn switch http://newrepos.com .” For my example, I ran the command: “svn switch http://svn.automattic.com/wordpress/branches/2.5/ .”