From 6087907fe7d74d4cc8269a8ec4e54d749061fa80 Mon Sep 17 00:00:00 2001 From: B Mathis Date: Sat, 2 Oct 2010 00:19:45 -0500 Subject: [PATCH] added post "coping with your family?" and improved cross browser video support --- ...-30_12-41-coping-with-your-family.markdown | 21 ++++++++++++ source/javascripts/octopress.js | 32 +++++++++---------- 2 files changed, 36 insertions(+), 17 deletions(-) create mode 100644 source/_posts/2010-09-30_12-41-coping-with-your-family.markdown diff --git a/source/_posts/2010-09-30_12-41-coping-with-your-family.markdown b/source/_posts/2010-09-30_12-41-coping-with-your-family.markdown new file mode 100644 index 0000000..c87378e --- /dev/null +++ b/source/_posts/2010-09-30_12-41-coping-with-your-family.markdown @@ -0,0 +1,21 @@ +--- +title: "Coping With Your Family?" +--- + +While you work at a MegaCorp "developing strategy", you long for a product that would keep you focused, and get you through the day. +Sometimes you even dream of a device that could help you **cope with your family**. + +RIM understands your disconnected needs. Introducing the BlackBerry Playbook. + + + +[Full video](http://www.youtube.com/watch?v=izMU64F_9sM) (Quote starts at 2:44) + +Message matters. I cannot relate to the person being described here. This is a perspective — beyond marketing — that defines the role of technology in our lives. Unless RIM makes some bold changes they'll never escape the corporate niche. + +Watch the [Playbook ad](http://quietube.com/v.php/http://www.youtube.com/watch?v=_rbN9m3ywJ0), and compare that to [Apple's iPad commercial](http://quietube.com/v.php/http://www.youtube.com/watch?v=D2BvVcSkNkA). +By contrast, Playbook looks impersonal — even fictional. I mean, you barely see anyone holding it, or using it in a real setting. Some are even suggesting that [it doesn't exist](http://www.singularityhacker.com/2010/09/blackberry-playbook-doesnt-exist.html). + +I have far greater hopes that an Android tablet will someday compete with the iPad. Come to think of it, what ever happened to Chrome OS? \ No newline at end of file diff --git a/source/javascripts/octopress.js b/source/javascripts/octopress.js index b951212..17ca63a 100644 --- a/source/javascripts/octopress.js +++ b/source/javascripts/octopress.js @@ -55,24 +55,22 @@ function html5toFlash(){ videos.each(function(video){ source = video.getElement('source').get('src'); if(!source.contains('mp4') || !Modernizr.video.h264){ - flashvid = new Element('object', { - 'width': video.get('width').toInt(), - 'height': video.get('height').toInt() + 19 + 'px', - 'type': 'application/x-shockwave-flash', - 'data': flashplayerlocation + span = new Element('span').wraps(video); + flashvid = new Swiff(flashplayerlocation, { + width : video.get('width').toInt(), + height : video.get('height').toInt() + 29, + params : { + movie : source, + wmode : "opaque", + allowfullscreen : "true" + }, + vars : { + file : source, + image : video.get('poster'), + skin : flashplayerskin + }, + container: span }); - flashvid.adopt([ - new Element('param', { - 'name':'movie', 'value' : source - }), - new Element('param', { - 'name':'allowfullscreen', 'value':'true' - }), - new Element('param', { - 'name':'flashvars', 'value' : "file="+source+"&skin="+flashplayerskin - }) - ]) - flashvid.inject(video, 'after'); video.dispose(); } })