Croncast Facebook Group  Follow Kris on Twitter 
 
Search Results
I've read about hp 1400 times.

Search Results RSS for




10 Basic Digital Publishing Skills Journalists/Anyone Should Know... - SVW
(via - www.siliconvalleywatcher.com )
I read it on 03/16/10 at 08:10 PM
Posted on 03/17/10 at 12:09 AM

10 Basic Digital Publishing Skills Journalists/Anyone Should Know...

By Tom Foremski - March 16, 2010

Most journalists I know can barely type, they certainly can't spell but they can tell a great story.

Most professions have to continually upgrade their skills yet I know lots of journalists that are very reticent about adding new skills. They hate to shoot photos, or video, or edit the video. I know a journalist that does not know how to upload a photo!

Carrying a pencil and a notepad is not enough, journalists need to know how to produce media content in a variety of ways.

Here are ten basic skills journalists, heck, anyone should know:

1 - How to shoot a photo with a digital camera and transfer it to a computer for a quick edit.

2 - How to upload an image to a web site in the right format and size.

3 - How to add a hyperlink to a word or part of a sentence by hand. (i.e. hyperlink)

4 - How to quickly shoot digital video and do a quick edit and upload it to a hosting service such as YouTube, in the right format.

5 - How to embed the code for a video in a web page and resize it to fit the page width.

6 - How to capture audio for a video, or just an audio-only podcast, so that the audio is clear and background noise is minimal.

7 - Know some basic HTML and what it does so that common problems with a web page can be quickly fixed.

8 - Know some basic CSS (Cascading Style Sheets) and what it does, and be able to quickly fix any problems with a web page.

9 - Know how to promote your content on the Internet without alienating contacts and family.

10 - Know how to get used to an always-on work day that often extends beyond 9-to-5, and produce three times as much digital media content as you think you can, while maintaining high standards of quality and accuracy.




Tags: journalists  skills  video  basic  digital  
 
 

Twitter-OAuth-PHP
(via - docs.google.com )
I read it on 03/07/10 at 08:58 PM
Posted on 03/08/10 at 01:56 AM

This documentation is for TwitterOAuth library verision 0.1.x.
If you are using trunk (0.2.x) these instructions will be wrong!

Try it out live: http://twitter.abrah.am

Twitter OAuth is in beta and could change at any time. Feel free to contact me with bug/questions. A full TwitterOAuth lib will be released soon. Currently the code is hacked together and should not be used in production without proper testing.

Index

Definitions

Consumer: the application you are building. registered with twitter. Sometimes referred to as application
User: the user using your application.
Token: there are several different sets of tokens usually in key/secret pairs.
Consumer token: the token pair Twitter gives you when you register an application.
Request token: the first token pair Twitter returns. used to build an authorize URL used to request the access token.
Access token: unique to user. Used to access users data.

Get the code

Pull code from http://github.com/abraham/twitteroauth
git clone git://github.com/abraham/twitteroauth.git

Process overview

This is a very simplistic overview of authenticating with Twitter's OAuth.
  1. Build TwitterOAuth object.
  2. Request tokens from twitter.
  3. Build authorize URL.
  4. Send user to Twitter's authorize URL.
  5. Get access tokens from twitter.
  6. Rebuild TwitterOAuth object.
  7. Query Twitter API with new access tokens.

Process

For this example we will be using the the index.php from the example folder and it will be located in the web root.
public/index.php
public/twitteroauth/

Go to https://twitter.com/oauth_clients and register a new application. Fill out what the form. For a callback URL we will be using http://example.com/index.php. Once registered you will get a consumer key and a consumer secret. Those go in index.php

Now we create a TwitterOAuth object. The class constructor chooses HMAC-SHA1 as the signature method, and builds a OAuthConsumer object with the app consumer key/secret.
$to = new TwitterOAuth($consumer_key, $consumer_secret);

With that object we use curl to request a token from twitter. The API URL we hit is https://twitter.com/oauth/request_token. getRequestToken() pulls the tokens from twitter, parses it into an array, and creates a new OAuthConsumer object.
$tok = $to->getRequestToken();

Save the tokens for when the user returns from Twitter.

Set up the authorization URL. This is the URL the user will visit to tell twitter the application can access their data. https://twitter.com/oauth/authorize is used.
$request_link = $to->getAuthorizeURL($token);

Once the user tells twitter yes and returns we request the access tokens. The access tokens can be thought of the users passwords and will be used to authenticate as them for future API calls. https://twitter.com/oauth/access_token is used.
$tok = $to->getAccessToken();

At this point you can check https://twitter.com/account/connections and the application should be listed.

Build a new TwitterOAuth object using consumer key/secret and access key/secret.
$to = new TwitterOAuth($consumer_key, $consumer_secret, $user_access_key, $user_access_secret);

Now to interact with the API as the user to verify their credentials. This should return their profile. You can now save the access key/secret as being associated with the returned user info.
$content = $to->OAuthRequest('https://twitter.com/account/verify_credentials.xml', array(), 'GET');

To send a status update change the API URL and add a key/value array.
$content = $to->OAuthRequest('https://twitter.com/statuses/update.xml', array('status' => 'Test OAuth update. #testoauth'), 'POST');

There you have it. Basic interaction with Twitter's OAuth beta. To run other commands just change the API URL and array() keys/values in the last call.

Links

My website: http://abrah.am
Twitter: http://twitter.com
OAuth: http://oauth.net
Twitter API docs: http://apiwiki.twitter.com
Twitter API discussion: http://groups.google.com/group/twitter-development-talk
Fire Eagle OAuth docs: http://fireeagle.yahoo.net/developer/documentation/php_walkthru



Tags: twitter  access  token  oauth  key  


 
 

Steve Ballmer teases new Xbox 360 form factors, price points and options
(via - Engadget )
I read it on 03/06/10 at 09:04 AM
Posted on 03/06/10 at 10:21 AM

Turns out Steve Ballmer's talk up at the University of Washington delivered even more saucy info than we were initially led to believe. In a transcript of the subsequent Q&A session, Steve is shown to have delivered the following statement on the topic of large-screen televisions and Microsoft's related hardware strategy:
For that big screen device ... there's no diversity. You get exactly the Xboxes that we build for you. We may have more form factors in the future that are designed for various price points and options, but we think it's going to [be] important.
It's safe to assume new form factors point to a smaller rather than larger 360 chassis, though the price points and further options he mentions are wide open for speculation. It wouldn't be unreasonable to forecast Microsoft pushing out its own slimmed-down console to match up with Sony's PS3 Slim, but we also shouldn't discount the idea of an Xbox 360 with Project Natal hardware integrated into its shell. In other words, we really don't know what Steve has going on under that shiny dome of his, we just hope it's as exciting as he makes it sound.

Steve Ballmer teases new Xbox 360 form factors, price points and options originally appeared on Engadget on Sat, 06 Mar 2010 05:21:00 EST. Please see our terms for use of feeds.

Permalink Gizmodo, Gearlog | sourceMicrosoft | Email this | Comments


Tags: steve  points  options  factors  price  
 
 

Windows Phone 7
(via - Chris Pirillo )
I read it on 03/06/10 at 09:08 AM
Posted on 03/06/10 at 07:33 AM

Windows Phone 7 is a post from Chris Pirillo


Add to iTunes | Add to YouTube | Add to Google | RSS Feed

First, if you have any questions for the Windows Phone 7 Series team, I'd be more than happy to ask on your behalf (as I do live around the corner from Redmond's campus and will be meeting with the team again at some point in the future). Post a comment and/or video response.

I was invited to a behind the scenes look at elements of the Windows Phone 7 Series developer platform. At Mobile World Congress (covered earlier in this channel), Microsoft provided a first look at Windows Phone 7 Series and I'm pleased to offer you the opportunity to see a live demonstration up close.

Yes, I got to play with the phone, too. It works as advertised even as a prototype. Unfortunately, we could not adjust the brightness settings in this particular device. The Metro interface is a bucket of win in my book.

Charlie Kindel partner group program manager, Windows Phone App Platform & Developer Experience was hosting an intimate reception this evening in San Francisco. I wasn't able to make it, but Microsoft arranged a somewhat more private meeting with Greg Sullivan from the Windows Phone team a little closer to home.

I met Greg a few years ago through the Longhorn Labs project (back when Microsoft Windows team leads worked actively with their most vocal community supporters). I'm not sure if I can reveal any more device details at this point, but suffice it to say

I want one.




Tags: lt  gt  li  pirillo  href  
 
 

AT&T Introduces the FirstYahoo Phone
(via - jkOnTheRun )
I read it on 03/02/10 at 10:58 AM
Posted on 03/02/10 at 02:00 PM

AT&T is constantly getting bashed about its network coverage and how it gets around anticipated shortages. The carrier has been the iPhone network in the U.S., and perhaps its relationship with Apple played a role in AT&T waiting longer than other carriers to get into the Android game. That is set to be rectified with the carrier's introduction of the Motorola Backflip, an Android-based phone which will be the carrier's first. The first AT&T Backflips are hitting reviewer's hands, and a mind-boggling function of the Google phone has come to light. AT&T has removed Google search from this Android phone, and replaced it with Yahoo search. As noted by engadget:

Yahoo has replaced Google as the default search provider throughout the phone. It's crazy: the home screen widget, the browser, everything's been programmed to use Yahoo.

It is not unusual for carriers to work deals for specific software on its handsets. They take money wherever they can get it. But this deal is sure to confuse the customer, as Android phones are commonly called Google phones by many. Let's face it, Google makes Android, and one of its strengths is the tight integration with the company's online services. And search is certainly one of Google's big services, but not on the AT&T Backflip.

This is the equivalent of a Windows PC hitting the market that has Internet Explorer removed and Safari as the only browser. Some customers might be happy by that but most would be confused. Then to make matter worse, imagine that Internet Explorer couldn't be installed by the user to get around this major change. That seems to be the case with the AT&T Backflip, as early testers are reporting the inability to get Google search working in any of the Android programs.

There has been enough complaining about fragmentation in the Android space, so I won't rehash that topic. But there is something so fundamentally wrong when an Android phone has Google search removed. And replaced by Yahoo search? I guess this makes the Backflip the Yahoo Phone.

Related research on GigaOM Pro (sub req'd):

As Windows Mobile Stumbles, Which Smartphone OS Will Seize the Lead?





Tags: android  google  phone  search  yahoo  
 
 

Producing News with Your Smarthphone: The Tampa Trip
(via - My Urban Report )
I read it on 03/02/10 at 08:50 AM
Posted on 03/02/10 at 01:44 PM

by Amani Channel

I'm heading to Tampa, Florida for a couple of days to take care of some business. I have my second thesis defense at the University of South Florida, and tomorrow I'm scheduled to give a teleseminar with the Poynter Institute about producing news with with smartphones.

My mobile media journey started a couple of years ago when I used Twitter to share news from the field as I covered the 2008 Gulf Coast storm season for the now defunct HDNews. I don't know how many journalists were doing it at the time, but I found Twitter and hashtags (like #Ike and #gustav) to be a great way to share first hand accounts of what I was witnessing from the field during Tropical Storm Fay, Hurricane Gustav, Ike and Tropical Storm Hanna.

I also used my blog to post the stories that we produced from the field and I shared footage that wasn't included in my stories. Oh if only the iPhone 3GS was out back then. The iPhone and other smartphones like the Android and Nokia models make it extremely easy to share video from anywhere. Other applications and sites like TwitPic allow easy photo sharing.

We all know that media can't be every. But people with these devices are everywhere, and it's changing the face of news and information. As an example, check out these pics from the Chile earthquake that were posted via Twitter.

Of course I can't share all of my secrets, but if you check out this Webinar, you should have a greater understanding of now TV news stations, and vloggers like myself are using technology to innovate the gathering of content.

WTTG Fox 5
in Washington DC, and KOB in New Mexico are doing a great job of experimenting with technology to enhance coverage.

I'll probably be posting mostly mobile videos, so keep it tuned to either my Twitter account, or check back here for the latest video updates.

Forgive the typos, I gotta board my flight!





Tags: news  share  twitter  field  check  
 
 

Bogus Copyright Claim Silences Yet Another Larry Lessig YouTube Presentation
(via - Techdirt )
I read it on 03/02/10 at 08:50 AM
Posted on 03/02/10 at 12:26 PM

Nearly a year ago, we wrote about how a YouTube presentation done by well known law professor (and strong believer in fair use and fixing copyright law) Larry Lessig had been taken down, because his video, in explaining copyright and fair use and other such things, used a snippet of a Warner Music song to demonstrate a point. There could be no clearer example of fair use -- but the video was still taken down. There was some dispute at the time as to whether or not this was an actual DMCA takedown, or merely YouTube's audio/video fingerprinting technology (which the entertainment industry insists can understand fair use and not block it). But, in the end, does it really make a difference? A takedown over copyright is a takedown over copyright.

Amazingly enough, it appears that almost the exact same thing has happened again. A video of one of Lessig's presentations, that he just posted -- a "chat" he had done for the OpenVideoAlliance a week or so ago, about open culture and fair use, has received notice that it has been silenced. It hasn't been taken down entirely -- but the entire audio track from the 42 minute video is completely gone. All of it. In the comments, some say there's a notification somewhere that the audio has been disabled because of "an audio track that has not been authorized by WMG" (Warner Music Group) -- which would be the same company whose copyright caused the issue a year ago -- but I haven't seen or heard that particular message anywhere.

However, Lessig is now required to fill out a counternotice challenging the takedown -- while silencing his video in the meantime:
While you can still see the video on YouTube, without the audio, it's pretty much worthless. Thankfully, the actual video is available elsewhere, where you can both hear and see it. But, really, the fact that Lessig has had two separate videos -- both of which clearly are fair use -- get neutered due to bogus copyright infringement risks suggests a serious problem. I'm guessing that, once again, this video was likely caught by the fingerprinting, rather than a direct claim by Warner Music. In fact, the issue may be the identical one, as I believe the problem last year was the muppets theme, which very very briefly appears in this video (again) as an example of fair use in action. But it was Warner Music and others like it that demanded Google put such a fingerprinting tool in place (and such companies are still talking about requiring such tools under the law). And yet, this seems to show just how problematic such rules are.

Even worse, this highlights just how amazingly problematic things get when you put secondary liability on companies like Google. Under such a regime, Google would of course disable such a video, to avoid its own liability. The idea that Google can easily tell what is infringing and what is not is proven ridiculous when something like this is pulled off-line (or just silenced). When a video about fair use itself is pulled down for a bogus copyright infringement it proves the point. The unintended consequences of asking tool providers to judge what is and what is not copyright infringement leads to tremendous problems with companies shooting first and asking questions later. They are silencing speech, on the threat that it might infringe on copyright.

This is backwards.

We live in a country that is supposed to cherish free speech, not stifle it in case it harms the business model of a company. We live in a country that is supposed to encourage the free expression of ideas -- not lock it up and take it down because one company doesn't know how to adapt its business model. We should never be silencing videos because they might infringe on copyright.

Situations like this demonstrate the dangerous unintended consequences of secondary liability. At least with Lessig, you have someone who knows what happened, and knows how to file a counternotice -- though, who knows how long it will take for this situation to be corrected. But for many, many, many other people, they are simply silenced. Silenced because of industry efforts to turn copyright law into something it was never intended to be: a tool to silence the wider audience in favor of a few large companies.

The system is broken. When even the calls to fix the system are silenced by copyright claims, isn't it time that we fixed the system?

Permalink | Comments | Email This Story





Tags: copyright  video  fair  such  lessig  

 
 

RockOn Music Player
(via - Android Tapp )
I read it on 03/01/10 at 01:00 PM
Posted on 03/01/10 at 03:28 PM

RockOn is a music player with cool album-art navigation UI, auto art dl and concert info. You can download the full version from the website (free) but if you do like the concept and wish to support further development please consider buying it from the Market (1.33 ).

Price: Free

AndroidTapp.com Android App Review:

Pros & Cons:

Pros

  • Unique twist in the interface and navigation
  • Find and download album artwork automatically
  • Save and share playlists
  • Multi-task. Play music in the background and launch other Android apps

Cons

  • Often glitchy
  • Although the UI is cool, there could be more finesse regards to smoothing out the edges versus jagged edges on albums
  • Automatic album art discovery needs manual tweaking to get the best results
  • Processor intense, better use on Android phones with higher processing capabilities or more internal memory storage

Features:

RockOn Music Player is an Android music player with a unique twist in the interface and navigation it displays music 2D perspective. On the left pane is the current track playing with music controls, on the right is a list of albums on your SD card. Swipe the right pane to bring albums only to front view. Amongst playing MP3s you can save and share playlists.

Rockon Music Player Rockon Music Player Albums Rockon Music Player Change Album Art Rockon Music Player Track List Rockon Music Player Search Your Music Rockon Music Player Menu Options

Usefulness:

RockOn Music Player allows you to find and download album artwork automatically, even if it is not saved with albums on your SD card (a cool resource to have). However some manual intervention is needed for some album covers.

Ease of Use:

Its nifty UI brings everything all on one screen, so operation could be any easier.

Frequently Used:

Dependant on how often you listen to music on your Android phone.

Interface:

The user interface has a different twist, though it's no TAT Home experience it has room for improvements!

AndroidTapp.com Rating

AndroidTapp.com Rating!AndroidTapp.com Rating!AndroidTapp.com Rating!AndroidTapp.com Rating!AndroidTapp.com Rating! (3.7 out of 5)

Should you Download RockOn Music Player? Yes! Rock-On with RockOn Music Player!

Algadon Free Online RPG. Fully Mobile Friendly.




Tags: music  player  rockon  album  android  
 
 

6 Free Android Apps That Will Make You Drop Your iPhone
(via - mashable.com )
I read it on 02/28/10 at 11:14 AM
Posted on 02/28/10 at 04:12 PM

Shared by Kristopher
android apps, android, nexus one

6 Free Android Apps That Will Make You Drop Your iPhone

Android vs iPhone imageThe Android Market may still lag behind the iPhone App Store in terms of variety and quality, but there is something to be said for the Android operating system's extremely tight integration with existing Google products, and the wide choice of devices and carriers.

There's no question that the iPhone has many wonderful apps, but Android's smart syncing with existing tools, interesting Android-only experiments coming every day from Google employees, and its open marketplace model have yielded some tools that may give the average iPhone user pause.

If you're looking for a change, or you're in the smartphone market and still weighing the pros and cons, consider these Android-only apps and how they might fit into your work, play, and mobile lifestyle.


1. OpenHome

OpenHome Image

There's no denying that the iPhone OS is a gorgeous piece software. But when it comes to the home screen, you get what you get, and you don't get upset, to quote a nursery school mantra.

Android is completely open-source, which means that apps can change the functionality and appearance of the OS, if you permit them to. This isn't always good for safety, but it's great for customization.

OpenHome is one of the leading customization apps available on the Market. It functions as a replacement for the default home screen, into which you can load customs skins, icon packs, and fonts many of which are freely available in the Market and created by other users.

In addition to the look and feel of your OS, OpenHome also allows for other custom tweaks including soft keyboard improvements and widget modifications.


2. Google Voice

Google Voice Image

Imagine a world where you never have to listen to another voicemail again. That's almost what you get when you set up Google Voice and utilize the Android app. Google Voice lets you keep your existing mobile number, but will forward your missed calls to a generated Google number that you can check on the web, in your e-mail, or via the app.

The service automatically generates voicemail transcription that is usually accurate enough to get the gist of what the caller is saying. Instead of getting a voicemail on your phone, you'll receive and e-mail (or text message) with the transcription.

The app then lets you scroll through your messages visually, like an e-mail inbox, and stream the audio messages from the web as needed, all without wasting precious mobile minutes.

There are certainly other great voicemail alternatives for the iPhone (and Voice is available as a web-based service), but Google Voice's deep integration with Gmail (you can also enable audio playback within web e-mail messages) makes it a great compliment to your hand-held arsenal of communications tools.

Google Voice is still an invite-only service at the moment. You can request an invite from Google here, or hit up your friends on social networks for one.


3. NESoid

NESoid Image

Classic gamers rejoice! NESoid is a Nintendo ROM emulator for Android that actually works. The app itself is software that interprets ROM files the format of choice for hacked console games. Assuming you're loading a worthwhile ROM file from your SD card, the gameplay is really smooth.

The lite version of NESoid is free, but prevents you from loading a saved-state of a game. The full version will cost you $3.49 and unlocks this feature.

Most ROMS are not exactly kosher in terms of copyright, so we'll leave it at your discretion whether you want to actually track down the games. This is likely why console emulators have not made it through the stringent App Store approval process, but are now appearing in Android's more liberal Market.


4. Google Finance

Google Finance Image

If you've got an eye on your stock portfolio 24/7, Google Finance can be a useful tool for getting customized, real-time quotes.

The Android app syncs directly to your Google Finance portfolios and streams live data right into your hands by way of quote updates, charts, and financial news.

Android is currently the only mobile platform with an official Google Finance app.


5. Google Listen

Google Listen Image

Google Listen is a unique offering from Google Labs that functions like a search engine and subscription tool for podcasts across the web. If you're on the train and realize you've forgotten to download the latest episode of NPR's This American Life, simply fire up Google Listen, search for it, and stream it immediately, from the source.

Google Listen effectively eliminates the need to download podcasts or connect your handset to your computer. And with subscription options built in, once you find a show you like, you'll never miss an episode while you're on the go.


6. Gmail and Google Calendar

Last but not least, the utility of the fully integrated Gmail and Calendar apps that come built-in to the Android OS cannot be overstated. One of the core reasons why any Gmail or Google Apps user should go Android is that the handset will complete your suite of cloud computing productivity tools.

Because of the intrinsic link between your Android phone and your Google account, the mobile functionality of Google apps like Gmail and Calendar are seamless. Draft an e-mail on your phone and it is instantly viewable in your drafts folder on the web. Update an appointment on the web Calendar, and it's reflected on your phone seconds later.

Android users also enjoy the built-in functionality of shared calendars, Gmail labels, threaded conversations, and Send As accounts if it is configured in your settings.

If you live and work out of your Gmail inbox, an Android handset is the perfect extension.


More Android resources from Mashable:


- 7 Mind-Blowing Free Android Apps
- Free Multiplayer Android Games [3 of the Best]
- 3 News Apps for Android Compared
- The Best Free Twitter Apps for Android
- 30 Android Apps to Watch
- 8 Android Apps Worth Paying For (And Some That Aren't)




Tags: android  google  apps  gmail  app  
 
 

New Material Patterned After Spider Hair Refuses to Get Wet
(via - Tech News Daily RSS )
I read it on 03/02/10 at 09:32 AM
Posted on 02/27/10 at 09:23 AM

Scientists have created a flat surface patterned after the body hair of spiders that refuses to get wet.

The surface also has the added benefit of being self-cleaning, since water does a pretty good job of picking up and carrying off dirt as it is being repelled.

This makes the material ideal for some food packaging, windows, or solar cellsthat must stay clean to gather sunlight, scientists say. Boat designers might someday coat hulls with it, making boats faster and more efficient.

But what makes the new surface really unique is that unlike other similar products out there, such as shoe wax and car windshield treatments, the new material doesn't rely on chemicals with water-repellent properties to stay dry. Instead, its surface blocks out water by mimicking the shape and patterns of a spider's body hair. In other words, physics, not chemistry, is what keeps it dry.

Spiders "have short hairs and longer hairs, and they vary a lot. And that is what we mimic, said Wolfgang Sigmund, a professor of materials science and engineering at the University of Florida.

It's been long known that spiders use their water-repelling hairs to stay dry or avoid drowning. Water spiders use their hairs to capture air bubbles and tote them underwater to breathe. But it was only five years ago that Sigmund began experimenting with microscopic fibers, turning to spiders for inspiration.

At first, Sigmund's natural tendency was to make all his fibers the same size and distance apart. But he later learned that the pattern of hairs on a spider's body consists of both long and short hairs that are both curved and straight. So he decided to mimic Nature and replicate this random pattern using plastic hairs varying in size but averaging about 600 microns, or millionths of a meter.

Most people that publish in this field always go for these perfect structures, and we are the first to show that the bad ones are the better ones, Sigmund said.

The technique, detailed in the science journal Langmuir, can be applied to keep even absorbent materials like sponges from getting wet. It may also be safer than other forms of water-proofing since the method doesn't involve the use of chemicals.

Sigmund says that he has even developed a variation of the surface that repels oil. However, he noted that the process is not reliable enough to continually create good working surfaces, and different techniques need to be developed to produce such surfaces in commercially available quantities and size.

We are at the very beginning, Sigmund said. But there is a lot of interest from industry, because our surface is the first one that relies only on surface features and can repel hot water, cold water, and if we change the chemistry both oil and water.




Tags: water  surface  hairs  sigmund  spiders  
 
 
 
Next >|



 
 
Scratch   Archive All


  March 2010 (12)
February 2010 (29)
January 2010 (15)
December 2009 (13)
November 2009 (52)
October 2009 (36)
Sep. 2009 (19)
August 2009 (2)
June 2009 (1)
May 2009 (7)
April 2009 (8)
March 2009 (11)
February 2009 (11)
January 2009 (8)
July 2008 (10)
June 2008 (60)
May 2008 (59)
April 2008 (62)
March 2008 (81)
February 2008 (37)
January 2008 (45)
December 2007 (28)
November 2007 (75)
October 2007 (55)
Sep. 2007 (70)
August 2007 (34)
July 2007 (42)
June 2007 (35)
May 2007 (48)
April 2007 (40)
March 2007 (13)
February 2007 (24)
January 2007 (34)
December 2006 (30)
November 2006 (30)
October 2006 (41)
Sep. 2006 (19)
August 2006 (31)
July 2006 (33)
June 2006 (24)
May 2006 (26)
April 2006 (33)
March 2006 (9)
January 2006 (3)
December 2005 (5)
November 2005 (8)
October 2005 (13)
Sep. 2005 (13)
August 2005 (14)
July 2005 (7)
June 2005 (13)
May 2005 (13)
April 2005 (14)
March 2005 (13)
February 2005 (19)
January 2005 (21)
December 2004 (24)
November 2004 (18)