<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
    <title>pdw.weinstein.org</title>
    <link rel="alternate" type="text/html" href="http://pdw.weinstein.org/" />
    
    <id>tag:pdw.weinstein.org,2009-03-05:/2</id>
    <updated>2010-03-13T21:39:25Z</updated>
    <subtitle>Pontifications on the Life Universe and Everything; News and commentary about the web, computers, politics, programming, webzines, travel, reading et. al. by Paul Weinstein</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.25</generator>

<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/pdweinstein" /><feedburner:info uri="pdweinstein" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>41.971614</geo:lat><geo:long>-87.702561</geo:long><entry>
    <title>Viddler API via Perl</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/-m8zf4TIUGs/viddler-api-via-perl.html" />
    <id>tag:pdw.weinstein.org,2010://2.221</id>

    <published>2010-03-13T18:56:01Z</published>
    <updated>2010-03-13T21:39:25Z</updated>

    <summary>Recently, while doing some consulting work, I started working with an new online video platform called Viddler. Much like YouTube, Viddler is a web application, built around videos, that allows one to upload and share on the web. However, unlike...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Development" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="opensource" label="Open Source" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="perl" label="Perl" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="programming" label="Programming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="viddler" label="Viddler" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="video" label="Video" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p&gt;Recently, while doing some consulting work, I started working with an new online video platform called &lt;a href="http://www.viddler.com/"&gt;Viddler&lt;/a&gt;. Much like YouTube, Viddler is a web application, built around videos, that allows one to upload and share on the web. 
&lt;br&gt;&lt;br&gt;
However, unlike YouTube, Viddler also provides a great deal of features for customization, from the skinning of the video player to the integration of the Viddler platform into customized web applications. The obvious advantage here for a business or organization is the ability to provide video content wrapped within their own branding or application without the expense of building and managing the huge computing infrastructure required for bandwidth and data storage.
&lt;br&gt;&lt;br&gt;
For example, checkout the &lt;a href="http://techtv.mit.edu/"&gt;MIT Tech TV&lt;/a&gt;, a video-sharing site for the MIT community built using Viddler.&lt;br&gt;&lt;br&gt;
Alas, while there is &lt;a href="http://developers.viddler.com/projects/api-wrappers/phpviddler/"&gt;plenty of support for the Viddler Application Programming Interface via PHP&lt;/a&gt;, which is what my consulting work is based in, the &lt;a href="http://developers.viddler.com/projects/api-wrappers/perlviddlerupload/"&gt;support for Perl is quite anemic&lt;/a&gt;. 
&lt;br&gt;&lt;br&gt;
To help rectify this dire situation, in my free time over the last week or so, I've been working on an Perl module that wraps around Viddler's API. The goal here is not only to provide a basic how-to, but a quick method for integrating Perl-based applications with Viddler. As such, I plan on having something more formal to submit, not only to &lt;a href="http://developers.viddler.com/projects/"&gt;Viddler's Project Directory&lt;/a&gt;, but to &lt;a href="http://www.cpan.org/"&gt;CPAN&lt;/a&gt; as well, in the near future.&lt;br&gt;&lt;br&gt;
With that in mind, here's the basic layout with a few implemented methods for guidance and testing:
&lt;/p&gt;
&lt;div style="margin 5px; padding: 10px; background-color: rgb(0, 0, 0); color: rgb(23, 240, 23);"&gt;
&lt;pre&gt;package Viddler;

use strict;
use warnings;

use LWP::Simple;
use XML::Simple;

our $VERSION = "0.01";

### To Do
#
# Complete support of all API methods
# Add SSL option for methods such as users_auth
# Validation/Error Handling of parameters/results 
#
#### 

=head1 NAME

Viddler - An encapsulation of the Viddler video platform in Perl

=head1 SYNOPSIS

use Viddler;
my $videos = new Viddler( apiKey =&amp;gt; $apiKey, 
			  username =&amp;gt; $username,
			  password =&amp;gt; $passwd,
			);

print "API Version: " .$videos-&amp;gt;api_getInfo(). "\n";

=head1 DESCRIPTION

This is an object-oriented library which focuses on pro diving Perl 
specific methods for accessing the Viddler video service via their 
API, as documented at: 
http://developers.viddler.com/documentation/api/

=head2 Methods

=head3 new

my $video = Viddler-&amp;gt;new( apikey =&amp;gt; $key, 
			  username =&amp;gt; $username, 
			  password =&amp;gt; $passwd );

Instantiates an object which established the basic connection to 
the API, including requesting and setting session id.

=cut

# The constructor of an object is called new() by convention.  
   
sub new {

	my ( $class, %args ) = @_;
	my $new = bless {
		_apiURL =&amp;gt; 'http://api.viddler.com/rest/v1/',
		_sessionID =&amp;gt; undef,
		_record_token =&amp;gt; undef,
		%args
	}, $class;

	# Get a sessionid
	$new-&amp;gt;users_auth;

	return $new;

}

=head3 users_auth

Gets and sets a sessionid for an authenticated Viddler account.
Returned sessionid is valid for 5 minutes (may change in the
future). Every method request which contains valid sessionid,
renews its validity time.

$video-&amp;gt;users_auth;

No required parameters. Will use username and password defined
at object's creation

Additional options parameters include: 

* get_record_token: If set to response will also include
recordToken

Returns 0 ( false ) if unsucessful and 1 ( true ) if sucessful

=cut

sub users_auth {

	my ( $self, $get_record_token ) = @_;

	my $xml = new XML::Simple;
	my $content = get $self-&amp;gt;{_apiURL}. 
		"?method=viddler.users.auth&amp;amp;api_key="
		.$self-&amp;gt;{apiKey}. "&amp;amp;user=" .$self-&amp;gt;{username}. 
		"&amp;amp;password=" .$self-&amp;gt;{password}. 
		"get_record_token=" .$get_record_token;
	my $results = $xml-&amp;gt;XMLin( $content );
	$self-&amp;gt;{_sessionID} = $results-&amp;gt;{'sessionid'};
	
	if ( defined $results-&amp;gt;{'get_record_token'} ) {

		$self-&amp;gt;{_recordToken} = $results-&amp;gt;{'record_toaken'};

	}

	if ( defined ( $self-&amp;gt;{_sessionID} )) {

		return 1;

	} else {

		return 0;

	}

}

=head3 api_getInfo

Gets and returns the current version of the Viddler API.

$video-&amp;gt;api_getInfo;

Returns current API version as a string

=cut

sub api_getInfo {

	my ( $self ) = @_;

	my $xml = new XML::Simple;
	my $content = get $self-&amp;gt;{_apiURL}. 
		"?method=viddler.api.getInfo&amp;amp;api_key=" 
		.$self-&amp;gt;{apiKey};
	my $results = $xml-&amp;gt;XMLin( $content );
	return $results-&amp;gt;{'version'};

}

=head3 videos_search

Gets and returns results of a search of Viddler videos and people.

$video-&amp;gt;videos_search( $type, $query, $page, $per_page );

Requires the following parameters:

* type: The type of search (e.g. "myvideos", 
"friendsvideos", "allvideos", "relevant", "recent", "popular",
 "timedtags", "globaltags". (The "timedtags" and "globetags"
sorting argument should be used in conjunction with an actual 
tag being given for the query argument.))

* query: What to search for (e.g. "iPhone", "Pennsylvania", or 
"Windows XP")

Additional options parameters include: 

* page: The "page number" of results to retrieve (e.g. 1, 2, 3).

* per_page: The number of results to retrieve per page (maximum 
100). If not specified, the default value equals 20.

Returns a hash of an array of search results

=cut

sub videos_search( $$ ) {

	my ( $self, $type, $query, $page, $per_page ) = @_;

	my $xml = new XML::Simple;
	my $content = get $self-&amp;gt;{_apiURL}. 
		"?method=viddler.videos.search&amp;amp;api_key=" 
		.$self-&amp;gt;{apiKey}. "&amp;amp;type=" .$type. 
		"&amp;amp;query=" .$query. "&amp;amp;page=" .$page. 
		"&amp;amp;per_age=" .$per_page. "&amp;amp;sessionid=" 
		.$self-&amp;gt;{_sessionID};
	my $results = $xml-&amp;gt;XMLin( $content );
	return $results;

}

=head3 videos_getByUser

Gets and returns a lists of all videos that were uploaded by the 
specified user.

$video-&amp;gt;videos_getByUser( $user, page, $per_page, $tags, $sort );

Requires the following parameters:

* user: The chosen Viddler user name. You can provide multiple 
coma separated viddler usernames

Additional options parameters include: 

* page: The of results to retrieve (e.g. 1, 2, 3).

* per_page: The number of results to retrieve per page (maximum 
100). If not specified, the default value equals 20.

* tags: The tags you would like to filter your query by.

* sort: How you would like to sort your query (views-asc, 
views-desc, uploaded-asc, uploaded-desc)

Returns a hash of an array of search results

=cut

sub videos_getByUser( $ ) {

	my ( $self, $user, $per_page, $page, $tags, $sort ) = @_;

	my $xml = new XML::Simple;
	my $content = get $self-&amp;gt;{_apiURL}. 
		"?method=viddler.videos.getByUser&amp;amp;api_key=" 
		.$self-&amp;gt;{apiKey}. "&amp;amp;sessionid=" 
		.$self-&amp;gt;{_sessionID}. "&amp;amp;user=" .$user. 
		"&amp;amp;page=" .$page. "&amp;amp;per_age=" .$per_page. 
		"&amp;amp;tags=" .$tags. "&amp;amp;sort=" .$sort;
	my $results = $xml-&amp;gt;XMLin( $content );
	return $results;

}

=head1 AUTHOR

Paul Weinstein pdw [at] weinstein [dot] org

=cut

1;
__END__
&lt;/pre&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;p&gt;And here's a little code to test the demo package:&lt;/p&gt;
&lt;div style="padding: 10px; background-color: rgb(0, 0, 0); color: rgb(23, 240, 23);"&gt;
&lt;pre&gt;#!/usr/bin/perl -T

use strict;
use warnings;

use Data::Dumper;
use Viddler;

my $videos = new Viddler( apiKey =&amp;gt; '1234567890abcdefghij', 
			  username =&amp;gt; 'username',
			  password =&amp;gt; 'password',
			);

print "API Version: " .$videos-&amp;gt;api_getInfo(). "\n";

my $searchResults = $videos-&amp;gt;videos_getByUser( "username", 
						"", "", 
						"test", "" );
print Dumper( $searchResults );
&lt;/pre&gt;&lt;/div&gt;
&lt;br&gt;Comments, suggestions or corrections are quite welcomed.
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/-m8zf4TIUGs" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/03/viddler-api-via-perl.html</feedburner:origLink></entry>

<entry>
    <title>Apple iPad Preorders Begin</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/W_kRZBs-k3c/apple-ipad-preorders-begin.html" />
    <id>tag:pdw.weinstein.org,2010://2.220</id>

    <published>2010-03-13T00:21:11Z</published>
    <updated>2010-03-12T18:30:34Z</updated>

    <summary>Apple is taking preorders for its highly anticipated iPad tablet via the company's web site.</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="iPhone" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ipad" label="iPad" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="iphone" label="iPhone" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/technology/article/apple-ipad-preorders-begin/"&gt;12th of March 2010&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;&lt;a href="http://pdw.weinstein.org/2010/03/ipad-sales-set-to-start-april-3.html"&gt;As announced last week&lt;/a&gt; Apple has begun &lt;a href="http://store.apple.com/us/browse/home/shop_ipad/family/ipad?mco=MTcyMTgwNjM"&gt;taking pre-orders from United States customers&lt;/a&gt; for its upcoming Wi-Fi and Wi-Fi + 3G model iPad.
&lt;br /&gt;&lt;br /&gt;
Customers are being limited to pre-ordering no more than two devices, but Apple is including free delivery where possible.
&lt;br /&gt;&lt;br /&gt;
The Wi-FI only model is due to beginning arriving in homes and stores on April 3rd while the Wi-Fi with 3G model iPad won't beginning shipping until sometime later in the month. Both the Wi-Fi and 3G models will be also become available in the U.K., Canada, France, Germany, Australia, Italy, Japan, Span and Switzerland late April.&lt;/p&gt;
&lt;p align="center"&gt;&lt;img src="http://pdw.weinstein.org/files/ipad.jpeg" alt="" /&gt;&lt;/p&gt;
The iPad starts at $499 for the 16GB model with Wi-Fi. Two additional Wi-Fi models are available with greater memory, $599 for 32GB and $699 for 64GB. 
&lt;br /&gt;&lt;br /&gt;
While the iPad will initially release with a updated version of what is known as the iPhone OS, &lt;a href="http://www.appleinsider.com/"&gt;AppleInsider&lt;/a&gt; is reporting that Apple is working on a major summer update that will &lt;a href="http://www.appleinsider.com/articles/10/03/11/apples_iphone_4_0_software_to_deliver_multitasking_support.html"&gt;introduce a multitasking solution&lt;/a&gt; of the mobile multitouch platform.
&lt;br /&gt;&lt;br /&gt;
Citing sources "with a proven track record in predicting Apple's technological advances" they report that development is in full swing, but that "the iPhone Software 4.0 remains under development and reportedly has a quite 'way to go' before it's ready for prime time."
&lt;br /&gt;&lt;br /&gt;
AppleInsider then goes on to speculate on some the issues Apple will need to address, including security, user experience, battery life and other optimize resource conservation issues before the feature is released.
&lt;br /&gt;&lt;br /&gt;
It is unclear if the given summer time-frame is from the reliable source or AppleInsider speculation. None the less, Apple annually holds its World Wide Developer Conference during the summer, and the past two years of the conference have brought refreshes of the iPhone OS.
&lt;br /&gt;&lt;br /&gt;
Meanwhile, not to be left behind, Microsoft made news this past week in regards to their own tablet-based computing initiatives. &lt;a href="http://www.engadget.com/"&gt;Engadget&lt;/a&gt; last week, shorty after Apple announced the iPad's April 3rd availability, &lt;a href="http://www.engadget.com/2010/03/05/microsofts-courier-digital-journal-exclusive-pictures-and-de/"&gt;broke with news&lt;/a&gt; from its "extremely trusted source" that Microsoft's Courier will be a folding 10x14 "digital journal" that is built on the Tegra 2 mobile processor and will run the same OS as the Zune HD, Pink, and Windows Mobile 7 Series smartphones.
&lt;br /&gt;&lt;br /&gt;
But while the iPad is the could-be hit of the summer, one will have to wait until fall or winter for the Courier.
&lt;br /&gt;&lt;br /&gt;
No matter what, it seems that in some form or another the must-have-gadget of 2010 is going to be a tablet.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;

&lt;div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"&gt;&lt;img style="border: medium none ; float: right;" class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=5de1551d-e76c-4419-a7e1-704ef42a1eb8" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/W_kRZBs-k3c" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/03/apple-ipad-preorders-begin.html</feedburner:origLink></entry>

<entry><title type="text">0324_016 [Flickr]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/7IaFsKXiAQY/" /><author><name>pdweinstein</name><uri>http://www.flickr.com/people/pdweinstein/</uri></author><updated>2010-03-05T21:40:02-08:00</updated><id>tag:flickr.com,2005:/photo/4409706523</id><content type="html">&lt;p&gt;&lt;a href="http://www.flickr.com/people/pdweinstein/"&gt;pdweinstein&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/pdweinstein/4409706523/" title="0324_016"&gt;&lt;img src="http://farm5.static.flickr.com/4055/4409706523_1ce38ebd66_m.jpg" width="240" height="180" alt="0324_016" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/7IaFsKXiAQY" height="1" width="1"/&gt;</content><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://farm5.static.flickr.com/4055/4409706523_2e685353d6_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken xmlns:dc="http://purl.org/dc/elements/1.1/">2010-03-05T23:40:02-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/pdweinstein/4409706523/</feedburner:origLink></entry><entry><title type="text">0324_011 [Flickr]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/-3xOZKlMS5s/" /><author><name>pdweinstein</name><uri>http://www.flickr.com/people/pdweinstein/</uri></author><updated>2010-03-05T21:39:57-08:00</updated><id>tag:flickr.com,2005:/photo/4409706433</id><content type="html">&lt;p&gt;&lt;a href="http://www.flickr.com/people/pdweinstein/"&gt;pdweinstein&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/pdweinstein/4409706433/" title="0324_011"&gt;&lt;img src="http://farm5.static.flickr.com/4026/4409706433_6e312a8eae_m.jpg" width="240" height="180" alt="0324_011" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/-3xOZKlMS5s" height="1" width="1"/&gt;</content><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://farm5.static.flickr.com/4026/4409706433_0bed9f8d73_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken xmlns:dc="http://purl.org/dc/elements/1.1/">2010-03-05T23:39:57-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/pdweinstein/4409706433/</feedburner:origLink></entry><entry><title type="text">0324_018 [Flickr]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/YE2U6yJS2_A/" /><author><name>pdweinstein</name><uri>http://www.flickr.com/people/pdweinstein/</uri></author><updated>2010-03-05T21:39:52-08:00</updated><id>tag:flickr.com,2005:/photo/4409706311</id><content type="html">&lt;p&gt;&lt;a href="http://www.flickr.com/people/pdweinstein/"&gt;pdweinstein&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/pdweinstein/4409706311/" title="0324_018"&gt;&lt;img src="http://farm5.static.flickr.com/4032/4409706311_691976522c_m.jpg" width="240" height="180" alt="0324_018" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/YE2U6yJS2_A" height="1" width="1"/&gt;</content><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://farm5.static.flickr.com/4032/4409706311_b1d3659793_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken xmlns:dc="http://purl.org/dc/elements/1.1/">2010-03-05T23:39:52-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/pdweinstein/4409706311/</feedburner:origLink></entry><entry><title type="text">0324_012 [Flickr]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/nPfk0L8J0Ac/" /><author><name>pdweinstein</name><uri>http://www.flickr.com/people/pdweinstein/</uri></author><updated>2010-03-05T21:39:49-08:00</updated><id>tag:flickr.com,2005:/photo/4410471972</id><content type="html">&lt;p&gt;&lt;a href="http://www.flickr.com/people/pdweinstein/"&gt;pdweinstein&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/pdweinstein/4410471972/" title="0324_012"&gt;&lt;img src="http://farm5.static.flickr.com/4039/4410471972_c0315dd631_m.jpg" width="240" height="180" alt="0324_012" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/nPfk0L8J0Ac" height="1" width="1"/&gt;</content><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://farm5.static.flickr.com/4039/4410471972_4d7def662f_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken xmlns:dc="http://purl.org/dc/elements/1.1/">2010-03-05T23:39:49-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/pdweinstein/4410471972/</feedburner:origLink></entry><entry><title type="text">0324_014 [Flickr]</title><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/MHgYK7zQkV4/" /><author><name>pdweinstein</name><uri>http://www.flickr.com/people/pdweinstein/</uri></author><updated>2010-03-05T21:39:46-08:00</updated><id>tag:flickr.com,2005:/photo/4409706179</id><content type="html">&lt;p&gt;&lt;a href="http://www.flickr.com/people/pdweinstein/"&gt;pdweinstein&lt;/a&gt; posted a photo:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.flickr.com/photos/pdweinstein/4409706179/" title="0324_014"&gt;&lt;img src="http://farm5.static.flickr.com/4044/4409706179_abdb11e8ac_m.jpg" width="240" height="180" alt="0324_014" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/MHgYK7zQkV4" height="1" width="1"/&gt;</content><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://farm5.static.flickr.com/4044/4409706179_7c07536648_o.jpg" length="0" type="image/jpeg" /><dc:date.Taken xmlns:dc="http://purl.org/dc/elements/1.1/">2010-03-05T23:39:46-08:00</dc:date.Taken><feedburner:origLink>http://www.flickr.com/photos/pdweinstein/4409706179/</feedburner:origLink></entry><entry>
    <title>iPad Sales Set to Start April 3</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/FC_VA6jFK0A/ipad-sales-set-to-start-april-3.html" />
    <id>tag:pdw.weinstein.org,2010://2.219</id>

    <published>2010-03-06T02:13:14Z</published>
    <updated>2010-03-06T02:19:33Z</updated>

    <summary>Pre-ordering for Apple's new mobile device will start March 12.</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ipad" label="iPad" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/technology/article/ipad-sales-set-to-start-april/"&gt;5th of March 2010&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
&lt;br /&gt;
Today &lt;a href="http://www.apple.com/pr/library/2010/03/05ipad.html"&gt;Apple has announced&lt;/a&gt; that their recently introduced iPad tablet will be available for purchase starting Saturday April 3.
&lt;br /&gt;&lt;br /&gt;
While this initial release will only include the Wi-Fi model in the Unites States, Apple is planning to have the Wi-Fi and Wi-Fi with 3G models available in the U.S., Australia, Canada, France, Germany, Italy, Japan, Spain, Switzerland, and the UK by late April.
&lt;br /&gt;&lt;br /&gt;
In addition to the products' availability in April, Apple will begin allowing customers in the U.S. to pre-order either model from Apple's online stores starting March 12.
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://pdw.weinstein.org/2010/01/apples-ipad-tablet-includes-cool-new-apps-and-features.html"&gt;Introduced in January&lt;/a&gt;, Apple announced to the world its evolution of the widely successful and innovative iPhone. The iPad weighs  1.5 pounds, has a 9.7-inch color display and a custom built dual CPU and graphics chip. The 16GB model, without a 3G radio but with Wi-Fi, will cost $499, and 32GB and 64GB models, also sans 3G, are priced $599 and $699, respectively. Models with 3G radios will cost an extra $130.
&lt;br /&gt;&lt;br /&gt;
While this latest announcement has finally set a firm date for the product's release, it is still to be seen how successful the initial release of the iPad will be. &lt;a href="http://www.appleinsider.com/articles/10/03/04/minor_delays_in_ipad_production_could_limit_apple_launch_to_200k.html"&gt;Recent rumors&lt;/a&gt; have suggested that Apple has run into  manufacturing issues that could limit the number of first available iPads to some 250,000 devices.
&lt;br /&gt;&lt;br /&gt;
While some issues should be expected with bringing a new device to market, the reliability of these rumors, which vary the severity of the issues being dealt with, cast some doubt on a smooth and orderly rollout for Apple's new mobile computing device.
&lt;br /&gt;&lt;br /&gt;
However, one thing is certain: no matter how many initial units will be made available for purchase on April 3, one can expect long lines of individuals camping out in front of their favorite Apple store the last week of March and every weekend in April.&lt;p&gt;&lt;/p&gt; 
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/FC_VA6jFK0A" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/03/ipad-sales-set-to-start-april-3.html</feedburner:origLink></entry>

<entry>
    <title>Old Programmers Don't Die, They Just Fade Away</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/Qz-uAJHG78c/old-programmers-dont-die-they-just-fade-away.html" />
    <id>tag:pdw.weinstein.org,2010://2.218</id>

    <published>2010-02-26T23:18:17Z</published>
    <updated>2010-02-26T23:38:26Z</updated>

    <summary>A few days ago I came across this Infoworld article entitled "The painful truth about age discrimination in tech" via Slashdot and have been wanting to comment on it ever since. While I have had no reason to cry foul...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Information Technology" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Management" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="programming" label="Programming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="reaction" label="Reaction" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p style="margin-bottom: 0in"&gt;A few days ago I came across this
&lt;a href="http://www.infoworld.com"&gt;Infoworld&lt;/a&gt; article entitled "&lt;a href="http://www.infoworld.com/d/adventures-in-it/painful-truth-about-age-discrimination-in-tech-209"&gt;The painful truth about age
discrimination in tech&lt;/a&gt;" via &lt;a href="http://www.slashdot.org"&gt;Slashdot&lt;/a&gt; and have been wanting to
comment on it ever since. While I have had no reason to cry foul
on any company I've ever interviewed for, I have to say most of the
issues certainly ring true to me. 
&lt;br /&gt;&lt;br /&gt;
One of the frustrations I feel a
lot of tech works have is how to communicate experience. Way too
often I fell I've talked to recruiters or HR personnel who are either
looking for an exact word-for-word match between the resume and the job
opening or, on the opposite end of the spectrum, are looking for just
one keyword to hit.
&lt;br /&gt;&lt;br /&gt;
Alas, it seems all too true that "hiring
managers are unable to map how 10 years of experience in one
programming language can inform or enhance a programmer's months of
experience with a newer technology."
&lt;br /&gt;&lt;br /&gt;
Which of course doesn't help when, in
the world of technology, the field is evolving at such a rapid pace,
with a huge focus on "The Next Big Thing". 
&lt;br /&gt;&lt;br /&gt;
True, writing &lt;a href="http://hoohoo.ncsa.illinois.edu/cgi/"&gt;CGI
scripts&lt;/a&gt; in &lt;a href="http://www.perl.org"&gt;Perl&lt;/a&gt; yesterday doesn't automatically translate to writing
custom modules in &lt;a href="http://www.joomla.org/"&gt;Joomla&lt;/a&gt;. But there is a road that gets a developer
from first writing a CGI script in Perl to learning &lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Object-oriented_programming" title="Object-oriented programming" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/object-oriented_programming" property="ctag:label"&gt;Object-Orientated&lt;/a&gt;
programming to understanding design patterns such as
&lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" title="Model-view-controller" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/model-view-controller" property="ctag:label"&gt;Model-View-Controller&lt;/a&gt; that does provide one with the basis for working with Joomla. 
&lt;br /&gt;&lt;br /&gt;
Luckily this is an issue that can be
taken care of with a little education. 
&lt;br /&gt;&lt;br /&gt;
More troubling for an experienced
developer is that "only 19 percent of computer science graduates
are still working in programming once they're in their early 40s." 
&lt;br /&gt;&lt;br /&gt;
Granted the source of that statistic is
a government study that's at least a decade old. But still, the high
turn-over I've experienced working in the tech industry - my
average is about 2 years at any given company - I can see many
individuals would take the break as motivation to look for something "better". Heck,
I've even felt it myself, having gone back to school for a Masters in
Business Administration at one point.&lt;br /&gt;&lt;br /&gt;
Invariably when talking about business,
a sports analogy tends to make an entrance. Sure enough, Inforworld's
article compares the IT industry to that of professional sports, "at
some point in those career arcs, the assets that made workers such
hot properties -- youth, the ability to devote lots of time to their
vocation, comparative inexperience -- diminish. And the marginal
utility of what's left -- experience -- is not as strongly valued."
&lt;br /&gt;&lt;br /&gt;Yet that of course is not true,
well at least it isn't true in professional sports. All you have to
do is think of all those managers, coaches and scouts, most of whom
at one time or another played the sport itself. Perhaps they never
made it to the "bigs" or they did, but found out that their
talent wasn't above average. Yet found a way to contribute, to use their experience as a way to give back
to the sport that gave them a job, as the saying goes. 
&lt;br /&gt;&lt;br /&gt;
Which begs the question, where are
those jobs, the managing, coaching or scouting positions in IT?&lt;/p&gt;


&lt;div class="zemanta-pixie" style="margin-top:10px;height:15px"&gt;&lt;img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=ba8d72c6-6869-433b-a0d4-20e122ddd0a1" style="border:none;float:right" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/Qz-uAJHG78c" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/02/old-programmers-dont-die-they-just-fade-away.html</feedburner:origLink></entry>

<entry>
    <title>Amazon Looking to Add Touchscreen to Kindle?</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/PKWPn-vrXG4/amazon-looking-to-add-touchscreen-to-kindle.html" />
    <id>tag:pdw.weinstein.org,2010://2.217</id>

    <published>2010-02-04T23:09:44Z</published>
    <updated>2010-02-04T23:05:10Z</updated>

    <summary>Amazon acquires small start up company Touchco, which specializes in touchscreen technology. What could this possibly mean?</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Development" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/technology/gadgets/article/amazon-looking-to-add-touchscreen-to/"&gt;3rd of February 2010&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;The&lt;i&gt; New York Times&lt;/i&gt; is reporting &lt;a href="http://www.nytimes.com/2010/02/04/technology/04amazon.html"&gt;that Amazon has acquired Touchco&lt;/a&gt;, a small New York-based start-up specializing in touchscreen technology and is planning to incorporate the company's six &lt;img src="http://static.technorati.com/10/02/03/4181/to-scale-nell-sm.-V244132763-.jpg" alt="" align="right" /&gt;employees and technology into its Kindle hardware division, named Lab126, which is located in California.&lt;/p&gt;
&lt;p&gt;Unlike Apple's touchscreen technology which has a limited number of touch points, Touchco's solution is reported to detect an unlimited amount of simultaneous touch points - which provides greater accuracy - as well as distinguish between different levels of pressure, at a cheaper cost.
&lt;br /&gt;&lt;br /&gt;
Of course &lt;a href="http://pdw.weinstein.org/technology/gadgets/article/apples-ipad-tablet-includes-cool-new/"&gt;last week Apple announced their latest creation: the iPad&lt;/a&gt;, a 10-inch tablet-style multi-touch device which will also include an new app called iBooks, a virtual bookshelf containing the user's personal collection of electronic books that can be purchased and read in a manner similar to music on an iPod. "If you've used iTunes or the App Store, you're already familiar with this," Jobs said.
&lt;br /&gt;&lt;br /&gt;
Currently, Amazon's Kindle, unlike Apple's iPad - which uses a more traditional technology to display colorful, interactive content - uses a different display technology known as &lt;a href="http://en.wikipedia.org/wiki/E_Ink"&gt;E Ink&lt;/a&gt;.
&lt;br /&gt;&lt;br /&gt;
E Ink is a specific proprietary type of electronic paper manufactured by the &lt;a href="http://www.eink.com/"&gt;company of the same name&lt;/a&gt;. While the principle advantage of E Ink is in its ultra-low power consumption and flexibility, it is only commercially available with a small color range (grayscale) and responsiveness, limiting the Kindle's content to mostly static content, such as novels.
&lt;br /&gt;&lt;br /&gt;
However, &lt;i&gt;Fast Company&lt;/i&gt;, in reporting &lt;a href="http://www.fastcompany.com/blog/kit-eaton/technomix/e-ink-buy-out-clears-path-color-kindle-2010"&gt;E Ink's merger with a much larger business partner last year&lt;/a&gt;, noted that the acquisition was designed "at speeding the development of color e-paper." At the time Amazon CEO Jeff Bezos was quoted as saying that a color Kindle was "multiple years" away, but &lt;i&gt;Fast Company&lt;/i&gt; went on note that E Ink's Vice President Sriram Peruvemba suggested that color displays would begin being available at the end of 2010.
&lt;br /&gt;&lt;br /&gt;
Of course Amazon has already moved to expand the appeal of its eReader, as last month it announced plans for an application store in hopes of getting outside developers to create the same array of programs that are now available for the iPhone and iPad.
&lt;br /&gt;&lt;br /&gt;
Given the &lt;a href="http://pdw.weinstein.org/technology/article/blog-focus-on-apples-next-tablet/"&gt;Apple and Google's&lt;/a&gt; "pole positions" in the hardware and software development of mobile technologies, could Amazon's Kindle be a dark-horse contender for our lazy Sunday afternoons?&lt;/p&gt; 

        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/PKWPn-vrXG4" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/02/amazon-looking-to-add-touchscreen-to-kindle.html</feedburner:origLink></entry>

<entry>
    <title>Contemplating the iPad</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/0PMqCyJq-sE/contemplating-the-ipad.html" />
    <id>tag:pdw.weinstein.org,2010://2.216</id>

    <published>2010-02-02T20:38:01Z</published>
    <updated>2010-02-02T21:41:15Z</updated>

    <summary>Now that the dust has settled a bit and everyone else has either praised or condemned Apple's latest hardware offering let us take a look at a few interesting points... The Beginning of the End Or The End of the...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="reaction" label="Reaction" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p style="margin-bottom: 0in"&gt;Now that the dust has settled a bit and
everyone else has &lt;a href="http://emergentbydesign.com/2010/02/01/699/"&gt;either praised or condemned&lt;/a&gt; Apple's latest hardware
offering let us take a look at a few interesting points...
&lt;br /&gt;&lt;br /&gt;
&lt;b&gt;The Beginning of the End Or The End
of the Beginning?&lt;/b&gt;
&lt;br /&gt;A number of people see the end of open,
multipurpose computing devices should the iPad find significant
traction, such as Jim Stogdill. While&amp;nbsp;&lt;a href="http://radar.oreilly.com/2010/01/the-ipad-is-the-iprius-your-co.html"&gt;comparing the iPad to an Toyota
Prius&lt;/a&gt;&lt;a class="sdfootnoteanc" name="sdfootnote1anc" href="#sdfootnote1sym"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&amp;nbsp;he lets known his fear that the closed hardware platform coupled with the
high barrier to entry (pay for software developer kit (&lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Software_development_kit" title="Software development kit" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/software_development_kit" property="ctag:label"&gt;SDK&lt;/a&gt;), wait for
approval) will significantly detour the next generation of
programmers from playing around and innovating.
&lt;br /&gt;&lt;br /&gt;
Yes, I am of the generation that
learned programming, first hand on Apple IIe. It is part of the reason
why Apple holds quite a hold on my attention. As a kid I playing with
the machine for hours at a time, learning what it could do thanks in
part to the built-in &lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/BASIC" title="BASIC" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/basic" property="ctag:label"&gt;BASIC programming language&lt;/a&gt;. Heck even as an
adult&amp;nbsp;&lt;a href="http://pdw.weinstein.org/2007/06/apple-hacking-for-fun-and-profit.html"&gt;I've found that old computing platform useful&lt;/a&gt;.
&lt;br /&gt;&lt;br /&gt;
However, I can't stop thinking, just
because transistor radios can't be easily fiddled with, didn't mean
&lt;a href="http://en.wikipedia.org/wiki/Homebrew_Computer_Club"&gt;people stopped fiddling about with electronics&lt;/a&gt;. Sure, there might be
a bit more &lt;a href="http://www.techdirt.com/articles/20070921/163030.shtml"&gt;ignorance about electronics&lt;/a&gt; in the general population than
my liking, but that's easy to take care of. I mean, I didn't take
auto maintenance in high school to become an auto mechanic. I took to
in part to prevent that high barrier to entry as a road block from getting the most out of my vehicle&lt;sup&gt;&lt;a class="sdfootnoteanc" name="sdfootnote2anc" href="#sdfootnote2sym"&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;br /&gt;&lt;br /&gt;
Moreover, the conditions that exists
today are by no means the end-all-be-all. When the Mac first came out
the SDK was priced quite high. Now a days it's free, anyone can start
playing around on a Mac by simply using the second DVD included with
OS X to install &lt;a href="http://en.wikipedia.org/wiki/Xcode"&gt;Xcode&lt;/a&gt;. Nor did the high entry point stop innovation,
I mean just look at &lt;a href="http://www.adobe.com/aboutadobe/history/"&gt;Adobe&lt;/a&gt;.
&lt;br /&gt;&lt;br /&gt;
Which of course brings me to the
overall point about the iPad, it might contain the DNA of what could be - being able to &lt;a href="http://www.appleinsider.com/articles/10/01/29/apple_reinventing_file_access_wireless_sharing_for_ipad.html"&gt;access content at anytime, from anywhere&lt;/a&gt; no
matter if that &lt;a href="http://pdw.weinstein.org/2010/01/apples-itablet-is-about-mobile-productivity.html"&gt;spreadsheet resides&lt;/a&gt; on your iPad, on your computer or
on a cloud - but that doesn't mean what it is
limited to now will also be true later.
&lt;br /&gt;&lt;br /&gt;
In fact, I would suggest that, as time
goes on Apple with open up the iPod/iPhone/iPad platform more
and more as new opportunities arise. That goes double for the iTunes
store.
&lt;br /&gt;&lt;br /&gt;
To take just one example, personally,
when I see my iPhone 3G pause for a handful of seconds just after it
receives new email in the background I'm glad Apple hasn't allowed
&lt;a href="http://en.wikipedia.org/wiki/Computer_multitasking"&gt;multitasking&lt;/a&gt; applications. From my vantage point the hardware is just
barely able to support one or two apps running at the same time, let
alone dozens.&lt;br /&gt;&lt;br /&gt;
&lt;b&gt;About That Hardware&lt;/b&gt;
&lt;br /&gt;After all that additional computing
power comes with a tradeoff, responsiveness and battery life.
&lt;br /&gt;&lt;br /&gt;
The two most power hungry elements of a
laptop are the LCD display and the CPU. A 10-inch screen requires
quite a bit of power just to keep the screen backlit and readable.
Require more computing power for something like multitasking and down
goes the battery life drastically. 
&lt;br /&gt;&lt;br /&gt;
So I'm not sure why people are
surprised that Apple has yet to enable multitasking given that the
iPad is reported to get 10 hours of battery-life. Plus, everyone who
has had time with the iPad thus far has commented on it &lt;a href="http://daringfireball.net/2010/01/ipad_big_picture"&gt;being wicked
fast&lt;/a&gt;. Again no doubt in part because of the lack of overhead required
for managing a dozen apps at once.  
&lt;br /&gt;&lt;br /&gt;
Apple has obviously made some key
decisions about what to focus on for the here and now.&amp;nbsp;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;Of course not a lot
is publicity known about the custom processor, but I'm sure Apple
will be using variations of the chipset in devices to come and has an
overall roadmap for the next few generations, leading us back to the
conclusion that it is probably only a matter of time until more
complex features such as multitasking make their way onto this
growing mobile platform.
&lt;br /&gt;&lt;br /&gt;
&lt;b&gt;What About the MacBook Air?&lt;/b&gt;
&lt;br /&gt;
Speaking about Apple's growing mobile
platform, has the iPad killed the &lt;a href="http://www.apple.com/macbookair/"&gt;MacBook Air&lt;/a&gt;? I mean I haven't heard
much from "the experts" about how the MacBook Air now fits into
Apple's overall strategy. 
&lt;br /&gt;&lt;br /&gt;
Sure some people are proclaiming &lt;a href="http://www.bytecellar.com/archives/000177.php"&gt;the
death of computing as we know it&lt;/a&gt; which should make one wonder,
where does the MacBook Air fit these days? 
&lt;br /&gt;&lt;br /&gt;
While I don't know for sure, it doesn't seem hard in hindsight to see the MacBook Air as an evolutionary branch of Apple's
long running development of tablet. Or for that matter as an
experiment: Are people looking for slim, fast, lightweight laptops,
such as what the Air represents or something different?
&lt;br /&gt;&lt;br /&gt;
Given that Apple last quarter sold
millions of iPhones and that while iPod sales are decreasing, iPod
touch sales &lt;a href="http://www.appleinsider.com/articles/10/01/25/notes_of_interest_from_apples_q1_2010_conference_call.html"&gt;were up 55 percent&lt;/a&gt; it isn't hard to spot the trend line of
where the market seems to be leading. 
&lt;br /&gt;&lt;br /&gt;
So given that Apple now has the
lightweight go anywhere category covered from the pocket-size mobile
device (iPod touch), a smartphone (iPhone) to the tablet (iPad) at
various price points as well as the more traditional laptops with the
MacBook and MacBook Pro, one has to wonder, what's going to happen to
the MacBook Air?&lt;/p&gt;
&lt;br /&gt;&lt;hr&gt;&lt;br /&gt;
&lt;div id="sdfootnote1"&gt;&lt;a class="sdfootnoteanc" name="sdfootnote2anc" href="#sdfootnote2sym"&gt;
	&lt;/a&gt;&lt;p class="sdfootnote"&gt;&lt;a class="sdfootnotesym" name="sdfootnote1sym" href="#sdfootnote1anc"&gt;1&lt;/a&gt; I
	have no idea why tech people love car analogies, but it seems to be
	the case. However can someone help me understand if the &lt;a href="http://www.tuaw.com/2009/09/03/new-york-times-calls-iphone-the-hummer-of-cellphones/"&gt;iPhone is
	the Hummer&lt;/a&gt; of smartphones how is an iPad a Prius? 
	&lt;/p&gt;
&lt;/div&gt;
&lt;div id="sdfootnote2"&gt;
	&lt;p class="sdfootnote"&gt;&lt;a class="sdfootnotesym" name="sdfootnote2sym" href="#sdfootnote2anc"&gt;2&lt;/a&gt; Ack, more stupid car analogies...&lt;/p&gt;
&lt;/div&gt;

&lt;div class="zemanta-pixie" style="margin-top:10px;height:15px"&gt;&lt;img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=fa65a2ad-be27-4042-a14f-57578928652f" style="border:none;float:right" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/0PMqCyJq-sE" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/02/contemplating-the-ipad.html</feedburner:origLink></entry>

<entry>
    <title>Apple's iPad Tablet Includes Cool New Apps and Features</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/870lutoVi4I/apples-ipad-tablet-includes-cool-new-apps-and-features.html" />
    <id>tag:pdw.weinstein.org,2010://2.214</id>

    <published>2010-01-27T20:58:21Z</published>
    <updated>2010-01-27T22:49:15Z</updated>

    <summary>Alongside their new mobile device, the iPad, Apple announced a couple of new applications and services specific for their new gadget.</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="ipad" label="iPad" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/technology/gadgets/article/apples-ipad-tablet-includes-cool-new/"&gt;27th of January  2010&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
            &lt;p&gt;Calling it "way better than a laptop, way better than a phone," Apple CEO Steve Jobs unveiled his company's long-awaited &lt;a href="http://www.apple.com/ipad/"&gt;iPad&lt;/a&gt; tablet-style multi-touch device Wednesday.&lt;/p&gt;
&lt;p&gt;The device weighs just 1.5 pounds, has a 9.7-inch color display and a custom built dual CPU and graphics chip. The 16GB model, without a 3G radio, but with Wi-Fi, will cost $499, 32GB and 64GB models, also sans 3G, are priced $599 and $699, respectively. Models with 3G radios will cost an extra $130.&lt;/p&gt;
&lt;p&gt;The WiFi-only models will be shipping in 60 days worldwide, while the 3G included models ship in 90 days.&lt;/p&gt;
&lt;p&gt;Alongside their new iPad dubbed tablet device, Apple introduced a number of iPad specific applications and service to enhance the productivity and usefulness of their new mobile device.&lt;/p&gt;
&lt;p&gt;Some of these new applications, such as an eReader for books and a mobile productivity suite have been circulating along side the tablet rumors itself for the past few months. Here is a quick run down on the new tablet's features:&lt;/p&gt;
&lt;p&gt;&lt;b&gt;iBooks&lt;/b&gt;&lt;br /&gt;

iBooks is an iPad specific app for reading books with the mobile device's color display, similar to Amazon's Kindle.&lt;/p&gt;
&lt;p&gt;Apple CEO Steve Jobs demonstrated the application, which features a virtual bookshelf containing the user's personal collection. Users can also sample a number of books, such as those available on the &lt;i&gt;New York Times&lt;/i&gt; bestseller list, before purchasing. From there, the books are downloaded and placed onto the iPad's virtual bookshelf for reading.&lt;/p&gt;
&lt;p&gt;"If you've used iTunes or the App Store, you're already familiar with this," Jobs said.&lt;/p&gt;

&lt;p&gt;Published content will initially include books from publishers HarperCollins, Penguin, Simon &amp;amp; Schuster, Macmillan and Hachette Book Group, with more to come over time.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;iWorks for iPad&lt;/b&gt;&lt;br /&gt;
Apple also announced a mobile, multi-touch version of iWorks, &lt;a href="http://pdw.weinstein.org/2010/01/apples-itablet-is-about-mobile-productivity.html"&gt;their productivity suite&lt;/a&gt;, that includes Numbers - a spreadsheet application, Pages - a word processing application - and Keynote a presentation application. &lt;/p&gt;
            &lt;p&gt;Phil Schiller, Apple's senior vice president of Worldwide Product Marketing, gave a hands-on demonstration of the new iWork which provides users with the ability to work on important documents on the go.&lt;/p&gt;
&lt;p&gt;The three applications will be available for download from the iPad App Store for $9.99 each. &lt;/p&gt;
&lt;p&gt;&lt;b&gt;Cellular Service&lt;/b&gt;&lt;br /&gt;
While Apple CEO Steve Jobs said there are no international plans to reveal yet, the company did make an announcement about US availability. Specifically, Apple is continuing its partnership with AT&amp;amp;T, which will offer two data plans for the iPad; 14.99 for a limited 250MB data plan, and a $29.99 unlimited plan with free access to AT&amp;amp;T's nationwide Wi-Fi hotspots.&lt;/p&gt;
&lt;p&gt;Moreover, while the data plans, as announced, are limited to AT&amp;amp;T, the data plans themselves are contract-free and can be purchased -- or canceled -- at any time directly from the iPad.&lt;/p&gt;

&lt;p&gt;However the 3G-enabled version of the iPad does increase the base cost of the iPad itself, starting at $629.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;TV Subscription&lt;/b&gt;&lt;br /&gt;
One rumor that didn't come true was a TV subscription plan in which people could watch all their favorite TV shows for a flat $30-per-month fee on the iPad. &lt;/p&gt;
&lt;p&gt;According to &lt;i&gt;&lt;a href="http://www.nytimes.com/2010/01/26/technology/26apple.html?pagewanted=2&amp;amp;partner=rss&amp;amp;emc=rss"&gt;The New York Times&lt;/a&gt;&lt;/i&gt; and &lt;a href="http://www.appleinsider.com/articles/10/01/26/tablet_rumors_tv_subscription_talks_stall_verizon_preps_for_big_day.html"&gt;AppleInsider&lt;/a&gt;, a number of networks passed on Apple's proposed plans. In fact, Apple has had a rocky relationship with a few networks, including NBC-Universal, which at onetime pulled all its content from Apple's iTunes Store. &lt;/p&gt;
&lt;p&gt;Now that national cable provider Comcast owns NBC, relations may become even more strained as Comcast's perspective of alternative distributions methods, such as iTunes, are viewed as a threat to the company's core business. &lt;/p&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/870lutoVi4I" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/01/apples-ipad-tablet-includes-cool-new-apps-and-features.html</feedburner:origLink></entry>

<entry>
    <title>The Long Road Ahead for Apple's Tablet</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/FKoGJGp1QRg/the-long-road-ahead-for-apples-tablet.html" />
    <id>tag:pdw.weinstein.org,2010://2.213</id>

    <published>2010-01-26T20:59:20Z</published>
    <updated>2010-01-26T21:04:53Z</updated>

    <summary> First published: 26th of January 2010 for Technorati Apple is set to announce a "major new product" tomorrow, according to CEO Steve Jobs. Most anticipate the new product to be a mobile, tablet-like computing device, something akin to an...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/technology/article/the-long-road-ahead-for-apples/"&gt;26th of January  2010&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
Apple is set to announce a "major new product" tomorrow, according to CEO Steve Jobs. Most anticipate the new product to be a mobile, tablet-like computing device, something akin to an iPhone's bigger brother. So meaningful is the new device that Apple's outspoken CEO &lt;a href="http://www.appleinsider.com/articles/10/01/26/steve_jobs_apple_tablet_the_most_importing_thing_ive_ever_done.html"&gt;has reportedly said&lt;/a&gt; that the tablet "will be the most important thing I've ever done." &lt;br /&gt; 
&lt;br /&gt; 
Yet chances are most people won't see Apple tablets in everyday use until sometime next year at the earliest, if recent history is any guide.&lt;br /&gt; 
&lt;br /&gt; 
That's not to suggest the tablet will fail to be successful. It's kind of hard to make major pronouncements about a device that has yet to be unveiled.&lt;br /&gt; 
&lt;br /&gt; 
However, consider  when Apple announced its equally anticipated iPhone in January  2007. The total number of cellphones sold worldwide in the first three months that year amounted to  &lt;a href="http://www.physorg.com/news96431595.html"&gt;256.4 million units&lt;/a&gt;. Yet when the iPhone was finally available in June of that year, Apple and AT&amp;amp;T sold a small fraction of that: just under 1.4 million  for the final six months of 2007. &lt;br /&gt; 
&lt;br /&gt; 
Now, 270,000  of those sales &lt;a href="http://www.brighthand.com/default.asp?newsID=13208"&gt;were  in the first 36 hours of availability&lt;/a&gt;, making for a successful launch to be sure, but it also made the iPhone a highly rare device. In fact, the iPhone didn't become as widely visible in everyday life  until the fall of 2008, after Apple released the updated iPhone 3G model which has &lt;a href="http://en.wikipedia.org/wiki/IPhone"&gt;since sold some 36 million times worldwide&lt;/a&gt;.&lt;br /&gt; 
&lt;br /&gt; 
Or consider Apple's near-ubiquitous iPod. When first released in the fall of 2001, they were only compatible with Apple's Mac computers and &lt;a href="http://en.wikipedia.org/wiki/Ipod#Sales"&gt;was sold only 376,000 times in 2002&lt;/a&gt;. Not until the fourth generation iPod in 2005 did Apple sell some 22 million units, transforming the iPod to into the cultural icon it is today. &lt;p&gt;&lt;/p&gt; 
&lt;br /&gt; 
&lt;p align="center"&gt; 
&lt;img src="http://static.technorati.com/10/01/26/3733/500px-Ipod-sales-per-quarter.svg.png" alt="" /&gt;&lt;br /&gt;&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/File:Ipod_sales_per_quarter.svg"&gt;iPod Sales According to Wikipedia&lt;/a&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;
All of this might explain why Apple is rumored to first be focusing the new tablet as a family media device rather than a personal media device, according to a &lt;a href="http://online.wsj.com/article/SB10001424052748703405704575015362653644260.html"&gt;Wall Street Journal article last week&lt;/a&gt;. "Apple focused on the role the gadget could play in homes and in classrooms," the WSJ reported, envisioning "that the tablet can be shared by multiple family members to read news and check email in homes."&lt;br /&gt; 
&lt;br /&gt; 
In other words, no matter how revolutionary Apple's new product may be, it will likely take time, even after the initial buzz and availability, until the iTablet -- or whatever Apple choose to name it -- will become a household word. &lt;/p&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/FKoGJGp1QRg" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/01/the-long-road-ahead-for-apples-tablet.html</feedburner:origLink></entry>

<entry>
    <title>Apple's iTablet is About Mobile Productivity</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/HrAQy-Adspc/apples-itablet-is-about-mobile-productivity.html" />
    <id>tag:pdw.weinstein.org,2010://2.212</id>

    <published>2010-01-19T17:52:08Z</published>
    <updated>2010-01-19T18:39:03Z</updated>

    <summary>Now that Apple has officially sent out invitations to various members of the media to "Come see our latest creation" next week, January 27th, at the Yerba Buena Center for the Arts in San Francisco, let us consider what exactly that creation will be.</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="google" label="Google" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="iphone" label="iPhone" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="microsoft" label="Microsoft" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p style="margin-bottom: 0in"&gt;Now that Apple has o&lt;a href="http://www.appleinsider.com/articles/10/01/18/apple_confirms_jan_27_media_event_to_show_off_latest_creation.html"&gt;fficially sent out
invitations&lt;/a&gt; to various members of the media to "Come see our latest
creation" next week, January 27&lt;sup&gt;th&lt;/sup&gt;, at the &lt;a href="http://www.ybca.org/"&gt;Yerba Buena
Center for the Arts&lt;/a&gt; in San Francisco, let us consider what exactly
that creation will be.&lt;/p&gt;
&lt;img alt="jan27-100118.jpg" src="http://pdw.weinstein.org/files/jan27-100118.jpg" width="304" height="206" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /&gt;&lt;p align="center"&gt;&lt;i&gt;Apple's Invite&lt;/i&gt;&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;b&gt;iTablet&lt;/b&gt;&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;iTablet, iSlate, uSlate, whatever the
name affixed to the device will be Apple will most certainly be rolling
out a tablet-sized mobile computing device. For the most part I agree
with tech-writer &lt;a href="http://ihnatko.com/"&gt;Andy Ihnatko&lt;/a&gt; in &lt;a href="http://www.suntimes.com/technology/ihnatko/1980077,ihnatko-apple-tablet-microsoft-010710.article"&gt;terms of the devices hardware
configuration&lt;/a&gt;, will have data access via WiFi and cellular, 10''
multitouch screen, a solid state drive (SSD) - but I think it will
be of a larger capacity than 32 GB), et al.&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;I also agree, for the most part, on
Andy's comments about functionality. The UI will be designed for the
issues of carrying and working with a 10'' slab of computing hardware
- on the go - "Think about how a user interface would have to
incorporate those observations. Now imagine that you've been doing
this experiment for four years and not four minutes. That's a very
long list of observations. If you didn't come up with a workable
solution, don't worry: I think Apple has", after all Apple has
been applying for a number of patents over the years on this very issue.  
&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;&lt;/p&gt;

&lt;span class="mt-enclosure mt-enclosure-image" style="display: inline;"&gt;&lt;a href="http://pdw.weinstein.org/files/patentlyapple.jpg"&gt;&lt;img alt="patentlyapple.jpg" src="http://pdw.weinstein.org/assets_c/2010/01/patentlyapple-thumb-400x236-281.jpg" width="400" height="236" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;p align="center"&gt;From &lt;a href="http://www.patentlyapple.com/patently-apple/2010/01/apple-the-tablet-prophecies.html"&gt;&lt;/a&gt;Patently Apple's &lt;a href=""&gt;Apple: The Tablet Prophecies&lt;/a&gt;

&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;Ok fine, but what exactly will it do?
What will you need it for?&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Well, I'm glad you asked, because those
are very important questions, as &lt;a href="http://www.appleinsider.com/articles/10/01/15/the_inside_track_on_apples_tablet_a_history_of_tablet_computing.html&amp;amp;page=1"&gt;AppleInsider recently noted&lt;/a&gt;. In the
long history of hand-held sized computing, there is a very short list
of market-wins, &lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Personal_digital_assistant" title="Personal digital assistant" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/personal_digital_assistant" property="ctag:label"&gt;PDAs&lt;/a&gt;, such as the Palm Pilot, MP3 devices such as the
iPod and smartphones, such as the Blackberry. 
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;That is it.&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Apple's &lt;a href="http://en.wikipedia.org/wiki/Newton_(platform)"&gt;Newton&lt;/a&gt; was an amazing
technology for the time, but was oversized and overpriced as a
personal organizer. &lt;a class="zem_slink rdfa" href="http://www.microsoft.com" title="Microsoft" rel="ctag:means homepage" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/microsoft" property="ctag:label"&gt;Microsoft&lt;/a&gt;'s Tablet PC never really got the
third-party software support it need for the form factor to find a
home&lt;a class="sdfootnoteanc" name="sdfootnote1anc" href="#sdfootnote1sym"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;
and as AppleInsider recounts history's trash-bin is littered with
companies and devices that never even made it that far into the
public conciseness. 
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;So as history as our guide, for it to
make its way in the world, Apple's iTablet will need to definitely
answer the question, what can I use it for?&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Well let us consider the key feature of
Apple's other &lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Mobile_device" title="Mobile device" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/handheld_device" property="ctag:label"&gt;hand-held devices&lt;/a&gt;:&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;p style="margin-bottom: 0in"&gt;iPod is for Entertainment - First
	for music on the go, followed by video on the go (watching video first, now watching and shooting video) and games (with the iPod Touch)&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;&lt;/p&gt;
	&lt;/li&gt;&lt;li&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;a class="zem_slink rdfa" href="http://www.apple.com/iphone" title="iPhone" rel="ctag:means homepage" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/en/iphone" property="ctag:label"&gt;iPhone&lt;/a&gt; is for Communication -
	Yes of course there is an App for that, but even before the App
	store the iPhone was about communication: Voice, Text (Email, SMS)
	and Web 
	&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;So the iTablet will be about ...
Productivity!&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;But wait, I hear, what about those
rumors about print publication and eReaders? And, I hear you say you already have a
mobile device for productivity, your laptop?&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Why yes, a laptop is for
productivity on the go, and Apple is looking to redefine what a mobile
productivity device is.&amp;nbsp;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;Consider, what are the problems with using
a laptop? It's heavy and cumbersome to carry, doesn't have access to
cellular networks by default and it takes a long time to start up and
be, well productive.  
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;An iPhone on the only hand is always
on, not just always turned on, but always connected. Your on the
road, you get an important email and presto, your at work.&amp;nbsp;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-bottom: 0in"&gt;But wait,
that email has an attachment, and 10 sheet spreadsheet and oh,
bother this graph is completely wrong and oh, look the formula is off
and, well guess you'll have to boot up your latptop now while you
wait for your airplane. Good luck finding a power outlet that hasn't
already be staked out by some other traveler.&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;But if you take the strengths of the
laptop with that of the iPhone, well you get one hell of a productive device.&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;This is nothing short of revolution!
This is, after all, Steve Jobs' Apple!&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Oh and that eReader stuff, that will
just be some App available in the App store. After all the iPhone was
not only built on the success of the iPod, but incorporated the iPod's key functionality as a secondary feature. The iTablet's secondary
feature, you'll be able to purchase and run third-party iPhone and
iTablet-specific apps too.  
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;b&gt;In The Pudding&lt;/b&gt;&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Granted this is speculation, my
interpenetration of the various rumors that have been circulating
over the years. 
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;If your looking for proof of this
interpretation, I can't offer you any, at the moment. I can however
point to two interesting side rumors, that Apple has been working on
a &lt;a href="http://www.appleinsider.com/articles/09/12/27/apple_recruiting_talent_for_iworks_transition_to_the_cloud.html"&gt;new, web-based version of their productivity suite iWork&lt;/a&gt; and that
they recently &lt;a href="http://www.appleinsider.com/articles/09/06/03/north_carolina_greets_apple_and_1_billion_server_farm_project.html"&gt;contracted to build a new data center in North Carolina&lt;/a&gt; to support growing web-based "cloud computing".&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;Oh, and recall that Apple has recently reduce the number of laptops it sells.&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;That and of course &lt;a href="http://pdw.weinstein.org/2009/11/googles-chrome-os-in-2010.html"&gt;Google's netbook
running Chrome&lt;/a&gt; and their web-based &lt;a class="zem_slink rdfa" href="http://docs.google.com" title="Google Docs" rel="ctag:means homepage" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://cb.semsol.org/product/google-docs.rdf#self" property="ctag:label"&gt;Google Docs&lt;/a&gt; suite and well, if
Apple announces a new, distributed version of iWorks next
week alongside their shinny new tablet, I say, there is your proof that things are about to get very interesting...
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;/p&gt;&lt;hr&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p style="margin-bottom: 0in"&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;div id="sdfootnote1"&gt;
	&lt;p class="sdfootnote"&gt;&lt;a class="sdfootnotesym" name="sdfootnote1sym" href="#sdfootnote1anc"&gt;1&lt;/a&gt; Not
	wishing to give up on anything, Microsoft, at CES, released
	alongside HP their "Slate PC", which represents - I suppose on
	how and what your counting - Microsoft's third attempt at
	tablet-like computing. Once upon a time the knock on Microsoft was
	they needed three revision to get something right - think Windows
	3.1 - for marketplace&amp;nbsp;success. So I suppose one should keep an eye on their
	Microsoft now...&lt;/p&gt;
&lt;/div&gt;


&lt;div class="zemanta-pixie" style="margin-top:10px;height:15px"&gt;&lt;img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=6bb0c7bc-dda6-4335-844f-50b42ce5d19b" style="border:none;float:right" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/HrAQy-Adspc" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/01/apples-itablet-is-about-mobile-productivity.html</feedburner:origLink></entry>

<entry>
    <title>Mark McGwire Admits To Steroid Use</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/wb3OCTlt0wY/mark-mcgwire-admits-to-steroid-use.html" />
    <id>tag:pdw.weinstein.org,2010://2.210</id>

    <published>2010-01-12T15:05:22Z</published>
    <updated>2010-01-12T15:15:33Z</updated>

    <summary>Few were surprised to find baseball great Mark McGwire used steroids to break baseball records. But why come clean now?</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
    <category term="baseball" label="baseball" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/sports/article/mark-mcgwire-admits-to-steroid-use/"&gt;11th of January  2010&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Mark McGwire today &lt;a href="http://www.usatoday.com/sports/baseball/2010-01-11-mcgwire-statement_N.htm"&gt;released a statement&lt;/a&gt; to The Associated Press that he did in fact use steroids during his 15 year professional playing career in baseball, including his single-season home run record 1998 season.
&lt;br /&gt;&lt;br /&gt;
Heavy speculation that McGwire used steroids or human growth hormone has followed him almost since that very same record breaking season.
&lt;br /&gt;&lt;br /&gt;
McGwire and fellow former Oakland Athletics team member Jose Canseco, along with New York Yankess's Alex Rodriguez and Andy Pettitte have publicly admitted to using steroids during their recent playing careers. With many other suspected players including Barry Bonds, Roger Clemens, Sammy Sosa and David Ortiz being implicated in the past, baseball been forced to toughen its drug program twice in the past five years. Prior to the 2004 season, baseball had no mandatory testing program for active players.
&lt;br /&gt;&lt;br /&gt;
"Baseball is really different now -- it's been cleaned up," McGwire said. "The commissioner and the players' association implemented testing and they cracked down, and I'm glad they did."
&lt;br /&gt;&lt;br /&gt;
McGwire's statement comes on the heels of his appointment as a hitting coach for his former team, "Now that I have become the hitting coach for the St. Louis Cardinals, I have the chance to do something that I wish I was able to do five years ago."
&lt;br /&gt;&lt;br /&gt;
But, with his public admission to using steroids, McGwire refocuses the open question in baseball, what to do about the players, known and suspected and their playing records? 
&lt;br /&gt;&lt;br /&gt;
Should players such as McGwire be eligible for the Baseball Hall of Fame? Or even be allowed to work in baseball at all?
&lt;br /&gt;&lt;br /&gt;
Since baseball has not outright banned players who have tested positive for or have admitted to using steroids McGwire is indeed still eligible to work in baseball as well as be included in the Hall of Fame.
&lt;br /&gt;&lt;br /&gt;
In fact McGwire &lt;a href="http://mlb.mlb.com/news/article.jsp?ymd=20100107&amp;amp;content_id=7887668"&gt;recently received 23.7% of the vote &lt;/a&gt;among baseball writers for inclusion into the Hall in 2010. While that vote total is well shy of the 75% needed for induction, McGwire obviously has some people pulling for him, including&lt;a href="http://www.usatoday.com/sports/baseball/nl/cardinals/2010-01-07-adam-wainwright-mark-mcgwire_N.htm"&gt; St. Louis Cardinals pitcher Adam Wainwright&lt;/a&gt;, "they [McGwire and Sosa] did more than just hit home runs, they brought fans back, they brought baseball back," Wainwright said, "There's people in the Hall of Fame who have done much worse."
&lt;br /&gt;&lt;br /&gt;
While it remains to be seen if McGwire or any other "steroid-era" player will make it into the Hall of fame, the fact that McGwire has admitted to and now has a chance to watch out for the use of steroids will be closely watched over the coming season. 
&lt;br /&gt;&lt;br /&gt;
Hall of Fame or not, changes are fans of baseball will take recent assertion to heart. When asked if he felt that players of this era should have an asterisk by there name if voted into the Hall, &lt;a href="http://latimesblogs.latimes.com/sports_blog/2010/01/hall-of-fame-hank-aaron-barry-bonds-mark-mcgwire-pete-rose.html"&gt;Hank Aaron, a Hall of Famer himself, replied&lt;/a&gt; "If they're guilty that's what you should do," Aaron said. "If they're guilty they should come in with that because that, from what we gather, is part of why the record is where it is."&lt;/p&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/wb3OCTlt0wY" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2010/01/mark-mcgwire-admits-to-steroid-use.html</feedburner:origLink></entry>

<entry>
    <title>Y2K, C2Net, HKS and Red Hat</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/hnVWvuBg0Vk/y2k-c2net-hks-and-red-hat.html" />
    <id>tag:pdw.weinstein.org,2009://2.209</id>

    <published>2009-12-31T16:25:57Z</published>
    <updated>2009-12-31T17:27:11Z</updated>

    <summary>In November of 1999 I had over a year of work as a professional programmer under my belt working for C2Net Software. It had been a bit of a bumpy ride, by the end of 1999 I had already been...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Management" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Red Hat" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apache" label="Apache" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="business" label="Business" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="c2net" label="C2Net" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="history" label="History" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="linux" label="Linux" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="opensource" label="Open Source" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="redhat" label="Red Hat" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p style="margin-bottom: 0in;"&gt;In November of 1999 I had over a  year
of work as a professional programmer under my belt working for &lt;a property="ctag:label" resource="http://rdf.freebase.com/ns/en/c2net" typeof="ctag:Tag" xmlns:ctag="http://commontag.org/ns#" class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/C2Net" title="C2Net" rel="ctag:means wikipedia"&gt;C2Net&lt;/a&gt;
Software. It had been a bit of a bumpy ride, by the end of 1999 I had
already been hired, laid-off, hired as a consultant and rehired as an
employee. 
&lt;br /&gt;&lt;br /&gt;
Given the personal struggle and the
fact that I worked for an "Internet company", I had a bit of
remote detachment about &lt;a href="http://en.wikipedia.org/wiki/Y2k"&gt;Y2K&lt;/a&gt;. But by November 1999, even C2Net was in
the mist of Y2K preparations, internally and externally. 
&lt;br /&gt;&lt;br /&gt;
Externally plenty of customers had, as
part of their own Y2K compliance efforts, started seeking us out long
before November to verify that our main product, the Stronghold Web
Server, was Y2K safe.  The concern being that  plenty of elements
about managing web traffic require proper handling of date and time
information, from the underlying network protocols to creation of
unique session identifiers. The good news was that Stronghold, was a packaged and commercially distributed version of
the &lt;a property="ctag:label" resource="http://rdf.freebase.com/ns/en/apache_http_server" typeof="ctag:Tag" xmlns:ctag="http://commontag.org/ns#" class="zem_slink rdfa" href="http://httpd.apache.org/" title="Apache HTTP Server" rel="ctag:means homepage"&gt;Apache Web Server&lt;/a&gt;, which was indeed Y2K compliant, thanks to its
many developers.
&lt;br /&gt;&lt;br /&gt;
While most customers went away content
with a signed letter of compliance, I remember our Sales and
Marketing VP asking me if I wanted to go to NYC on behalf of client
and be available if anything went wrong. Basically, since Stronghold
was in the clear and any web application the system was running would
have been outside of our domain - I was being asked if I wanted an
all expense paid trip from San Francisco to New York City to
witnesses the ball drop in Time Square for the new millennium&lt;a class="sdfootnoteanc" name="sdfootnote1anc" href="#sdfootnote1sym"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;.
Naturally, I declined&lt;a class="sdfootnoteanc" name="sdfootnote2anc" href="#sdfootnote2sym"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;.
&lt;br /&gt;&lt;br /&gt;
Internally, the biggest worry I had was
dealing with our online credit card processing system. First off, the
virtual terminal program we had was running on Windows 98, which
itself was not Y2K compliant.
&lt;br /&gt;&lt;br /&gt;
However, the bigger problem was the
credit card processing software, &lt;a href="ttp://www.google.com/search?hl=en&amp;amp;q=icverify"&gt;ICVerify&lt;/a&gt;. Today there are plenty of
solutions for processing credit card purchases, in real-time, online,
from do it yourself solutions such as MainStreet Softworks' &lt;a href="http://www.monetra.com/"&gt;Monetra&lt;/a&gt;
to all-in-one solutions such as &lt;a href="http://en.wikipedia.org/wiki/Google_Checkout"&gt;Google's Checkout.&lt;/a&gt; But in 1999, while
a number of &lt;a href="http://en.wikipedia.org/wiki/Virtual_terminal"&gt;virtual terminal&lt;/a&gt; solutions, such as ICVerify existed, for
processing credit cards "by hand", few solutions existed for
processing credit cards automatically, online.
&lt;br /&gt;&lt;br /&gt;
In fact the only reason C2Net's system
did real time transaction&lt;a class="sdfootnoteanc" name="sdfootnote3anc" href="#sdfootnote3sym"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;
was because ICVerify had been hacked in such as way as to process
transactions via a secured network connection. The best part of the
situation, like many other Y2K issues, was that the person(s) who had
created the "solution" no longer worked for the company, as
everyone at the company had been adversely affected by the previous
year's corporate turmoil, as I had. 
&lt;br /&gt;&lt;br /&gt;
Patching Windows 98 would hardly solve
the problem and since no one with the company  understood the
ICVerify hack completely, it was unknown if patching it would
adversely affect our main method for selling Stronghold within the
United States. 
&lt;br /&gt;&lt;br /&gt;
Given that Stronghold was a
commercially distributed version of Apache and Apache at that time
was built for Unix (POSIX) based systems, the main requirement,
besides real-time processing, was the ability to run along with our
custom ecommerce system built using &lt;a property="ctag:label" resource="http://rdf.freebase.com/ns/en/freebsd" typeof="ctag:Tag" xmlns:ctag="http://commontag.org/ns#" class="zem_slink rdfa" href="http://www.freebsd.org/" title="FreeBSD" rel="ctag:means homepage"&gt;FreeBSD&lt;/a&gt;, Stronghold and PHP. That
left us with one viable solution, Hell's Kitchen's&lt;a class="sdfootnoteanc" name="sdfootnote4anc" href="#sdfootnote4sym"&gt;&lt;sup&gt;4&lt;/sup&gt;&lt;/a&gt;
(HKS) &lt;a href="http://en.wikipedia.org/wiki/CCVS"&gt;CCVS&lt;/a&gt;. 
&lt;br /&gt;&lt;br /&gt;
By December of 1999 I had already
identified CCVS as our would-be solution, to the point that I had
actually purchased it on behalf of C2Net and had started developing
the replacement credit card processing solution. Doing so had me in
contract with a couple of primary individuals at HKS, including the
founder, &lt;a href="http://www.linkedin.com/pub/todd-masco/0/290/102"&gt;Todd Masco&lt;/a&gt;, who must of had his hands full with a few other
people, such as myself, rushing to replace their credit card
processing systems before the new year. Despite that I don't recall
not being able to reach Todd or Doug DeJulio when needed. 
&lt;/p&gt;
&lt;br /&gt;&lt;p align="center"&gt;&lt;img src="http://pdw.weinstein.org/files/rh_share.jpeg" alt="Last Remaining Share" lengh="302px" width="375px" /&gt;&lt;br /&gt;&lt;i&gt;Last Remaining Share
&lt;/i&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;That in and of itself endeared me to
HKS, but little did I know at the time that wasn't going to be the
half of it. While I recall missing the end of the year deadline for
getting our new payment system operational by a week (or so), I
was hardly in the thick of it. In fact, if anything Todd, Doug and
HKS had most certainly had it much worst. For besides the presumed
end of the millennium rush to update transaction systems across the
nation, in the first week of 2000 the &lt;a href="http://www.post-gazette.com/businessnews/20000106hells4.asp"&gt;public announcement&lt;/a&gt; was made,
&lt;a property="ctag:label" resource="http://rdf.freebase.com/ns/en/red_hat" typeof="ctag:Tag" xmlns:ctag="http://commontag.org/ns#" class="zem_slink rdfa" href="http://www.redhat.com/" title="Red Hat" rel="ctag:means homepage"&gt;Red Hat&lt;/a&gt; had acquired HKS.
&lt;br /&gt;&lt;br /&gt;
The folks at HKS really had played it cool.
&lt;br /&gt;&lt;br /&gt; 
Now here is where things get a bit
interesting, the main selling point of Stronghold was that it was a
full distribution of the Apache Web Server that included the commercial right to
use the encryption technology that allows for secure web
transactions, thus allowing one to built solutions such as our custom
ecommerce system. As mentioned Stronghold, by way of Apache, was a
POSIX based application that ran on systems such as FreeBSD, Sun
Solaris and on a the new, up-and-coming operating system Linux which
was (and still is) favored by Red Hat. CCVS was a POSIX based credit
card processing system. 
&lt;br /&gt;&lt;br /&gt;
All of which meant that by the summer
of 2000 I received a friendly phone call from Todd, now of
course at Red Hat, looking to build contacts at C2Net with regards to
possible partnership.
&lt;br /&gt;&lt;br /&gt;
Now it was my turn to play to cool.
&lt;br /&gt;&lt;br /&gt;
Given, in part, the issues at C2Net
over the previous year the majority owner of the company was looking
to sell and by late spring/early summer the whole of C2Net had been
informed that negotiations had been started in regards to Red Hat
purchasing C2Net&lt;a class="sdfootnoteanc" name="sdfootnote5anc" href="#sdfootnote5sym"&gt;&lt;sup&gt;5&lt;/sup&gt;&lt;/a&gt;
and then sworn to secrecy. 
&lt;br /&gt;&lt;br /&gt;
So when Todd's call came, I had to
politely tell him I would pass on his information to our VP of Sales
and Marketing and then of course made a beeline to said office after
hanging up with Todd. Sadly, with hindsight and all, I should have
realized that if Todd was in the dark about the potential purchase of
C2Net by Red Hat, given the obvious fit between the three products,
that the acquisition of  HKS might have been poorly executed, which
in turn was not a good sign for C2Net. But at the time I recall
hearing shortly after that Todd did eventually get filled in. And by
August of 2000 C2Net and Red Hat &lt;a href="http://www.awe.com/mark/c2net-press/20000814.html"&gt;issued a joint press releases&lt;/a&gt;
announcing the agreed upon acquisition. 
&lt;/p&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;hr&gt;
&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;div id="sdfootnote1"&gt;
&lt;i&gt;	&lt;/i&gt;&lt;p class="sdfootnote"&gt;&lt;i&gt;&lt;a class="sdfootnotesym" name="sdfootnote1sym" href="#sdfootnote1anc"&gt;1&lt;/a&gt; That
	is of course if, like most Americans, you can't count and/or don't
	care that our &lt;a href="http://www.timeanddate.com/counters/mil2000.html"&gt;Gregorian calendar had no year 0&lt;/a&gt;.&lt;/i&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="sdfootnote2"&gt;
&lt;i&gt;	&lt;/i&gt;&lt;p class="sdfootnote"&gt;&lt;i&gt;&lt;a class="sdfootnotesym" name="sdfootnote2sym" href="#sdfootnote2anc"&gt;2&lt;/a&gt; Call
	it Bloomberg's Law or whatever, but in the US one's loathing of all
	things New York (or Los Angeles) is inversely proportional to one's
	distance from New York City. Thus, Boston, which is closer, hates
	NYC greater than Chicago. San Francisco, not so much hating NYC as
	it does LA. New York and  Los Angeles can of course clam no one
	loathes themselves more than they do, which in doing so means they
	care little about anyone else, given their immediate proximity to
	their own location. Having grown up in and around Chicago, I
	naturally care equally less about New York as I do LA. 
	&lt;/i&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="sdfootnote3"&gt;
&lt;i&gt;	&lt;/i&gt;&lt;p class="sdfootnote"&gt;&lt;i&gt;&lt;a class="sdfootnotesym" name="sdfootnote3sym" href="#sdfootnote3anc"&gt;3&lt;/a&gt; And
	for that matter the only reason why we had a machine running Windows
	98 in our environment&lt;/i&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="sdfootnote4"&gt;
&lt;i&gt;	&lt;/i&gt;&lt;p class="sdfootnote"&gt;&lt;i&gt;&lt;a class="sdfootnotesym" name="sdfootnote4sym" href="#sdfootnote4anc"&gt;4&lt;/a&gt;
	Yes, despite my previous ragging on New York City, I do know that
	not only is Hell's Kitchen the name of a neighborhood in New York,
	but if I recall correctly, that the company Hell's Kitchen was in
	fact named after said neighborhood. 
	&lt;/i&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="sdfootnote5"&gt;
&lt;i&gt;	&lt;/i&gt;&lt;p class="sdfootnote"&gt;&lt;i&gt;&lt;a class="sdfootnotesym" name="sdfootnote5sym" href="#sdfootnote5anc"&gt;5&lt;/a&gt; A
	bit fuzzy here on the timeline and details, but I recall hearing
	about a deal between Caldera and C2Net that never materialized and
	then Red Hat got cold feet when "the bubble burst" in purchasing
	Red Hat, until various revenue commitments renewed discussions
	between C2Net and Red Hat. 
	&lt;/i&gt;&lt;/p&gt;
&lt;/div&gt;


&lt;div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"&gt;&lt;i&gt;&lt;img style="border: medium none ; float: right;" class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=2efdc6c4-ed79-4d4c-a506-15ab7046b39f" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/hnVWvuBg0Vk" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2009/12/y2k-c2net-hks-and-red-hat.html</feedburner:origLink></entry>

<entry>
    <title>Apple Tablet Rumors Heat Up</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/cKHYNhVeTgI/apple-tablet-rumors-heat-up.html" />
    <id>tag:pdw.weinstein.org,2009://2.208</id>

    <published>2009-12-24T14:43:42Z</published>
    <updated>2009-12-24T01:35:30Z</updated>

    <summary> First published: 23rd of December 2009 for Technorati The Interweb has been ablaze with tablet rumors for quite some time now and according to a recent Financial Times article, "Apple is preparing an announcement next month that many anticipate...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Apple" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="iPhone" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="apple" label="Apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="iphone" label="iPhone" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;br /&gt;&lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/technology/gadgets/article/apple-tablet-rumors-heat-up/"&gt;23rd of December 2009&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://tgdaily.com/images/stories/article_images/apple/mac_tablet/mac_tablet_mockup_001_perspective.jpg" alt="" height="141" hspace="5" vspace="3" width="208" align="right" /&gt;The Interweb has been ablaze with tablet rumors for quite some time now and according to a recent&lt;i&gt; &lt;/i&gt;&lt;a href="http://www.ft.com/cms/s/0/de0956cc-ef2f-11de-86c4-00144feab49a.html?nclick_check=1"&gt;&lt;i&gt;Financial Times&lt;/i&gt; article&lt;/a&gt;, "Apple is preparing an announcement next month that many anticipate will be the official unveiling..." 
&lt;br /&gt;&lt;br /&gt;
Despite the swirling rumors, Apple has yet to publicly acknowledge the existence of such a device.
&lt;br /&gt;&lt;br /&gt;
Backing up the Financial Times, &lt;a href="http://www.businessinsider.com/apple-to-demo-tablet-in-january-asks-developers-to-get-apps-ready-2009-12"&gt;Silicon Valley Insider (SVI) suggests&lt;/a&gt; that Apple is indeed preparing for a demo of a new mobile device with screen resolutions greater than the current iPhone and iPod Touch. Additionally, SVI reports that Apple has asked a select group of software developers to recast their apps and that "they've told select developers that as long as they build their apps to support full screen resolution -- rather than a fixed 320x480 -- their apps should run just fine."
&lt;br /&gt;&lt;br /&gt;
However, SVI suggests that the device itself won't be ready to purchase until sometime in March, supposedly providing remaining software developers time to incorporate the tablet's specifications into their current and future planned releases.
&lt;br /&gt;&lt;br /&gt;
Meanwhile, &lt;a href="http://www.appleinsider.com/articles/09/12/23/piper_75_chance_of_apple_jan_event_50_likelihood_of_tablet.html"&gt;Appleinsider reports&lt;/a&gt; that Gene Munster, a market research analyst with Piper Jaffray, has issued a note to investors suggesting that he expects the long-rumored tablet device to ship by March. However, while Jaffray believes there's a 75% chance of some sort of announcement planned for January - maybe an iPod touch with camera and video or a new TV subscription service for iTunes - the odds of a January announcement for a new tablet are 50-50.
&lt;br /&gt;&lt;br /&gt;
Traditionally, Apple has used the first full week in January to publicly debut new hardware and software, most notably being the iPhone in 2007 during the keynote speech at Macworld. However, at the 2009 Macworld, Apple announced that their strategy would no longer hinge on major events and that the 2009 Macworld would be the last one in which the company would particiapte in. This fact, along with the &lt;a href="http://www.macrumors.com/2009/07/29/apple-to-attend-ces-2010-steve-jobs-asked-to-keynote/"&gt;false rumors of Steve Jobs speaking&lt;/a&gt; at the &lt;a href="http://www.cesweb.org/"&gt;Consumer Electronics Association's event&lt;/a&gt; in January, might suggest that Apple intends to delay announcement of the long-awaited tablet until it is actually ready for shipment.
&lt;br /&gt;&lt;br /&gt;
As with all Apple announcements and rumors, consumers, analysts, media-types, industry watchers and brand-enthusiasts will just have to wait and wonder.&lt;/p&gt;

&lt;div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"&gt;&lt;img style="border: medium none ; float: right;" class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=994b7b4f-db61-4e8d-8a7a-8779be9ad8ed" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/cKHYNhVeTgI" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2009/12/apple-tablet-rumors-heat-up.html</feedburner:origLink></entry>

<entry>
    <title>AOL Time Warner Split, Leaves AOL Behind</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/ZaiheDqMWms/aol-time-warner-split-leaves-aol-behind.html" />
    <id>tag:pdw.weinstein.org,2009://2.207</id>

    <published>2009-12-11T15:00:08Z</published>
    <updated>2009-12-11T14:37:56Z</updated>

    <summary>Separated from the company it acquired in 2000, AOL is back on its own and behind the proverbial eight-ball.</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Information Technology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="business" label="Business" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technorati" label="Technorati" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;br /&gt;&lt;p align="right"&gt; First published: &lt;a href="http://technorati.com/business/article/aol-time-warner-split-leaves-aol/"&gt;10th of December 2009&lt;/a&gt; for &lt;a href="http://www.technorati.com/"&gt;Technorati&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In 2000 with a staggering market capitalization, AOL purchased &lt;a href="http://www.timewarner.com/corp/"&gt;Time Warner&lt;/a&gt; for $164 billion, with an eye towards delivering Time Warner's unique content to the AOL masses.&lt;/p&gt;
&lt;p align="center"&gt;&lt;a href="http://static.technorati.com/09/12/10/2239/aolchart.gif" rel="milkbox:gall1" title="AOL Market Value Chart"&gt;&lt;img src="http://static.technorati.com/09/12/10/2239/aolchart.gif" alt="AOL Market Value Chart" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;i&gt;AOL Market Value Chart by Jay Yarow at &lt;a href="http://www.businessinsider.com/"&gt;The Business Insider&lt;/a&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.businessinsider.com/"&gt;&lt;/a&gt;Today most agree that idea never had a chance of becoming reality. &lt;a href="http://blogcritics.org/www.aol.com"&gt;AOL&lt;/a&gt; is now on its own and after its first full day of independence, Wall Street has let it be known that it views AOL's chances of redemption as slim. AOL stock is down (-0.34%) while Time Warner stock is up (+4.18%).&lt;/p&gt;
&lt;p&gt;AOL's idea wasn't half bad. In fact for companies such as &lt;a href="http://ww.yahoo.com/"&gt;Yahoo&lt;/a&gt;, the idea itself worked fairly well: build partnerships with content and service providers in order to bridge the gap between users and publishers and make money in the process.&lt;/p&gt;

&lt;p&gt;AOL's business model was always about being a destination for digital content. In its dial-up days, AOL was a rich online community that focused on user-generated content in its message boards and chat rooms. Looking to move beyond user-generated content, AOL set its sights on Time Warner and their rich library of print, music,and video content.&lt;/p&gt;
&lt;p&gt;It was that monetization that AOL misfired on. Where Yahoo and &lt;a href="http://www.google.com/"&gt;Google&lt;/a&gt; make money on content with advertising, AOL looked to make money with subscriber fees, only to watch as users abandoned AOL's notoriously unreliable dial-up service for cheaper, more dependable service providers with access to all content on the Internet, not just the Time Warner content prominently featured on AOL.&lt;/p&gt;
&lt;p&gt;Now consider, since AOL purchased Time Warner, Google has come to dominate aggregating and indexing media. &lt;a href="http://www.youtube.com/"&gt;YouTube&lt;/a&gt; (also part of Google these days) and &lt;a href="http://www.hulu.com/"&gt;Hulu&lt;/a&gt; have leadership roles in video. &lt;a href="http://www.apple.com/itunes"&gt;iTunes&lt;/a&gt; is the king of Pop with a eye on video (with iPod/iPhone and Apple TV) as well as "print" (rumored tablet). Add in up-and-coming &lt;a href="http://www.facebook.com/"&gt;Facebook&lt;/a&gt; and &lt;a href="http://www.tiwtter.com/"&gt;Twitter&lt;/a&gt; have redefined areas AOL once lead: chat, messaging and sharing of content with friends. It is little wonder AOL's prospects look dim.&lt;/p&gt;

&lt;p&gt;Yet while AOL may have lost the #1 spot to Google and is losing momentum to Facebook, AOL can still quickly regroup. Wall Street might be looking down on AOL, but current CEO and former Google executive Tim Armstrong still has a sizable market capitalization north of $2 billion to work with. Plus, AOL is still &lt;a href="http://www.alexa.com/topsites/countries/US"&gt;a top internet destination&lt;/a&gt; in the US.&lt;/p&gt;
&lt;p&gt;AOL still has a shot or two from behind the eight-ball to make.&lt;/p&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/ZaiheDqMWms" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2009/12/aol-time-warner-split-leaves-aol-behind.html</feedburner:origLink></entry>

<entry>
    <title>@technabob, Look Mario Candy!</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/CjVa2Lk2wwE/technabob-look-mario-candy.html" />
    <id>tag:pdw.weinstein.org,2009://2.206</id>

    <published>2009-12-04T15:37:41Z</published>
    <updated>2009-12-05T04:29:57Z</updated>

    <summary> If you've ever come across the gadget website Technabob, you probably already know of their twin loves of all things Mario and all things Japanese. And frankly who can blame them? Some of the best oddest items out there...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
    <category term="family" label="Family" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="photos" label="Photos" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technabob" label="Technabob" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="travel" label="Travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p&gt;
If you've ever come across the gadget website &lt;a href="http://www.technabob.com"&gt;Technabob&lt;/a&gt;, you probably already know of their twin loves of all things &lt;a href="http://technabob.com/blog/?s=mario"&gt;Mario&lt;/a&gt; and all things Japanese. And frankly who can blame them? Some of the &lt;s&gt;best&lt;/s&gt; oddest items out there can only be found in the land of the rising sun.
&lt;br /&gt;&lt;br /&gt;
So imagine what my first thought was when I discovered that in the land of Mickey and Minnie one can find memorabilia dedicated to everyone's favorite Japaneses-Italian plumber. And not just any old memorabilia such as a t-shirt, but actual Mario candy!
&lt;/p&gt;
&lt;p align="center"&gt;&lt;a href="http://www.flickr.com/photos/pdweinstein/4156095326/" title="Mario Candy! by pdweinstein, on Flickr"&gt;&lt;img src="http://farm3.static.flickr.com/2644/4156095326_7d06b7e709.jpg" width="500" height="375" alt="Mario Candy!" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
Yep, the fine folks at &lt;a href="http://en.wikipedia.org/wiki/Mitsukoshi"&gt;Mitsukoshi&lt;/a&gt; - the Japanese department store that operates at Disney's Epcot Center - have quite a range of products for American tourist, including candy for Mario Kart DS and Donkey Kong. 
&lt;br /&gt;&lt;br /&gt;
Who knew that instead of a transoceanic trip to Tokyo one just needed a transcontinental trip to Orlando? Kind of makes me want to go back and see if I can find any of the "great" gadgets from Bandai for sale, such as their&lt;a href="http://technabob.com/blog/2007/06/24/bandai-electronic-bubble-wrap-popper/"&gt; electronic bubble wrap popper&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;
Oh and here's a little extra for those curious about Mario's development, &lt;a href="http://us.wii.com/iwata_asks/nsmb/vol1_page1.jsp"&gt;an interview with his creator, Shigeru Miyamoto&lt;/a&gt; in promotion of the new &lt;a href="http://www.amazon.com/gp/product/B002Z01QO2?ie=UTF8&amp;amp;tag=weinsteinorg-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B002Z01QO2"&gt; Super Mario Bros, Wii Edition&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=weinsteinorg-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=B002Z01QO2" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;. But beware his reference to the "Pac-Man era" and subsequent footnote exampling Pac-Man might make one feel franking old, like me!
&lt;/p&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/CjVa2Lk2wwE" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2009/12/technabob-look-mario-candy.html</feedburner:origLink></entry>

<entry>
    <title>Atlas V Launch of Intelsat 14</title>
    <link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/pdweinstein/~3/Gw_HpwvJyss/atlas-v-launch-of-intelsat-14.html" />
    <id>tag:pdw.weinstein.org,2009://2.205</id>

    <published>2009-11-30T07:55:01Z</published>
    <updated>2009-11-30T16:15:19Z</updated>

    <summary>I captured the following video of a nighttime Atlas V rocket launch I witnessed, along side my father, while in Central Florida on Thanksgiving vacation with my family. Note that I've modified the audio a bit to try an enhance...</summary>
    <author>
        <name>Paul Weinstein</name>
        <uri>http://pdw.weinstein.org</uri>
    </author>
    
        <category term="Family and Friends" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="Video" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="family" label="Family" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="space" label="Space" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="technology" label="Technology" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="video" label="Video" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://pdw.weinstein.org/">
        &lt;p&gt;I captured the following video of a nighttime &lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Atlas_V" title="Atlas V" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/guid/9202a8c04000641f80000000005f6c3b" property="ctag:label"&gt;Atlas V&lt;/a&gt; rocket launch I witnessed, along side my father, while in Central Florida on Thanksgiving vacation with my family. 
&lt;br /&gt;&lt;br /&gt;
Note that I've modified the audio a bit to try an enhance the interesting bits while muting distracting background noises. That is, I've boosted up the countdown from a nearby radio scanner while muting the sound of cars passing by on the highway. Given the distance between the pad and the viewing location, the sound of the rocket boosters are not noticeable until about 1:35 mark. 
&lt;/p&gt;
&lt;br /&gt;
&lt;p align="center"&gt;
&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/7eTDM22j9Fw&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/7eTDM22j9Fw&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/object&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;
The launch occurred at 1:55 am EST on November 23rd, 2009 from pad SLC-41 at &lt;a class="zem_slink rdfa" href="http://maps.google.com/maps?ll=28.4555555556,-80.5277777778&amp;amp;spn=0.1,0.1&amp;amp;q=28.4555555556,-80.5277777778 (Cape%20Canaveral)&amp;amp;t=h" title="Cape Canaveral" rel="ctag:means geolocation" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/guid/9202a8c04000641f8000000000069ccb" property="ctag:label"&gt;Cape Canaveral&lt;/a&gt;. The video was shot just north of Florida Highway 528, about 13 miles south of the launch complex.
&lt;/p&gt;
&lt;br /&gt;
&lt;p align="center"&gt;
&lt;img src="http://maps.google.com/maps/api/staticmap?center=kennedy+space+center&amp;amp;zoom=10&amp;amp;size=480x385&amp;amp;maptype=hybrid
&amp;amp;markers=color:green|label:Viewing Location|28.40550980142405,-80.64288854598999
&amp;amp;markers=color:red|label:SLC-41|28.583333,-80.582778&amp;amp;sensor=false&amp;amp;key=ABQIAAAA1JAnCa_peisLwAK9eclTPxQqQAlEDlHoXT_DDPAXrDlqRDTEkxSk6CItWKgUidt4Dzxf8XMr5aI4QQ" /&gt;
&lt;br /&gt;&lt;i&gt;Red Marker denotes Launchpad 41, Green Marker denotes Viewing Location&lt;/i&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;
The Atlas V rocket launch was preformed by &lt;a class="zem_slink rdfa" href="http://www.ulalaunch.com/index.html" title="United Launch Alliance" rel="ctag:means homepage" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/guid/9202a8c04000641f8000000000a9cb3b" property="ctag:label"&gt;United Launch Alliance&lt;/a&gt; and contained an international telecommunications satellite, &lt;a href="http://en.wikipedia.org/wiki/Intelsat_14"&gt;Intelsat 14&lt;/a&gt;, which is slated to replace the &lt;a href="http://en.wikipedia.org/wiki/Intelsat_1R"&gt;Intelsat 1R&lt;/a&gt; satellite currently in operation. 
Intelsat 14 was successfully launched into a transfer orbit that will eventually place it into a circular &lt;a class="zem_slink rdfa" href="http://en.wikipedia.org/wiki/Geostationary_orbit" title="Geostationary orbit" rel="ctag:means wikipedia" xmlns:ctag="http://commontag.org/ns#" typeof="ctag:Tag" resource="http://rdf.freebase.com/ns/guid/9202a8c04000641f800000000005256d" property="ctag:label"&gt;geostationary orbit&lt;/a&gt; over the equator at 45 degrees west longitude.
&lt;br /&gt;&lt;br /&gt;
In addition to bridging commercial intercontinental telecommunications, Intelsat 14 contains experimental equipment on behalf of the Department of Defense designed by Cisco known as &lt;a href="http://www.cisco.com/web/strategy/government/space-routing.html"&gt;Internet Routing in Space&lt;/a&gt; (IRIS). The "space router" is designed to test routing IP traffic in orbit, eliminating the need to send data to and from&amp;nbsp;additional&amp;nbsp;ground stations for network routing and in turn promises to allow U.S. military, allied forces and possible future commercial operators to quickly communicate using the Internet protocol for voice, video and data relay to remote locations all over the world.&lt;/p&gt;
&lt;br /&gt;
&lt;p align="center"&gt;
&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/_AHjgKew8RU&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/_AHjgKew8RU&amp;amp;hl=en_US&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/object&gt;
&lt;/p&gt;

&lt;div class="zemanta-pixie" style="margin-top:10px;height:15px"&gt;&lt;img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=34122b00-3ac2-41c2-a71e-5c162d86f7ce" style="border:none;float:right" /&gt;&lt;span class="zem-script more-related pretty-attribution"&gt;&lt;script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"&gt;&lt;/script&gt;&lt;/span&gt;&lt;/div&gt;
        
    &lt;img src="http://feeds.feedburner.com/~r/pdweinstein/~4/Gw_HpwvJyss" height="1" width="1"/&gt;</content>
<feedburner:origLink>http://pdw.weinstein.org/2009/11/atlas-v-launch-of-intelsat-14.html</feedburner:origLink></entry>

</feed>
