Archive for 2008

Why my grandparent’s shouldn’t watch Fox News

Tuesday, September 23rd, 2008

This happened in June. I just found it now. Why would you mention a fist pump being compared to a terrorist’s gesture? This thought is a newsworthy piece of information to share with your viewers? The New York Times had the same information, NBC, CBS, NPR, CNN, all had the same information, for some reason, they didn’t feel it worthwhile to mention how some people think Obama is a terrorist because he pounds. “Terrorist Fist Jab”. They actually said it. Unbelievable. That’s what Mark Mcguire (not to mention everyone in my generation) has been doing for the last 10 years. We must all be terrorists?! “Terrorist Fist Jab.” Besides them not regarding my generation as their demographic AT ALL, I think it seems very clear that Fox News has only one real purpose. The scary thing is that some people actually believe that garbage.

I love the response that the reporters in the video I attached have. The best way to combat this ridiculousness is to mock them. To call them out and make them know how ridiculous it really is. But if I hear anything about how the media is trying to slander Palin… I swear…

“The National” in an Obama Ad & My Response to the RNC

Friday, September 5th, 2008

I’m not sure how political I want to get on this blog, but I need to, at least this once.

A co-worker of mine shared this youtube video with me the other day. I am a relieved to see it.

After watching all of the RNC stuff going on lately, it was comforting to watch this YouTube video and be reminded that open-mindedness, care, and a drive to understand others aren’t bad things. We are a country of many different types of people. I haven’t figured out how someone can support a campaign that is unwilling to waver on a position that opposes certain caring and understanding ideas. To openly condemn community organizers was a mistake on Sarah Palin’s part, and I would hope she would agree, but I think what it does say is something about the core of the party. They do not seem to concern themselves with inflammatory comments, comments that can easily offend people that are different from them (http://www.rushlimbaugh.com/). Rudy Giuliani ripped on the Democratic National Convention for never saying the term “Islamic Terrorism”. He openly ripped on them for being afraid of being politically incorrect. Really? Is it ridiculous to think that a large political party is going to try to be respectful to it’s country’s citizens? What does this say about Rudy Giuliani and the Republican Party? (See a response to it from the Muslim community). Sarah Palin stated that the Democrats would be worried about reading people that we arrest for terrorism their rights. This was meant to be a jab at the Democratic party. Are you kidding me? It is part of the United States judicial code that even the worst criminals get their rights read to them. Why would we openly argue that skipping civility is a preferred way to handle any type of judicial situation.

I am just tired of it. I’m tired of listening and trying to comprehend what these people are saying. I hate to admit it, but with these last three days, I will now openly say that I 100% agree with at least one thing the Obama campaign is running. The republican party is still the republican party. It is still the same republican party that has been running the country for most of the last 8 years. Change is something that seems refreshing to me. I like the sound of it, and am hopeful for something different than the last 4 days to run our country.

Here is a video about Hope and Change that excites me. “I don’t want a nation just for me, I want a nation for everybody”.

Movable Type 4.2: Custom Fields on registration / sign up form

Thursday, August 21st, 2008

This is a blog post about Movable Type development. If you are uninterested in Movable Type development, then you don’t need to read this. I have been working on building a pretty substantial website with Movable Type for the last couple of months and have learned a few things along the way. This is one of those things that I learned that isn’t really documented anywhere. I thought I would try.

The website that I am building allows for users to signup/create usernames/login/post entries/etc. The goal was to require a user, when signing up, to add what company they worked for. This is not one of the standard fields that come with Movable Type’s sign up form (we purchased the Community Solution). What is baked in to Movable Type is the ability to create custom fields on the user object. This is good. It means that we can add as many fields as we want, and associate the data to a specific user, (i.e. Company, Job Title, Birthday, etc.). MT has some documentation on allowing a user to update this custom information on their profile page (http://www.movabletype.org/documentation/community/user-profiles.html). Here is the code they suggest:

<mt:loop name="field_loop">
<mt:if name="__first__">
<input type="hidden" name="customfield_beacon" value="1" id="customfield_beacon" />
</mt:if>

<mtapp:setting
id="$field_id"
label="$name"
hint="$description"
shown="$show_field"
show_hint="$show_hint"
required="$required">
<mt:var name="field_html">
</mtapp:setting>

</mt:loop><br />

This is great if you want a user to be able to enter all of the created custom field data at once because it just loops through all of your custom fields and creates input fields for each of them. We had about 10 custom fields on the user object and only wanted the person signing up to enter the ‘Company’ information on signup (as to not make them feel overwhelmed with so much information to input).

How I accomplished only writing one field is to throw an MT if statement in there based on what the $field_id is. In other words what your custom field’s basename is preceded by “customfield_”.

<mt:if name="field_id" eq="customfield_company">
</mt:if>

With “company” my field’s basename, that made the field_id I was looking for, customfield_company.

My final code to display only the company custom field on the user signup form (with MT4.2):

<mt:loop name="field_loop">
<mt:if name="__first__">
<input type="hidden" name="customfield_beacon" value="1" id="customfield_beacon" />
</mt:if>

<mt:if name="field_id" eq="customfield_company">
<mtapp:setting
id="$field_id"
label="$name"
hint="$description"
shown="$show_field"
show_hint="$show_hint"
required="$required">
<mt:var name="field_html">
</mtapp:setting>
</mt:if>

</mt:loop><br />

Note: This is only possible on the user registration page after the release of MovableType 4.2. Before that, I think this could only be done on the profile page.

I will update this if I learn any discrepancies in what I said. If you find any, please let me know.

Whispering Pines Cottage

Monday, July 28th, 2008

I have always been looking for a Wordpress gallery plugin that I can easily throw together and manage some images, galleries and albums on this blog. Well I found the perfect tool. It is called NEXTGen, and for anyone who is as geeky as me, it is sweet and lives here.

I uploaded some pictures from the Winter Wonderland trip that I took this past winter. We took a weekend and went up past Northport, to the tip of the pinky of Michigan. We stayed in a wonderful cabin called “Whispering Pines”. It was a small cabin that had 3 rooms (one of them a loft) a really cozy living room with a wood burning fireplace, and a hot tub on the back porch. It was located in the middle of a pine forest right outside of Leelanau State Park.

I should have uploaded these a while ago but I didn’t. I will upload some more pictures of other events soon. You can get there by clicking on the ‘Gallery’ link under ‘Pages’ in the navigation to the right. I will give a link in this post as well for anyone who gets these in their emails or RSS feeds.

Aaron’s New Gallery