tech stuff and things
A surreal series of events
Written by Administrator    Friday, 03 October 2008 17:09    PDF Print E-mail

Normally I write about tech stuff but...

Earlier this week (Monday) a series of moves by the McCain campaign redefined the limits of political bullshit and entered into the realm of the surreal.

This man is not fit too lead (as is his running mate Sarah Palin). If you happened to miss this series of bizzare events, MSNBC's "Coundown" by Keith Olbermann re-caped the days events and the Maverick's erratic behavior when economic bailout went into the tank. Please watch the video below.

Embed it into your blog. Pass the word and get out and vote.

We can't afford another 4 years of the last 8 where a blundering presidential administration makes decisions as if they are running a poorly executed hurry-up-offense.

 

embed this video

<iframe height="339" width="425" src="http://www.msnbc.msn.com/id/22425001/vp/26949254#26949254" frameborder="0" scrolling="no"></iframe>



Add this article to your favorite Social Bookmarking websites
Reddit! Del.icio.us! JoomlaVote! Google! Live! Facebook! StumbleUpon! Yahoo! Free social bookmarking plugins and extensions for Joomla! websites!
Last Updated ( Sunday, 05 October 2008 07:39 )
 
Using the Jumi Mambot
Written by Administrator    Tuesday, 05 August 2008 15:42    PDF Print E-mail

As a security feature Joomla does not allow front end editors to include java script in content. In most cases this is desirable as one would not want malicious code being introduced into the site. A work-around and faster approach to this problem can be solved by using the Jumi mambot. Jumi will safely call in the java script code for front end editors. Jumi is essentially a rapid development tool for Joomla that allows the insertion of just about any type of code into any content or module.

Below is an example of the Jumi bot in action using the jquery.faq plug-in developed by projectatomic who also wrote the jquery.flickr plug-in demonstrated earlier.

You can down load both for free here:

Jumi mambot and module

Jqery FAQ Plug-in

First item in accordion
Enter text here
Second item in accordion (extra long)

First paragraph using p tags

Second paragraph

Third paragraph

Third item in accordion (medium long)

First paragraph

Forth item in accordion
the trick is to use the dl dt and dd tags see coding example below.

Here's the basic coding structure on the above accordian. Notice the instance of the Jumi tag and relative link to the actual "accordian.js" file within the square brackets []. A final } should be used to closethe jumi tag

Jumi in action calling the accordion.js file
  1. {jumi[includes/js/faq/accordian.js
  2. <dl id="faq">
  3. <dt>First item in accordion</dt>
  4. <dd>Enter text here</dd>
  5. <dt>Second item in accordion (extra long)</dt>
  6. <dd><p>First paragraph using p tags</p>
  7. <p>Second paragraph</p>
  8. <p>Third paragraph</p></dd>
  9. <dt>Third item in accordion (medium long)</dt>
  10. <dd><p>First paragraph</p></dd>
  11. <dt>Forth item in accordion</dt>
  12. <dd>the trick is to use the dl dt and dd tags see coding example above</dd>
  13. </dl>


Add this article to your favorite Social Bookmarking websites
Reddit! Del.icio.us! JoomlaVote! Google! Live! Facebook! StumbleUpon! Yahoo! Free social bookmarking plugins and extensions for Joomla! websites!
Last Updated ( Sunday, 30 November 2008 03:37 )
 
Codex 2007
Written by Administrator    Monday, 04 August 2008 12:17    PDF Print E-mail
Codex 2007

HD & SD video/ Jitter/ mac mini/ 24" Flat Screen

Codex is a clearing house of video clips, audio sound bytes and textual pieces created but never finished since I moved to NYC in 2003. Through the use of a semi-random algorithm the narrative body flows through sorted sets and grouping of ideas and movie clips that deal with fictional and non-fictional mini-narratives. The mini-narratives range from subjects concerning geography, technology, capitalism, socialism, political history, spiritualism, the occult, multiplicity, and direct observations of urban life on both broad and micro levels.

It's a movie that is never complete, never ending and never the same twice. It's about me, you and everything around us past present and future. Call it artful dodging by computational power, call it laziness, call it a hopeless but beautiful mess because who has time to sort out interrelated ideas, who has time for anything longer that 30 seconds ? I don't but the codex, or rather algorithm does and can neatly sort it all out for us.



Add this article to your favorite Social Bookmarking websites
Reddit! Del.icio.us! JoomlaVote! Google! Live! Facebook! StumbleUpon! Yahoo! Free social bookmarking plugins and extensions for Joomla! websites!
Last Updated ( Monday, 23 August 2010 12:05 )
 
Using SWFObjects instead of object embed tags
Written by Administrator    Monday, 04 August 2008 10:37    PDF Print E-mail

Having recently been on the hunt for a good free flash player for this site and others. I came across a revolutionary new concept, actually not revolutionary but standards compliant. The concept is SWFOjects envoked by java script replaceing the <object> tags so commonly used to place media in a web page.

There are good reasons to switch from using <object> tags to embed your flash media to a java script invoked SWFObject and that's mostly because the <object> tag never really existed as an HTML compliant tag. You can read more about the SWFObject about it here :

Abobe.Development Center

code.google.com

Two really good, ready to use free flash players I found that used the SWFobject method were The JW FLV player and the GDD player. Which you can see below.

I chose the GDD player because it was ready to go with the features that I wanted ASAP, however I would have a look at the JW FLV Player as it is skin-able and way more customizable. Not only that, but the site has a massive amount of documentation to support the more advanced features of the JW FLV player.

All that being said I am still on the hunt for a good flash DAM that is both standalone and embeddable, does video conversion on upload, is CDN ready or has CDN like features, and is free. My good friend Lee Wells and my self are currently exploring PHPmotion and other low end Flash Based DAM'S.

Here's the code used on this page to call an SWFObject:

Using SWF Ojects
  1. <!-- START gddflvplayer code -->
  2. <div id="codex2007"><!--This is where the player appears -give it a unique name if using more that one per page--></div>
  3. <script src="http://chrisborkowski.org/includes/gddflvplayer3.5/swfobject.js" type="text/javascript"></script>
  4. <script type="text/javascript">
  5. // <![CDATA[
  6. var so = new SWFObject("http://www.chrisborkowski.org/includes/gddflvplayer3.5/gddflvplay-v35.swf", "codec2007", "320", "280", "8", "#000000"); //change the player size as you want (now:500x360)
  7. so.addParam("scale", "noscale");
  8. so.addParam("quality", "best");
  9. so.addParam("allowScriptAccess", "always");
  10. so.addParam("allowFullScreen", 'true');
  11. //VIDEO PARAMS
  12. so.addVariable("vdo", escape('http://www.chrisborkowski.org/images/codex.flv')); //video file
  13. so.addVariable("desc", escape('Codex 2007')); // movie title
  14. so.addVariable("autoplay", 'false'); // autoplay: true or false | default: false
  15. so.addVariable("sound", '70'); // sound volume 0-100
  16. // ADVERTISING/INTRO VIDEO, (controls temporarily disabled) REMOVE NEXT 2 LINES IF NONE
  17. //so.addVariable("advert", escape('http://akvideos.metacafe.com/ItemFiles/%5BFrom%20www.metacafe.com%5D%205491.631631.11.flv')); //video file
  18. //so.addVariable("advertdesc", escape(' Ad Commercial Fast Cars Budwieser ')); // description text
  19. // YOUR CUSTOM LOGO, remove the next line if none
  20. so.addVariable("mylogo", escape('http://www.chrisborkowski.org/includes/gddflvplayer3.5/cjb_logo.png')); // PNG, JPG, GIF,SWF, we recommend PNG for transparency
  21. //TRACKER LINK URL (goes active on play)
  22. //so.addVariable("tracker", escape('your_tracker_link.php')); // TRACKER LINK | vars sent by POST
  23. //BUFFER SIZE (preloads x seconds of the movie before play)
  24. so.addVariable("buffer", 2); // buffer time in seconds; default 2sec if missing
  25. // START
  26. so.write("codex2007");
  27. // ]]>
  28. </script>
  29. <!-- END gddflvplayer code -->
  30. <br />

 

 




Add this article to your favorite Social Bookmarking websites
Reddit! Del.icio.us! JoomlaVote! Google! Live! Facebook! StumbleUpon! Yahoo! Free social bookmarking plugins and extensions for Joomla! websites!
Last Updated ( Sunday, 22 March 2009 03:37 )
 


Page 4 of 6

Your are currently browsing this site with Internet Explorer 6 (IE6).

Your current web browser must be updated to version 7 of Internet Explorer (IE7) to take advantage of all of template's capabilities.

Why should I upgrade to Internet Explorer 7? Microsoft has redesigned Internet Explorer from the ground up, with better security, new capabilities, and a whole new interface. Many changes resulted from the feedback of millions of users who tested prerelease versions of the new browser. The most compelling reason to upgrade is the improved security. The Internet of today is not the Internet of five years ago. There are dangers that simply didn't exist back in 2001, when Internet Explorer 6 was released to the world. Internet Explorer 7 makes surfing the web fundamentally safer by offering greater protection against viruses, spyware, and other online risks.

Get free downloads for Internet Explorer 7, including recommended updates as they become available. To download Internet Explorer 7 in the language of your choice, please visit the Internet Explorer 7 worldwide page.