 |
|
 |
 |
 |
|
|
|
(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
|
| |
| |
|
|
|
|
|
|
(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. IndexDefinitionsConsumer: 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 codePull code from http://github.com/abraham/twitteroauthgit clone git://github.com/abraham/twitteroauth.git Process overviewThis is a very simplistic overview of authenticating with Twitter's OAuth. - Build TwitterOAuth object.
- Request tokens from twitter.
- Build authorize URL.
- Send user to Twitter's authorize URL.
- Get access tokens from twitter.
- Rebuild TwitterOAuth object.
- Query Twitter API with new access tokens.
ProcessFor 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. LinksMy website: http://abrah.amTwitter: http://twitter.comOAuth: http://oauth.netTwitter API docs: http://apiwiki.twitter.comTwitter API discussion: http://groups.google.com/group/twitter-development-talkFire Eagle OAuth docs: http://fireeagle.yahoo.net/developer/documentation/php_walkthru
Tags: twitter access token oauth key
|
|
| |
| |
|
|
|
|
|
|
(via -
Engadget ) I read it on 03/06/10 at 09:04 AM
Posted on 03/06/10 at 10:21 AM
|
|
|
|
|
|
(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
|
| |
| |
|
|
|
|
|
|
(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
|
| |
| |
|
|
|
|
|
|
(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
|
| |
| |
|
|
|
|
|
|
(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
|
|
| |
| |
|
|
|
|
|
|
(via -
Android Tapp ) I read it on 03/01/10 at 01:00 PM
Posted on 03/01/10 at 03:28 PM
|
|
|
|
|
|
(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 The 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.
 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.
 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.
 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.
 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.
 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)
Print Story Tags: android, apps, gaming, gmail, Google, google apps, google finance, Google Listen, Google Voice, iphone, List, Lists, Mobile 2.0
Tags: android google apps gmail app
|
| |
| |
|
|
|
|
|
|
(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
|
| |
| |
|
|
|
| |
|
|
|
|
|
|
|
|