<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/embedded</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 20 Jun 2013 19:53:32 GMT</pubDate>
<item>
<title>(Java) YouTubePlayer.java - bcmoney</title>
<link>http://snipplr.com/view/68983/youtubeplayerjava/</link>
<description><![CDATA[ <p>Requires "[Guava lib](http://code.google.com/p/guava-libraries/ "Google core Java API aka. Guava libraries")", as well as the main dependencies listed in the above link:

*   gdata-youtube-2.0.jar
*   gdata-core-2.0.jar
*   gdata-media-2.0.jar
*   gdata-client-2.0.jar 
*   mail.jar

Then configure your API_KEY and APP configs:
https://code.google.com/apis/youtube/dashboard/gwt/index.html#product/

Then you should be able to search YouTube from a Native cross-platform JAVA desktop app; after this, next steps are to:

0.  Test searches and ensure its working well.
1.  Integrate Tidy HTML parsing and generate YouTuve  tags.
2.  Setup lightweight HTML file to accept video IDs as parameter and render a player: http://jsfiddle.net/bcmoney/yBP4J/
3.  Integrate WebRenderer: http://webrenderer.com/ (or other embedded J2EE broswer)
4.  Test playback of video in Embedded Browser, Mobile support, (see BB demos) etc..
5.  Integrate with BlogOfBug's JCarousel: 
http://web.archive.org/web/20070203112659/http://www.blogofbug.com/page3/page3.html
6.  Find inspiration to finish OpenRecommender!!!!!!!</p> ]]></description>
<pubDate>Thu, 06 Dec 2012 08:20:21 GMT</pubDate>
<guid>http://snipplr.com/view/68983/youtubeplayerjava/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Show Embedded Fonts - adrianparr</title>
<link>http://snipplr.com/view/54968/as3-show-embedded-fonts/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 07 Jun 2011 23:43:02 GMT</pubDate>
<guid>http://snipplr.com/view/54968/as3-show-embedded-fonts/</guid>
</item>
<item>
<title>(HTML) HTML5 Embedded Crossbrowser Video - bassdas</title>
<link>http://snipplr.com/view/47680/html5-embedded-crossbrowser-video/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 22 Jan 2011 01:22:17 GMT</pubDate>
<guid>http://snipplr.com/view/47680/html5-embedded-crossbrowser-video/</guid>
</item>
<item>
<title>(ActionScript 3) How to get the page URL a Flash movie is embedded on - leongaban</title>
<link>http://snipplr.com/view/38063/how-to-get-the-page-url-a-flash-movie-is-embedded-on/</link>
<description><![CDATA[ <p>Took a bit to figure this one out, most code out there only gives you the path to the Flash swf file instead of the actual page URL. You will need to use an ExternalInterface call</p> ]]></description>
<pubDate>Fri, 30 Jul 2010 00:47:17 GMT</pubDate>
<guid>http://snipplr.com/view/38063/how-to-get-the-page-url-a-flash-movie-is-embedded-on/</guid>
</item>
<item>
<title>(Ruby) Howto set up a Rake task to generate RDoc documentation - noah</title>
<link>http://snipplr.com/view/27986/howto-set-up-a-rake-task-to-generate-rdoc-documentation/</link>
<description><![CDATA[ <p>For the `--diagram` and `--fileboxes` options to work you need [GraphViz](http://www.graphviz.org/) otherwise, delete those.</p> ]]></description>
<pubDate>Mon, 08 Feb 2010 21:42:54 GMT</pubDate>
<guid>http://snipplr.com/view/27986/howto-set-up-a-rake-task-to-generate-rdoc-documentation/</guid>
</item>
<item>
<title>(ActionScript 3) Embedded Image in Flash - edsonpavoni</title>
<link>http://snipplr.com/view/24636/embedded-image-in-flash/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Dec 2009 17:10:15 GMT</pubDate>
<guid>http://snipplr.com/view/24636/embedded-image-in-flash/</guid>
</item>
<item>
<title>(C#) Adapt System.BitConverter to handle big endian (network) byte ordering in order to create number types from bytes and vice-versa - pckujawa</title>
<link>http://snipplr.com/view/15179/adapt-systembitconverter-to-handle-big-endian-network-byte-ordering-in-order-to-create-number-types-from-bytes-and-viceversa/</link>
<description><![CDATA[ <p>The System.BitConverter class allows you to convert between bytes (in an array) and numerical types (int, uint, etc). However, it doesn't seem to let you set the endianness (which byte is most significant, e.g. in an int/Int32, there are four bytes, so which way do you read them?). It seems to operate such that the methods always return values appropriate to little endian (host order) systems (most significant byte is on the right). Since, in embedded systems, it is often necessary to interact with big-endian systems, I created this class to provide the functionality for either endianness. You simply set the endianness in the class, then all methods will return endian-aware values.

Please let me know if there is a better solution out there, as I searched a lot before deciding to do it this way. (Note: Instead of using LINQ [e.g. myArray.Reverse().ToArray()], you can use Array.Reverse(myArray).)

Found a bug in the previous code in that the arrays were being reversed, but the starting index was not, resulting in non-obvious behavior. I fixed that for all but the ToString methods.</p> ]]></description>
<pubDate>Tue, 19 May 2009 17:16:47 GMT</pubDate>
<guid>http://snipplr.com/view/15179/adapt-systembitconverter-to-handle-big-endian-network-byte-ordering-in-order-to-create-number-types-from-bytes-and-viceversa/</guid>
</item>
<item>
<title>(VB.NET) Extract an Image Embedded as a Resource - chavcho</title>
<link>http://snipplr.com/view/12959/extract-an-image-embedded-as-a-resource/</link>
<description><![CDATA[ <p>Use this to extract an image embedded as a resource in your project. Call the function supplying the full path to the resource, for example:

Dim myImage as Bitmap = EmbeddedIcon("MyApplication1.myImage.png")

Where "MyApplication1" is the root namespace for the project.</p> ]]></description>
<pubDate>Tue, 10 Mar 2009 10:17:32 GMT</pubDate>
<guid>http://snipplr.com/view/12959/extract-an-image-embedded-as-a-resource/</guid>
</item>
<item>
<title>(VB.NET) Extract an Icon Embedded as a Resource - chavcho</title>
<link>http://snipplr.com/view/12958/extract-an-icon-embedded-as-a-resource/</link>
<description><![CDATA[ <p>Use this to extract an icon embedded as a resource in your project. Call the function supplying the full path to the resource, for example:

Dim myIcon as Icon = EmbeddedIcon("MyApplication1.myicon.ico")

Where "MyApplication1" is the root namespace for the project.</p> ]]></description>
<pubDate>Tue, 10 Mar 2009 10:14:38 GMT</pubDate>
<guid>http://snipplr.com/view/12958/extract-an-icon-embedded-as-a-resource/</guid>
</item>
<item>
<title>(C) Obtaining the byte values in a float or double. - pckujawa</title>
<link>http://snipplr.com/view/8806/obtaining-the-byte-values-in-a-float-or-double/</link>
<description><![CDATA[ <p>This routine can be used to copy the byte values of a float or double. The "isBigEndian" variable needs to be determined (most PCs are little-endian, whereas most embedded microprocessors are big-endian). Instead of using unsigned chars, it can be useful to do a "typedef unsigned char UINT8" and simply use UINT8 as the variable type.</p> ]]></description>
<pubDate>Fri, 03 Oct 2008 11:09:39 GMT</pubDate>
<guid>http://snipplr.com/view/8806/obtaining-the-byte-values-in-a-float-or-double/</guid>
</item>
</channel>
</rss>