October 15, 2007

Don't Have Time? Take 60 Seconds To Improve Your Photos


idigitalphoto.com has a great blog post entitled "Improve Your Photos 60 Seconds at a Time". It's perfect for people like me who really don't have the time to read through a long and thorough tutorial on various photography techniques and skills.

The post is broken up into a number of different sections:
  1. Light
  2. Landscaping
  3. People
  4. Color
  5. Composition
  6. Being Ready

Each section has between 3-7 short "tutorials" in point form (e.g. "Framing the lines") that should take you only 60 seconds to read and absorb. Great job!

Maybe only taking 60 seconds at a time is the reason why I still need to take hundreds of photos to try and get a couple really good ones.

Labels: ,

September 26, 2007

A Cool Way To Find And Compare Cell Phones And Plans


I stumbled on this site while researching phones - www.myrateplan.com.

The site has a cool gadget to find and compare phones and plans according to the criteria that you care about (e.g. must have Bluetooth, play mp3's, have a camera, be lightweight, look stylish, etc).

From the criteria I punched in (slim, popular, bluetooth, camera, speakerphone), I was really surprised at the phones I could get for free (with a plan) or even get money back! I could get the Motorola KRZR K1 at AT&T and get $70 back!

Labels:

September 18, 2007

We're back! Apologies For The Missing Posts

Sorry about the long time between the posts. I recently had a new baby and that takes all the time and energy that I have. I'm back now and will be posting regularly again as well as adding new products to ProductCritic.

If you are currently doing research for a digital camera, camcorder, or cell phone, let me know and if the product isn't already on ProductCritic, we'll get it up there.

Labels:

August 16, 2007

What Tech Support Problems Do People Have?

FixYa LogoAs part of our continuing effort to make ProductCritic the most useful site on the Internet for helping you decide if you should buy a certain digital camera, camcorder, or cell phone, we've worked with FixYa to be one of the first sites to support their widget.

If you don't know what FixYa is, they had recently been written up on Lifehacker. In short, FixYa is a database of user-submitted instructions for fixing tech support issues for various products. They have a pretty good database so far and are continually adding more support answers.

FixYa WidgetWe've started adding the widget to every new product that we enter into ProductCritic and will, over the next little while, add the widget to all the existing products that are on ProductCritic. We've already added them to the Top 10 Rated Digital Cameras. I've included a pic of what the widget looks like and you can see it on ProductCritic's page of Apple iPhone reviews.

I like the widget as it adds another level of information for people who are trying to decide whether to purchase a particular product. It provides a quick glimpse at what problems people may be having with a product despite the reviews or scores that professional reviewers are giving.

We will continue to make ProductCritic as helpful as possible a tool so that when you do finally make a purchase of a camera, camcorder, or cell phone, you have the greatest chance of being happy with your purchase.

If you'd like to see a feature on ProductCritic that would help you in making the right purchase decision for you, let us know!

Labels: , ,

August 10, 2007

Take Better Flash Photos

Cheapshooter provides three easy (and cheap!) methods to modify the built-in flash on your DSLR so that the flash photos you take don't look so...flash photo-ish.

I like their first method of using a white film canister to put over the flash and diffuse the light. Looks like I'll have to go hunting for a film canister though...I haven't had a camera that uses actual film in years.

Labels:

August 9, 2007

Now You Can Add RSS Feeds To A Rails Site

RSS logoWe've recently added some RSS feeds to make it easier to keep track of changes made to the ProductCritic site. This is an easy feature to add extra value to your site and with Rails it's quite easy.

There a number of ways to do this but I decided to use a straight forward method of using an XML view.

First step is to create a new method in your controller. For the home page feed which provides updates on the latest product reviews on the site, I added an 'rss' method to the PageController class that looked something like this:
def rss
@products = Product.find(:all, :order => 'created_at desc', :limit => 20)
render :layout => false
end
Now all that is needed is to create a 'app/views/page/rss.rxml' file to create the RSS feed. In this example I used this:
xml.instruct! :xml, :version => '1.0', :encoding => 'utf-8'
xml.rss('version' => '2.0') do
xml.channel do
xml.title "Latest Products from ProductCritic"
xml.link(request.protocol + request.host_with_port + home_path)
xml.description("Recently added products to ProductCritic.")
xml.language "en"
xml.ttl "40"
xml.pubDate(Time.now.rfc822)
@products.each do |p|
xml.item do
url = request.protocol + request.host_with_port +
url_for(:controller => 'product', :action => 'show', :id => p)
xml.title("#{h(p.name)} (#{p.score})")
xml.description(h(truncate(p.teaser, 500)))
xml.link(url)
xml.guid(url)
end
end
end
end
Ruby and Rails both have some nice helper methods to make creating the feed. Ruby's Time class has a rfc822 method which correctly generates a date-time in the required format and Rails has a truncate method to keep the body of the post a reasonable length.

With this method, we've added feeds for:
  1. The main site - provides updates on the latest products added to ProductCritic
  2. Digital Camera Reviews - provides updates on the latest cameras added to the site
  3. Camcorder Reviews - provides updates on the latest camcorders added to the site
  4. Cell Phone Reviews - provides updates on the latest cell phones added to the site
Finally, we added a feed for every product that is on ProductCritic. This means that if you are interested in one specific product (e.g. the iPhone), you can get a RSS feed for it and get updates whenever we add a new review specifically for that product you're interested in.

If you have requests for any other feeds from the site send us some feedback and we'll see what we can do.

Labels: , ,

August 7, 2007

Not Sick Of iPhone Yet? A Ton Of iPhone Links

Mashable has once again produced one of their huge resource links, this time for the iPhone.

This one has 75+ resources for the iPhone.

I'm again bored of the iPhone stuff but am starting to wonder if I'm getting tired of these long lists of resource links too. Do they just get written to be dugg? I wonder if it's working.

Anyways, we've made some additions to ProductCritic to make it easier for people to view all their product reviews. Look for posts about the recent changes we just made over the weekend.

Labels: