<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dareville</title>
	<atom:link href="http://www.dareville.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dareville.com</link>
	<description>Dareville Web Agency - We offer high-quality solutions to enhance your commercial campaign and brand identity on the Internet. We are specialists in web design, flash programming, strategies, front- and back-end programming. Contact us for further info: info@dareville.com</description>
	<lastBuildDate>Fri, 03 Sep 2010 12:46:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook Graph AS3 API &#8211; give that baby a spin!</title>
		<link>http://www.dareville.com/post/facebook-graph-as3-api-give-that-baby-a-spin/</link>
		<comments>http://www.dareville.com/post/facebook-graph-as3-api-give-that-baby-a-spin/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 12:46:09 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=472</guid>
		<description><![CDATA[A few months back, Facebook released a new Graph API allowing third-party applications to integrate with social data and connections established on their site. Naturally, we at Dareville have been playing around with these new APIs in a few of our recent projects and feel they are a huge improvement over the old REST services [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back, Facebook released a new Graph API allowing third-party applications to integrate with social data and connections established on their site. Naturally, we at Dareville have been playing around with these new APIs in a few of our recent projects and feel they are a huge improvement over the old REST services that were available previously. Unfortunately, there doesn&#8217;t exist an official Facebook/Adobe API for these new Graph services in ActionScript 3 so we decided to release our own!</p>
<p>This <a href="http://github.com/Dareville/Facebook-Graph">library</a> simplifies the creation and acquisition of data from the Facebook Graph API, as well as the expectation of returned data in a consistent and strongly-typed format. This includes, but not limited to, retrieving and posting on users’ wall feeds, creating and retrieving events and event statuses, posting comments, searching content and much more!</p>
<p>It does not provide login authentication as there are many other libraries available for this purpose and really&#8230;why re-invent the wheel? Some great examples are from <a href="http://www.bigspaceship.com/blog/labs/bss-classes-flash-and-the-fb-graph/">Big Spaceship</a> and <a href="http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/">Jozef Chúťka</a>.</p>
<p>There is some functionality that has not yet been implemented (places, inbox, send email, etc) but our intent is to include them as soon as possible. If you are interested in contributing, please do so with our repository on <a href="http://github.com/Dareville/Facebook-Graph">Github</a>!</p>
<h3>Syntax</h3>
<p>Once you have acquired your <code>access_token</code> from Facebook, you can call any one of the services provided by the API. Keep in mind that you may need to have already prompted the user with specific permissions during the authentication step in order for methods to return data properly. <a href="http://developers.facebook.com/docs/authentication/permissions">See more on Facebook extended permissions</a>.</p>
<p>Almost every method that you can call with these services, dispatches a <a href="http://github.com/robertpenner/as3-signals">Signal</a> upon completion or failure. For full documentation and more information on the signals dispatched, please visit our <a href="http://labs.dareville.com/api/facebookgraph/asdoc/">ASDoc</a></p>
<p>Executing a service is as simple as the following:</p>
<pre class="brush: as3;">
var service : FacebookUserService = new FacebookUserService();
service.getNewsFeed( access_token );
</pre>
<p>Listening for the response is just as easy, especially if you are familiar with Signals. Add a listener to the signal and create your responder method. Each method is documented in our <a href="http://labs.dareville.com/api/facebookgraph/asdoc/">ASDocs</a> with the provided parameter reteurned.</p>
<pre class="brush: as3;">
service.newsFeedLoaded.addOnce( onNewsFeedLoaded );
function onNewsFeedLoaded( vo : FacebookFeedCollectionData ):void
{
}
</pre>
<h3>Examples</h3>
<h4>Post on current logged in users&#8217; wall</h4>
<pre class="brush: as3;">var post : FacebookFeedCreatePostData = new FacebookFeedCreatePostData( msg, link, icon ); 

var service : FacebookUserService = new FacebookUserService();
service.wallPostCreated.addOnce( onWallPostCreated );
service.createWallPost( access_token, FacebookConstants.CONNECTION_ME, post ); 

function onWallPostCreated( post_id : String ):void
{
}
</pre>
<h4>Get wall post comments</h4>
<pre class="brush: as3;">var service : FacebookCommentService = new FacebookCommentService();
service.commentsLoaded.addOnce( onCommentsLoad );
service.getComments( access_token, post_id ); 

function onCommentsLoad( vo : FacebookCommentCollectionData ) : void
{
}
</pre>
<h4>Upload a photo</h4>
<pre class="brush: as3;">var source : ByteArray = jpg.encode( bmd );
var photo : FacebookPhotoCreateData = new FacebookPhotoCreateData(
	&quot;Photo caption&quot;, source ); 

var service : FacebookPhotoService = new FacebookPhotoService();
service.photoCreated.addOnce( onPhotoCreated );
service.createPhoto( access_token, photo, FacebookConstants.CONNECTION_ME ); 

function onPhotoCreated( id : String ):void
{
}
</pre>
<h3>Contact and Links</h3>
<p>Feel free to contact us with any recommendations, questions, comments: dev _at_ dareville _dot_ com</p>
<ul>
<li><a href="http://github.com/Dareville/Facebook-Graph">Facebook Graph API source on Github</a></li>
<li><a href="http://labs.dareville.com/api/facebookgraph/asdoc/">Facebook Graph API AS3 &#8211; ASDoc</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/facebook-graph-as3-api-give-that-baby-a-spin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung 9-series</title>
		<link>http://www.dareville.com/post/samsung-9-series/</link>
		<comments>http://www.dareville.com/post/samsung-9-series/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 13:05:14 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=445</guid>
		<description><![CDATA[Our friends at Projector came to us, asking if we could help them with some flash programming for a Samsung campaign. We said ”Natürlich!”. The new 9-series TV is in store from October 1st.
And it’s really thin too!
]]></description>
			<content:encoded><![CDATA[<p>Our friends at Projector came to us, asking if we could help them with some flash programming for a Samsung campaign. We said ”Natürlich!”. The new 9-series TV is in store from October 1st.<br />
And it’s really thin too!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/samsung-9-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bingotoppen</title>
		<link>http://www.dareville.com/post/bingotoppen/</link>
		<comments>http://www.dareville.com/post/bingotoppen/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 13:02:06 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=436</guid>
		<description><![CDATA[For Svenska Spel Bingo Live, we designed and programmed a unique branded playlist interface, based on the Spotify API. The user can add their best song for the moment, vote and share songs as well as playlists. Tune in!
]]></description>
			<content:encoded><![CDATA[<p>For Svenska Spel Bingo Live, we designed and programmed a unique branded playlist interface, based on the Spotify API. The user can add their best song for the moment, vote and share songs as well as playlists. Tune in!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/bingotoppen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Space</title>
		<link>http://www.dareville.com/post/office-space/</link>
		<comments>http://www.dareville.com/post/office-space/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 06:48:24 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=424</guid>
		<description><![CDATA[Sometimes we walk the streets, dressed like ordinary people. 











]]></description>
			<content:encoded><![CDATA[<p>Sometimes we walk the streets, dressed like ordinary people. </p>
<p><a href="http://www.dareville.com/wp-content/uploads/2010/06/1.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/06/1.jpg" alt="1" title="1" width="460" height="306" class="alignnone size-full wp-image-425" /></a><br />
<br />
<a href="http://www.dareville.com/wp-content/uploads/2010/06/2.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/06/2.jpg" alt="2" title="2" width="460" height="306" class="alignnone size-full wp-image-426" /></a><br />
<br />
<a href="http://www.dareville.com/wp-content/uploads/2010/06/3.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/06/3.jpg" alt="3" title="3" width="460" height="306" class="alignnone size-full wp-image-427" /></a><br />
<br />
<a href="http://www.dareville.com/wp-content/uploads/2010/06/4.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/06/4.jpg" alt="4" title="4" width="460" height="306" class="alignnone size-full wp-image-428" /></a><br />
<br />
<a href="http://www.dareville.com/wp-content/uploads/2010/06/5.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/06/5.jpg" alt="5" title="5" width="460" height="692" class="alignnone size-full wp-image-429" /></a><br />
<br />
<a href="http://www.dareville.com/wp-content/uploads/2010/06/6.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/06/6.jpg" alt="6" title="6" width="460" height="306" class="alignnone size-full wp-image-430" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/office-space/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Spela Tillsammans</title>
		<link>http://www.dareville.com/post/spela-tillsammans/</link>
		<comments>http://www.dareville.com/post/spela-tillsammans/#comments</comments>
		<pubDate>Mon, 31 May 2010 14:47:32 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=417</guid>
		<description><![CDATA[Elitloppet is the biggest single harness racing event of the year. With Spela Tillsammans, skilled players can invite and create co-operative systems for the race. Feel the horsepower and get ready for the big event. 
]]></description>
			<content:encoded><![CDATA[<p>Elitloppet is the biggest single harness racing event of the year. With Spela Tillsammans, skilled players can invite and create co-operative systems for the race. Feel the horsepower and get ready for the big event. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/spela-tillsammans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Myggorsuger.nu</title>
		<link>http://www.dareville.com/post/myggorsuger-nu/</link>
		<comments>http://www.dareville.com/post/myggorsuger-nu/#comments</comments>
		<pubDate>Mon, 31 May 2010 14:41:38 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=410</guid>
		<description><![CDATA[Incoming! The summer season is here and with that also the attacks of mosquito’s. It´s not a bald statement to say that &#8220;Mosquito’s really sucks!&#8221; Autan is the solution. With its protective insecticide you can enjoy the beautiful summer evenings with out bite and blisters.
]]></description>
			<content:encoded><![CDATA[<p>Incoming! The summer season is here and with that also the attacks of mosquito’s. It´s not a bald statement to say that &#8220;Mosquito’s really sucks!&#8221; Autan is the solution. With its protective insecticide you can enjoy the beautiful summer evenings with out bite and blisters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/myggorsuger-nu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Midori Sweet Kiss</title>
		<link>http://www.dareville.com/post/midori-sweet-kiss/</link>
		<comments>http://www.dareville.com/post/midori-sweet-kiss/#comments</comments>
		<pubDate>Mon, 31 May 2010 14:37:04 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=403</guid>
		<description><![CDATA[Midori is a tasty melon liqueur and a booster for every party. Together with finest.se, we developed Midori Sweet Kiss, a photo gallery site of sweet kisses with a taste of Midori. 
]]></description>
			<content:encoded><![CDATA[<p>Midori is a tasty melon liqueur and a booster for every party. Together with finest.se, we developed Midori Sweet Kiss, a photo gallery site of sweet kisses with a taste of Midori. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/midori-sweet-kiss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super hero developer wanted!</title>
		<link>http://www.dareville.com/post/super-hero-developer-wanted/</link>
		<comments>http://www.dareville.com/post/super-hero-developer-wanted/#comments</comments>
		<pubDate>Mon, 24 May 2010 14:37:05 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Job]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=329</guid>
		<description><![CDATA[

We are looking for someone who believes in web standards, is devoted to clean and semantic markup, is on top of the latest web technologies and is a master at server-side scripting languages as well as different server environments.

You must be able to create engaging, interactive experiences on platforms ranging from small micro-sites to large, [...]]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom: 0in;">
<p style="margin-bottom: 0in;">We are looking for someone who believes in web standards, is devoted to clean and semantic markup, is on top of the latest web technologies and is a master at server-side scripting languages as well as different server environments.</p>
<p style="margin-bottom: 0.08in;">
<p style="margin-bottom: 0in;">You must be able to create engaging, interactive experiences on platforms ranging from small micro-sites to large, global, multilingual enterprise systems. You have a strong aptitude for writing elegant code and ability to abstract for reuse i.e. a <a href="http://www.hohahe.com/photo/super-hero.jpg" target="_blank"><strong>super hero</strong></a> in Object Oriented Programming concepts.</p>
<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<h3 style="margin-bottom: 0in;"><strong>A must</strong></h3>
<ul>
<li>Minimum 4 years professional development</li>
<li>Live and breathe object oriented PHP5</li>
<li>In-depth knowledge of SQL, relational databases and an expert of writing efficient queries</li>
<li>Strong proficiency in front-end technologies, in the context of database-driven applications, HTML, XHTML, HTML 5, CSS 2/3, Javascript and libraries such as jQuery</li>
<li>Extensive knowledge of different data formats e.g. XML and JSON</li>
<li>High-level understanding of cross-browser/cross-plattform compatibility issues</li>
<li>Apache and IIS</li>
<li>Web services and Remoting</li>
<li>Source/version control software</li>
<li>Experience working with API&#8217;s such as Facebook, Twitter, Google and other emerging platforms</li>
</ul>
<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<h3 style="margin-bottom: 0in;"><strong>Big plus</strong></h3>
<ul>
<li>C#, .NET and MS-SQL</li>
<li>Objective-C</li>
<li>Java</li>
<li>UML</li>
<li>Firewalls, routing, switching, load balancing</li>
<li>Socket servers</li>
<li> Mobile application development</li>
</ul>
<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom: 0in;"><strong>A portfolio of your best work is absolutely essential.</strong><br />
Send us your interest to <a href="mailto:jobs@dareville.com">jobs@dareville.com</a></p>
<p style="margin-bottom: 0.16in;">
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/super-hero-developer-wanted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chips-frenzi</title>
		<link>http://www.dareville.com/post/chips-frenzi/</link>
		<comments>http://www.dareville.com/post/chips-frenzi/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 19:56:55 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=324</guid>
		<description><![CDATA[
The “Fredagsmys” saga continues. The campaign Mysmatchen has received a massive amount of contributes of crispy, creative and tasty flavors for a new OLW chips. We are very happy for the activity on the campaign site and dare our readers to try their creativity and send in their favorite flavor to the competition.
Enter Mysmatchen
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dareville.com/wp-content/uploads/2010/04/olw.jpg"><img src="http://www.dareville.com/wp-content/uploads/2010/04/olw.jpg" alt="olw" title="olw" width="460" height="511" class="alignnone size-full wp-image-325" /></a></p>
<p>The “Fredagsmys” saga continues. The campaign Mysmatchen has received a massive amount of contributes of crispy, creative and tasty flavors for a new OLW chips. We are very happy for the activity on the campaign site and dare our readers to try their creativity and send in their favorite flavor to the competition.</p>
<p><a href="http://www.olw.se">Enter Mysmatchen</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/chips-frenzi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burning Libra Promo</title>
		<link>http://www.dareville.com/post/burning-libra-promo/</link>
		<comments>http://www.dareville.com/post/burning-libra-promo/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:02:27 +0000</pubDate>
		<dc:creator>johan</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.dareville.com/?p=317</guid>
		<description><![CDATA[Darevilles multitasking flash developer Patrik Janson is also a Final Cut &#38; After Effects skilled base player. For his band Burning Libra, Patrik took his skills into practice, editing their new video &#8220;The Coffin Theory&#8221;. Patriks work included editing, matte, compositing, paint-effects, visual effects, tracking and color grading. Tools: Final Cut Pro, After Effects and [...]]]></description>
			<content:encoded><![CDATA[<p>Darevilles multitasking flash developer Patrik Janson is also a Final Cut &amp; After Effects skilled base player. For his band Burning Libra, Patrik took his skills into practice, editing their new video &#8220;The Coffin Theory&#8221;. Patriks work included editing, matte, compositing, paint-effects, visual effects, tracking and color grading. Tools: Final Cut Pro, After Effects and Mocha for After Effects. Nino Beganovic from prodz.net shot the video.</p>
<p>And yes &#8211; Patrik is the blond, longhaired dude.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="461" height="277" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/sJpdqw0bYe8&amp;hl=sv_SE&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="461" height="277" src="http://www.youtube.com/v/sJpdqw0bYe8&amp;hl=sv_SE&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dareville.com/post/burning-libra-promo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
