BloggerCamp.com header image

How Blogging is like the Olympics

So is shoemoney, problogger, or johnchow the Michael Phelps of blogging? Who really cares. Blogging is like the Olympics in that there are several sports (niches) that the elite compete in and have the ability to get high scores (traffic/visits/money). All the while millions upon millions of people watch (readers) hoping for victory for their choosen athlete or team. Wait, that last part… that’s not what readers want. They want tips, tricks, and advice on how to do what the olympians are doing themselves. Bringing home the GOLD.

The problem is that not everyone can be an Olympic level blogger. Not everyone can place first. Not everyone can be internationally known and respected for Aardvark Eating Habits… or, you know, the Parallel bars.

The fact that we as the underclassmen of the upper echelon of blogging have a lot to learn and so many are willing to teach… but not teach everything… and not for free. It seems that all these high class bloggers hold back the holy grail of their methods. Sure they reveal what tools they used, they even share a few tips here and there… but let’s see the full business model eh? Or at least a near facsimile.

Enough of my rant…

Question to the Campers:

What are some of the things that you wish the upper ranks of blogging would actually unveil for you… or do you think they’re doing just fine like they are?

Popularity: 55% [?]

Bernie Mac Dies and University of Phoenix scares me

Bernie Mac, Dead at 50

Bernie Mac, Dead at 50

One of my favorite comedians, Bernie Mac, died from complications of pneumonia at the age of 50. He will be missed.

In other, more personal news. I’m quite irritated at University of Phoenix right now. I just started my first class (2 weeks in) and my transfer credits have been combed over by their “expert”. I attended a local community college here in Omaha and have taken over 115 quarter hours of classes. Mostly being technical courses (internet technologies and general computer courses as well). 115 quarter hours = 76 semester hours… they only took 18 of those. This gives me, according to their time frame, a little over 2 years left on my bachelors degree. 5 week courses, 72 credits left, 3 credits per course = 1 pissed off student.

I’m in talks with my couselors and I’m hoping for the best. Wish me luck.

Popularity: 89% [?]

Boy, have I been distracted

I’m sitting at my desk staring into the void of an empty post in WordPress 2.6. Nearly 7 months since my last blog post.

Boy, have I been distracted.

I’m currently using a Blog2Life theme, it’s suitable for now while I toil in the background putting together my own theme. I’ve gone back and forth on wether I want to try and get into the WordPress theme market… but with so many already taking advantage of this gaping niche is it really worth it. I’ve asked myself the necessary questions: Do I have the ability? Yes. Do I have the eye for it? Yes. Do I have the tenacity? Yes. So basically… once I reestablish this blog within the realm of my own standards. I will, once again, be unveiling mainly free themes for the masses!

As a side note, I reread my New Year’s resolutions and fell completely short, as many do, but I am to rectify this as soon as possible (it’s never too late). 

Question to the Campers:

What functions or extra controls would you like to see added to a WordPress template? I’m trying to get some ideas together for plugins aka extensions to WordPress on a per post/page/blog/theme basis.

Popularity: 77% [?]

Squidoo.com - Nothing New, but it’s still nice

Squidoo has been around for a little while now and I’ve, only recently, begun to experiment with it… as not just a money maker, but as a traffic source for bloggercamp.

I created a lens based on an older holiday entry of mine “Top 10 Christmas Gifts for Bloggers” - I’ve titled it “Best Gift Ideas for Bloggers” It’s nothing special, but after publishing it, it has climbed to a Overall LensRank of 6,365 and 686 is the shopping category. Not bad considering it’s only been published for about a week.

The only publicity I’ve done aside from this blog entry, is to post a link to it with Stumbleupon. I have yet to see any revenue from it, but I’ve received a few hits to bloggercamp from it.  I’m looking to add a few more lenses on subjects I’m interested in and I’ll try and show you all how to get in some of the top spots as I personally climb the ranks.

So join Squidoo and make a go at it.

Popularity: 82% [?]

Dilectio 1 WordPress Theme Review

Design Disease released a nice theme for Smashing Magazine called Dilectio 1.

caption

Dilectio by Design Disease

DEMO | DOWNLOAD

Dilectio 1 Review:

Another great theme from Elena. Great colors and contrast. Amazing attention to detail… all in a tight little package. The only two issues I have with this theme are as follows:  When you have several menu items (top level pages)… it distorts the layout if the width is too great. The footer is pretty bland, it could/should contain more information… perhaps additional information about the blog, it’s users, etc.

Elena, if you’re reading this thanks!

Recommendations:

  • Fluid Width Options in Panel… with such a nice theme, having the option for fluild width would be nice.
  • Fix the page menu issue.
  • Reconstruct the footer.

Rating

Popularity: 100% [?]

Mark’s New Year’s Resolutions

UPDATE: Holy crap… do I suck at life! Lets try to fix this (it’s not TOOO LATE!!)

I have traveled though… Anna and I went to Mt. Rushmore, The Badlands, and Custer National Park… with a few stops along the way to assorted “attractions”. Namely Walldrug and The Corn Palace in Mitchell, SD.

I don’t typically believe in “New Year Resolutions”… but 2007 has been such a great year AND a lackluster year at the same time. So in order to do something about it I decided on my 26th birthday (20 December) what my resolutions were going to be for 2008.

    My Blogs

  • Post at the very minimum 3 times per week (or at least 12 times per month).
  • Keep promises as far as themes/templates go.
  • Make at least 1 WordPress theme available per month
  • Finish redesign of bloggercamp by the end of January
    My Life

  • Restart a modest workout routine, 2-3 times a day
  • Continue the trek to quit smoking (hard!!!)
  • Complete Associates Degree Bachelor’s Degree
  • Obtain Security+ Certification
  • Live happy now but save some for later
  • Enjoy more travelling with Anna.

Popularity: 77% [?]

Remove Several Categories from the Loop in WordPress

Here is a little trick to to remove categories from the main loop. Yes, you can display these elsewhere; in pages (view custom template), the sidebar, the footer… wherever you want them and I’ll show you how.

Complete code

  1. <?php
  2. $themes = $wpdb->get_var("SELECT term_id FROM wp_terms WHERE slug = 'themes'");
  3. $plugins = $wpdb->get_var("SELECT term_id FROM wp_terms WHERE slug = 'plugins'");
  4. $posts = query_posts($query_string . 'cat=-' . $themes . ',-' . $plugins);
  5. if (have_posts()) : while (have_posts()) : the_post();
  6. ?>

Explanation

Line 1:
Opening PHP Statement

Lines 2 and 3:
The $themes and $plugins are the variables I’ve set up to pull the category id’s by name from the WordPress database. WHERE slug = ‘themes’ and WHERE slug = ‘plugins’.

Why did I setup those queries like that?
It’s a lot easier to remember a category by name than ID number isn’t it?
You can quickly change which category to remove from the loop and not have to look up the category id.

Line 4:
The $posts variable is internal to WordPress and the rest of the statement tells query_posts() to remove the categories by cat id (which we pulled from lines 2 and 3).

Line 5:
Our familiar loop is executed.

Line 6:
End of php statement

How to Add your Removed Categories anywhere you want them!

So now that you’ve removed some categories from displaying in your main loop… where do you want to put them?

The following code is how to display posts from a single category that we removed… I’ll show you how to add additional categories if you removed 2 or more from the main loop like I did in the previous code.

Complete Code

  1. <?php
  2. $themecat = $wpdb->get_var("SELECT term_id FROM wp_terms WHERE slug = 'themes'");
  3. $get_themes = new WP_Query('cat=' .$themecat. '&showposts=10&orderby=post_date&order=desc');
  4. while ($get_themes->have_posts()) : $get_themes->the_post();
  5. $do_not_duplicate = $post->ID; ?>
  6. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  7. <?php the_content();?>
  8. <?php endwhile; ?>

Explanation

Line 1:
Opening PHP statement

Line 2:
The $themecat variable retrieves the category id WHERE slug = ‘themes’. One of the categories I removed in the above code.

Line 3:
The $get_themes variable initiates our variables for posting, here I have it setup to show 10 posts ordered in DESC fashion by date.

Line 4:
While we have posts with the $get_themes ID then start our loop!

Line 5:
Tells $get_themes not to show duplicate posts (very important).

Line 6 and 7:
You can basically put anything in here that you want that relates to the inner workings of the loop. I personally decided to just list the title and the content for illustration purposes.

Line 8:
Ending our while loop.

In order to put multiple categories (that you’ve removed from the main loop in the first portion of this tutorial) you must duplicate line 2, and change $themecat and ‘themes’ to $categorynamecat and ‘category’.

Then within line 3 replace .$themecat. with:
.$themecat. ‘,’ .$categorynamecat.

And you should now have 2 categories removed from the main loop and displayed anywhere else you’d like!

If you need any help or guidance please let me know via comments!

Popularity: 90% [?]

Lorelei releases a beautiful theme - PerfecTOM

Lorelei Web Design quietly released a premium theme called PerfecTOM.

PerfecTOM Theme Review
DEMO | DOWNLOAD

PerfecTOM Review:

Upon first sight of PerfecTOM it looks very girly by nature and isn’t very easily customizable. The background image is an entire JPG image “766×811″ at that. With some optimization and clever css work, this theme could be a lot more lightweight, and a lot more appealing to the masses.

The color choices however are very safe and appealing; blue hues, pinks, and whites make this an attractive design. Overall I can picture this theme (how it stands now) as a blog for shopping, winter topics, or even a gossip blog.

Recommendations:
Let’s face it, PerfecTOM is far from Perfection. It doesn’t seem like a “premium theme” as it stands and doesn’t appeal to a large quantity of users, but with some work it could be much better!

  • Rework the background image and the css file to condense the weight (kb) of each page
  • Offer some alternative background image/color schemes

Rating

Popularity: 69% [?]

I turn 26 today and tomorrow I find out if I get laid off

The following statements are of a personal account by said author and do not represent the views, ideas, or stances of Boeing Services Company, or it’s related agencies.

If you’ve read anything about me, I’m a System Programmer (former Analyst) for Boeing Services Company. Yes the Boeing that makes all the super sweet planes and choppers.

I turn 26 today, and tomorrow I find out if I get laid off. I’m not mad at Boeing; you see, it’s not Boeing’s fault. I’m a contractor for the DoD under service to Boeing. It’s the governments (i.e. George Bush’s War Fund) fault I might not have a job come the end of this month. What a way to ring in the new year right?

There are 10 positions here, and 5 of us must go. I regard myself as knowledgable on the systems we use (Unix, Solaris, Veritas, Windows) as well as a few homegrown proprietary systems the government thought we needed as well. I do my work, I know my work, but I’m still the youngest one within the company, I haven’t earned my vested pension yet (5 years, whereas I’m at 4 this May).

Am I worried? Yes and no. I can always find something else… I just really enjoy my job and the customers that I work for. So happy 26th birthday to me, and here’s to hoping that I don’t get fired!

Popularity: 84% [?]

Google Installs coming with Western Digital Hard Drive?

I recently purchased a Western Digital SATA300 - 500 GB Caviar SE 16 Hard Drive. The contents were: packaging, anti-static wrapper, a booklet, SATA cable, and an installation cd.

On that installation CD was Google Toolbar, Google Desktop, and Google’s semi-recently acquired Picasa. I’m all for bundled software and what not but why is Google going to great lengths to push their tools… which are ALL readily available online. Just looking for some insight/thoughts here.

Popularity: 80% [?]