<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>D2Coding</title>
	<link>http://www.D2Coding.com</link>
	<description></description>
	<lastBuildDate>Sun, 23 May 2010 03:06:17 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Spring Cleaning!</title>
		<description><![CDATA[Now that we&#8217;re a good way into Spring, we&#8217;re doing a little Spring cleaning of our hardware at D2Coding. Upgrading memory in our Mac and archiving off old files. What has your business done regarding Spring cleaning? 
]]></description>
		<link>http://www.D2Coding.com/2010/05/10/spring-cleaning/</link>
			</item>
	<item>
		<title>Portfolio via Flickr</title>
		<description><![CDATA[We love creating new Flash components, but when we found that Flickr can make slideshows so easily&#8230; well, we know our time would not be well spent recreating the wheel. Without further ado, a sample of our portfolio via Flickr.
Created with Admarket&#8217;s flickrSLiDR.
We also have portfolios of the work that our artists and programmers completed before joining D2Coding. Be watching for links to their personal portfolios.
]]></description>
		<link>http://www.D2Coding.com/2010/04/11/portfolio-via-flickr/</link>
			</item>
	<item>
		<title>Stroke of Genius!</title>
		<description><![CDATA[In a collaboration between Topeka artist Michelle Leivan and D2Coding, we are unveiling a public Beta of the electronic version of Stroke of Genius!
We unveiled the game at the Topeka Arts Symposium April 8th. Thank you ArtsConnect for inviting us to the Symposium! 
Please checkout the Facebook page for Stroke of Genius! as well.
There&#8217;s not a &#8220;help&#8221; section to the game yet, but checking out the Tutorial posts will give you a good feel for how the game is played. 
Any feedback is appreciated. Thank you for participating in our ...]]></description>
		<link>http://www.D2Coding.com/2010/04/08/stroke-of-genius/</link>
			</item>
	<item>
		<title>WordPress Blackberry App</title>
		<description><![CDATA[
You can now post to your WordPress blog via your Blackberry. 
First, download the WordPress app from the Blackberry application store (free).
Then, from your desktop, log in to your blog and enable XML-RPC from the writing options page (/wp-admin/options-writing.php). 
Once you&#8217;ve added the WordPress application to your Blackberry, run it, and add your blog by clicking the Blackberry key, and selecting Add Blog. You need your blog URL (http://etc, etc) and your username and password that you use to login to your blog via the wp-login.php page. 
The Blackberry app ...]]></description>
		<link>http://www.D2Coding.com/2010/02/21/wordpress-blackberry-app/</link>
			</item>
	<item>
		<title>Overlooked Google Analytics &#8211; Site Overlay</title>
		<description><![CDATA[Just stumbled across the &#8220;site overlay&#8221; feature in Google Analytics. From the data presented for D2Coding, it&#8217;s clear that more visitors are interested in learning about D2Coding in general, that those visitors interested in what we do are three times more interested in our Flash/Actionscript portfolio than our Web 2.0 Technologies portfolio, and that either database/server-side coding is not interesting to them, or the specific technologies are meaningless to them, and so they don&#8217;t click on those links.

If you have Analytics, check out your site overlay by clicking the link ...]]></description>
		<link>http://www.D2Coding.com/2009/06/19/overlooked-google-analytics-site-overlay/</link>
			</item>
	<item>
		<title>Stateful Flash Slider Navigation</title>
		<description><![CDATA[Flash is sleek and dynamic which allows your client&#8217;s customers new ways to interact with their web sites. Below you will find a &#8220;slider&#8221; navigation component, that can be customized with different pictures, links, text and font colors. 
The navigation is considered stateful because it knows which state it should be in for a given page. You will notice that whichever page you are on, that page&#8217;s image is displayed in the middle of the slider, no matter where the image was when you left the last page. This makes ...]]></description>
		<link>http://www.D2Coding.com/2009/06/11/stateful-flash-slider-navigation/</link>
			</item>
	<item>
		<title>The Difference Between Mocks and Stubs</title>
		<description><![CDATA[Found this Fowler article pretty insightful when thinking about the difference between mocks and stubs. New to the mocking scene, I didn&#8217;t understand the difference at first, but the latter part of the portion I have linked to states that  Mocks are used to validate behavior whilst Stubs are used to validate state . Looking at the two example tests, the difference between the two types of tests becomes readily apparent. One tests the certain methods fired, and the other tests that properties of an object contain the values ...]]></description>
		<link>http://www.D2Coding.com/2009/06/10/the-difference-between-mocks-and-stubs/</link>
			</item>
	<item>
		<title>Welcome Visitors from LinkedIn!</title>
		<description><![CDATA[To reiterate some of the things you may have read about D2Coding already, our strength is in working with marketing agencies that are looking to expand their electronic offerings to their clients. We excel at creating unique enhancements to web sites using Adobe® Flash® technology as well as integrating new and existing web sites with database content, both of which allow for marketing campaigns to be more interactive with their targeted end-user.
Another strength that may not be readily apparent by our name, is that we are more than &#34;just coders&#34;. ...]]></description>
		<link>http://www.D2Coding.com/2009/06/07/welcome-visitors-from-linkedin/</link>
			</item>
	<item>
		<title>Actionscript Locally Persistent Data Object</title>
		<description><![CDATA[Flash has an easy way to save locally persistent data directly from Actionscript. Using the SharedObject Class, one can define many data points within the same object and use them like you would &#8220;cookies&#8221;.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Declare a cookie name
var cookieName:String = &#34;cookieExample&#34;;
&#160;
//Create an object to store cookie data
var cookie:SharedObject = SharedObject.getLocal&#40;cookieName&#41;;
&#160;
//If the data we are looking for doesn't exist (and it truly doesn't exist, it's just not 0)
if&#40;!cookie.data.firstPageToShow &#38;&#38; cookie.data.firstPageToShow!=0&#41;&#123;
&#160;
	//initiate the data point
	cookie.data.firstPageToShow = 0;
&#160;
&#125;else&#123;
&#160;
	//increment the data point
	cookie.data.firstPageToShow += 1;
&#125;

After this code runs, if the user has visited the site before, they ...]]></description>
		<link>http://www.D2Coding.com/2009/05/30/actionscript-locally-persistent-data-object/</link>
			</item>
	<item>
		<title>D2Coding is Open for Business</title>
		<description><![CDATA[The LLC is newly established, but we have experience working with PR firms and Ad Agencies in the Topeka area over the past couple of years. Formed out of the need for quality Adobe® Flash® development, along with the constraint that the deliverables be maintainable by a non-developer, D2Coding is delivering quality solutions.

D2Coding provides your company the skill sets needed to take your client&#8217;s web site from being a side-note in their marketing campaign to it being the dynamic centerpiece that supports the rest of the campaign efforts.

Give us a ...]]></description>
		<link>http://www.D2Coding.com/2009/05/30/d2coding-is-open-for-business/</link>
			</item>
</channel>
</rss>
