Yep, I’m guilty of these productivity sins

I recently ran across a post that talks about 5 productivity sins with regards to blogging. I’d have to say it was a pretty good read and I’m guilty of most of them, 4 out of 5 to be exact.

Checking Stats: Guilty! While I don’t really check for this blog, I do manage a different blog and two website forums. I’m constantly checking the Analytics and Adsense for those sites even though the Analytics only updates once a day.

Blog Commenting: Guilty! I’m horrible at either not commenting enough on other posts that I enjoyed reading, and double guilty for not sending people back to a similar post I may have (which is not many at the moment). I tend to simply put in a link directly to my homepage instead of a related post.

Social Media: Guilty! I tend to spend to much time checking Facebook and Twitter on my personal accounts when I should be brainstorming or typing up a post for this blog I’d like to get going.

Emails: Finally, not guilty! This is probably because I don’t get that many emails throughout the day anyways so there really is no way for me at the moment to be guilty of this.

Design Tweaks: Guilty! I’m constantly playing around with the design of this site, tweaking this and tweaking that. I guess I’m being too critical of myself when it comes to the design and I can’t just leave it alone.

In the end, after thinking about these productivity sins, I really need to change my act. I gotta spend more time brainstorming ideas and turning those ideas into posts people may want to read. Maybe this is one of the reasons I was never a scholar when it came to English back in the school days. I don’t spend enough time concentrating on my writing. From here on out, I will try my best to alleviate myself of these issues and get to posting to good, interesting topics.

 

Image Source

What happens when you listen to your wife while playing Forza 3?

Easy, you end up with a pink race car. Good thing for me that I always use the in full screen racing view so I never actually see the car other than when it’s shown on the menu screens and what not.

Why did I go with a G8 you may ask? Well, I own one (a GT, not the bad ass GXP) and thought it would be cool to use as a race car for some of the events and to build up for fun.

On a side note, the Forza team did a good job rendering the interior of the car. The dashboard looks just like the real thing!

New Illinois taxes cause Amazon to give me the axe

Thanks to new Illinois tax law, Amazon affiliates like myself have all been given the axe. Pictured above is my email notice that I received from Amazon.com regarding the issue.

As of April 15th, Amazon is terminating accounts for any affiliate with an address in Illinois. While my income was minuscule and doesn’t affect me that much, I do feel sorry for those with full fledged business that revolve around affiliate sales for Amazon. They will lose significant amount revenue unless they high tail it out of the state in the next 30 days or so. Illinois is the 4th state (Rhode Island, North Carolina, and Colorado) to pass such a law and Amazon has dropped all their affiliates in every case so far.

I wonder what made the Illinois law makers think that imposing these new tax laws would work? With Amazon cutting ties, it will be business as usual for them. They still won’t collect taxes for purchases, so Illinois will still get zero tax revenue from Amazon just as it is now. On the other hand, Illinois will lose all the income tax revenue it receives as these affiliates either close up shop or move away to a new state without such laws.

This new law is counterproductive and I have a feeling it will backfire on the state. What’s your feeling on it?

Getting Started with an Arduino Uno on a Mac

Enjoyed the post about my Arduino based digital thermometer? Today I’m going back to the basics. I’ll outline from start to finish how to get your first sketch up and running on an Arduino Uno using a Mac.

This post assumes you’ve already ordered an Arduino Uno and you have it sitting in front of you. You’ll also need a USB cable (same ones used for printers) and that’s it. Nothing else is required to be purchased.

If you haven’t already, go and download the software, it’s free. Make sure you get the latest version (0022 as of this writing) that is compatible with Mac OS X. Once you got the software installed, fire it up and plug in your Arduino Uno into an open USB port.

Next we will check a few things. There are multiple versions of Arduino, so we want to make sure we select the right one for us. The Arduino will show up as a modem on a Mac (no drivers required), so we will also want to make sure the right one is picked from the list for this as well. If you head up to the Tools option in the menu bar you will find the Board and Serial Port drop down list. Pick the the Arduino Uno board (should be first one the list) and pick the modem that closely resembles what you see in the photo below. It should start off as tty.usbmodem with some letters and numbers following that. It will probably be different for you, so don’t sweat it if it doesn’t match the picture.

Ok, we’re almost there! The Arduino software comes with a bunch of prebuilt sketches that you can load into it. For this example we will use the Blink sketch located in the Basics drop down list. So go to the menu bar. File > Examples > Basics > Blink.

That should open up the blink example. And it should look something like this.

/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.</code>

This example code is in the public domain.
*/

void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}

void loop() {
digitalWrite(13, HIGH);   // set the LED on
delay(1000);              // wait for a second
digitalWrite(13, LOW);    // set the LED off
delay(1000);              // wait for a second
}

Now upload that code into your Arduino and watch the LED on the board start blinking! All Arduino boards come with an LED that is attached to digital output 13. That is what this sketch will blink.

Simple as pie. With a little electronic knowledge, some creative ideas, and a bit of code writing, anything is possible.

Look for future posts as I expand on my Arduino tutorials and move on to more complicated, yet fun, projects.

Apple Announces the iPad 2

Today Apple announced the iPad 2. And it’s a good thing I waited since this model is worth the wait. New, faster processor, the A5 chip (1GHz dual core) and 2 camera’s are what I was waiting for.

The front camera is VGA and the rear will record 720p HD, just like the iPod Touch. No mention of the pixel count for the rear camera so I presume it’ll be just like the iPod Touch. It’ll take pics a resolution of 960×720 (roughly .7 megapixel). That resolution is just slightly narrower than the native resolution for 720p HD video (1280×720).

In addition to those two main additions it is also .2 pounds lighter and around 33% thinner than the original. All this and it still retains the 10 hours battery life time of the original. All in all a solid update. It’ll be available for purchase on March 11th.

More info can be found on Apple’s iPad webpage.