Croncast Facebook Group  Follow Kris on Twitter 
 
Search Results
I've read about d 5840 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  
 
 

AppleInsider | NPR, WSJ plan Flash-free Web sites for Apple iPad
(via - www.appleinsider.com )
I read it on 03/16/10 at 08:00 PM
Posted on 03/16/10 at 11:58 PM

NPR, WSJ plan Flash-free Web sites for Apple iPad

By Katie Marsal

Published: 03:50 PM EST

In addition to new App Store software, National Public Radio and The Wall Street Journal also plan to create specific versions of their Web sites completely devoid of Adobe Flash for iPad users.

This week Peter Kafka with MediaMemo revealed that both NPR and the Journal will convert at least some portions of their Web site to load properly on the iPad. The custom-built sites will feature the same content and run concurrently with the traditional and iPhone/mobile-friendly versions of each Web site.

"Visitors to the newspaper's front page will see an iPad-specific, Flash-free page," Kafka said of the Journal's iPad Web site. "But those who click deeper into the site will eventually find pages that haven't been converted."

The news comes weeks after Virgin America revealed it dropped Flash content from its new Web site in order to allow users with iPhones to check in for flights.

But the Journal and NPR are both also creating App Store software specifically for the iPad, suggesting that content providers are taking a multi-pronged approach to Apple's forthcoming multimedia device. Kinsey Wilson, head of digital media for NPR, declined to give Kafka an advance look at the organization's forthcoming iPad application or Web site, but did provide a hint as to what the experience could be like.

"Wilson says that while iPhone apps are a 'very intentional experience' --you load the thing up and seek out specific content -- he thinks the iPad will be a 'lean back device,'" Kafka wrote. "That's traditionally the distinction multimedia types use to differentiate between a computer and a TV. Intriguing."

The exclusion of Adobe Flash from the iPad and subsequent comments attributed to Apple co-founder Steve Jobs, in which he allegedly called the Web standard a "CPU hog," have led to a considerable amount of debate over its merits and shortcomings.

Contributing to the conversation in January was Google, which added support for rival format HTML5 to the most popular video destination on the Internet, YouTube. The beta opt-in program is available only for browsers that support both HTML5 and H.264 video encoding. Apple, too, has placed its support behind HTML5.

For more on why Apple isn't likely to add support for Flash in the iPhone OS, read AppleInsider's three-part Flash Wars series.



Tags: ipad  flash  web  apple  site  


 
 

Entertainment Blogs // BlogCatalog
(via - www.blogcatalog.com )
I read it on 03/08/10 at 08:32 PM
Posted on 03/09/10 at 01:31 AM

Shared by Kristopher
I love entertainment.

Entertainment Blogs

To learn more about one of the following Entertainment blogs, click on the blog's thumbshot image or the name of the blog. BlogCatalog features 15,475 Entertainment blogs for you to browse. Have a Entertainment blog that isn't part of the BlogCatalog Directory? Submit your blog to BlogCatalog.




Tags: entertainment  blog  blogcatalog  blogs  directory  
 
 

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  
 
 

Pulitzer Prizefighting
(via - Seth's Blog )
I read it on 03/06/10 at 09:02 AM
Posted on 03/06/10 at 10:36 AM

People are drawn to existing competitions like moths to a flame.

It's precisely the wrong way to succeed.

Lots of journalists take significant detours in their careers and their writing in order to win a Pulitzer. Maybe not to actually win one, but to be in that class, to have peers that have won one. Mystery novelists stick to the center of the road, because that's where the road is. Movies are written and released in order to win an Oscar. Once there's a category, a ranking, a place to battle for supremacy, we run for it.

Do you go to trade shows or enter markets or submit RFPs or push for a GPA or even gross ratings points because there's a list of winners or because it's what you actually want to do? Most bestseller lists and prizes measure popularity, not effectiveness.

I wonder if real art comes when you build the thing that they don't have a prize for yet.




Tags: win  order  actually  pulitzer  road  
 
 

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  
 
 

Training your man shouldn't be about a dictatorship
(via - Chicago Sun-Times :: Today's Columists :: )
I read it on 03/06/10 at 09:02 AM
Posted on 03/06/10 at 10:00 AM

The first time I saw the Dodge Charger Super Bowl commercial, "Man's Last Stand," I said, "finally!" The one-minute spot shows five men staring into space like zombies, while a narrator, in their voice, robotically runs down the chores they do and things they put up with.




Tags: staring  space  men  shows  spot  

 
 

Zynga Cofounder Andrew Trader Out
(via - TechCrunch )
I read it on 03/06/10 at 09:06 AM
Posted on 03/06/10 at 08:46 AM

One of the cofounders of Zynga, the company's executive vice president of sales and business development Andrew Trader, is no longer with the company, we've confirmed. He has been quietly removed from the company's management page. Remaining cofounders Mark Pincus, Michael Luxton, Eric Schiermeyer, Justin Waldron and Steve Schoettler, remain.

As of a month ago Trader's title had been downgraded to VP of Partnerships and Studio Services, although no top sales or business development replacement executive has yet been named.

Why is he gone? No one is saying. CEO Mark Pincus says only AT [Andrew Trader] and zynga have parted ways. He made an awesome contribution. We need to continue scaling the company. Trader hasn't yet returned a phone call asking for his comment.

Zynga's revenue growth has been nothing short of astronomical over the last 18 months, so it would be hard to blame him for not bringing in the dollars. Perhaps he took the fall for the Scamville saga although that has largely blown over now.

Trader was with Zynga nearly three years, so he's vested on a lot of his stock. Given how much money is at stake, the whole story about why the first cofounder of Zynga has left the building may never come out. Zynga raised $180 million in December 2009, at a rumored valuation of above $2 billion.

And no, I have no idea why he's holding a banana in the picture.





Tags: zynga  trader  company  andrew  crunchbase  
 
 

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  
 
 

Big City: $400 Hourly to Get Them Off the Sofa
(via - NYT > Business )
I read it on 03/06/10 at 09:10 AM
Posted on 03/06/10 at 04:20 AM

A new company in New York is offering coaching, at a price, for college graduates who are struggling to find a job.




Tags: college  price  graduates  struggling  job  
 
 
 
Next >|



 
 
Scratch   Archive All


  March 2010 (14)
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)