<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>capnjosh</title>
	
	<link>http://capnjosh.com/blog</link>
	<description>MMOG Design and Related Fun</description>
	<lastBuildDate>Tue, 01 May 2012 23:15:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Capnjosh" /><feedburner:info uri="capnjosh" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>SQL Server Daylight Savings Fun</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/iwbJ-7VkINQ/</link>
		<comments>http://capnjosh.com/blog/?p=151#comments</comments>
		<pubDate>Tue, 01 May 2012 23:15:54 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[date functions]]></category>
		<category><![CDATA[daylight savings]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=151</guid>
		<description><![CDATA[I&#8217;ll get straight to the point: We had to change the timezone in which transactions were being logged from PST to UTC. However, we couldn&#8217;t yet fully convert over to UTC (it&#8217;s a lot of historical data to update). So, &#8230; <a href="http://capnjosh.com/blog/?p=151">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll get straight to the point:</p>
<p>We had to change the timezone in which transactions were being logged from PST to UTC.  However, we couldn&#8217;t yet fully convert over to UTC (it&#8217;s a lot of historical data to update).  So, now we have a log table with logged events in PST up to a certain point in time, then after then everything is in UTC.  I needed to modify existing ETL to dynamically shift all the UTC times to PST (full UTC conversion to come later).  In short, this is how I did it (don&#8217;t scream too loudly &#8211; &#8220;it&#8217;s only temporary&#8221; <img src='http://capnjosh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>(assume &#8217;4/20/2012 08:00&#8242; is the time after which things are in UTC)<br />
(All I did was get the hour offset between the getdate() and getutcdate() functions.  Provided the system time is correct, timezone and all, this should do it)</p>
<p>select<br />
     (case when t.LogTime >= &#8217;4/20/2012 08:00&#8242; then dateadd(hh, datediff(hh,getdate(), getutcdate()), getdate()) else t.LogTime end) as LogTime<br />
from MyFunDB.dbo.MyBigLog t (nolock)</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/iwbJ-7VkINQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=151</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=151</feedburner:origLink></item>
		<item>
		<title>IPVS, Piranha error</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/Q9-gxpiLQhc/</link>
		<comments>http://capnjosh.com/blog/?p=149#comments</comments>
		<pubDate>Tue, 27 Mar 2012 03:54:21 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IPVS]]></category>
		<category><![CDATA[Piranha]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=149</guid>
		<description><![CDATA[In Control/Monitoring in Piranha, the Daemon: was not starting up after a fresh Piranha install and config. I did &#8220;tail /var/log/messages -n 400&#8243; (this is the relevant error log) The last line had this: We are backup node and backup &#8230; <a href="http://capnjosh.com/blog/?p=149">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In Control/Monitoring in Piranha, the Daemon: was not starting up after a fresh Piranha install and config.</p>
<p>I did &#8220;tail /var/log/messages -n 400&#8243; (this is the relevant error log)</p>
<p>The last line had this:<br />
 We are backup node and backup is marked inactive &#8212; exiting pulse</p>
<p>So, in the Piranha GUI, I just clicked the accept button, hoping it would reset whatever config file was mentioning &#8220;we are a backup&#8221;.  It worked.</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/Q9-gxpiLQhc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=149</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=149</feedburner:origLink></item>
		<item>
		<title>MySQL Replication</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/K0uSXOIapuA/</link>
		<comments>http://capnjosh.com/blog/?p=147#comments</comments>
		<pubDate>Mon, 26 Mar 2012 03:09:19 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[disk space]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[relay logs]]></category>
		<category><![CDATA[relay-log-space-limit]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=147</guid>
		<description><![CDATA[Recently I had some replication slave machines get a slug of bad binary log transactions &#8211; it seems to be a result of this bug: http://bugs.mysql.com/bug.php?id=40278. Since it was a good number of hours before I was able to fix &#8230; <a href="http://capnjosh.com/blog/?p=147">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I had some replication slave machines get a slug of bad binary log transactions &#8211; it seems to be a result of this bug: http://bugs.mysql.com/bug.php?id=40278.  Since it was a good number of hours before I was able to fix everything, there was a lot of data to be pulled from the master servers&#8230;. and not enough disk space on the slave machine to hold it all.  Bleh&#8230;</p>
<p>I&#8217;ll give you the solution:  relay-log-space-limit=1G (or 15G or 12M or 4096.. whatever you want).</p>
<p>Effectively, this defines the amount of disk space your relay logs will consume.  If the available binary logs from the master are much bigger, the slave relay log manger thread will pause until it knows there is less disk space being used by the relay logs.</p>
<p>Please, add this to your my.cnf files <img src='http://capnjosh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/K0uSXOIapuA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=147</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=147</feedburner:origLink></item>
		<item>
		<title>Wireless network disappears with DD-WRT-flashed router (loads of Tx errors in DD-WRT interface)</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/CdE91nniiQo/</link>
		<comments>http://capnjosh.com/blog/?p=145#comments</comments>
		<pubDate>Sat, 24 Mar 2012 21:53:27 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=145</guid>
		<description><![CDATA[I&#8217;ve had this happen a number of times over the past few months. I have a Motorola WR850G that I have flashed with DD-WRT (v24-sp2 (10/10/09) vp). It&#8217;s been a fine experience, but occasionally the wireless network will disappear. The &#8230; <a href="http://capnjosh.com/blog/?p=145">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had this happen a number of times over the past few months.  I have a Motorola WR850G that I have flashed with DD-WRT (v24-sp2 (10/10/09) vp).  It&#8217;s been a fine experience, but occasionally the wireless network will disappear.  The XBox 360 won&#8217;t work and my phone doesn&#8217;t see it.  When I check out the wireless status in the DD-WRT admin site, there are loads of Tx errors (100% of all attempts in fact).</p>
<p>The solution in my case is to simply change wireless security from, say, WPA to WEP, apply and save changes, then change it right back to what you had just changed from, saving and applying changes for good measure.</p>
<p>The specific reason the problem comes has something to do with a config file getting clobbered under some rare set of cicumstances, particularly if you&#8217;ve been doing config changes.  It&#8217;s been awhile since I had tracked down the issue &#8211; I should have recorded what it was.  You&#8217;ll find it in the DD-WRT forums if you&#8217;re Googling it.</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/CdE91nniiQo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=145</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=145</feedburner:origLink></item>
		<item>
		<title>Concrete5 Content Management System</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/bnjviP9Ht04/</link>
		<comments>http://capnjosh.com/blog/?p=143#comments</comments>
		<pubDate>Mon, 19 Mar 2012 04:22:25 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Concrete5]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=143</guid>
		<description><![CDATA[We have started using Concrete5 as the CMS for www.OCDemocraticSchool.com (we got .org and .net too). The short context is the idea is to start up a democratic school, much along the lines of Sudbury School. But that&#8217;s not the &#8230; <a href="http://capnjosh.com/blog/?p=143">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We have started using Concrete5 as the CMS for www.OCDemocraticSchool.com (we got .org and .net too).  The short context is the idea is to start up a democratic school, much along the lines of Sudbury School.  But that&#8217;s not the point of this post.</p>
<p>Concrete5 is pretty sweet.  It came out of the need of a web design company in Portland, OR to be able to pump out really good web sites that allowed for what became ever more opportunity for the web site owners to make content and design updates on their own.  I&#8217;ve done work with Joomla, Drupal, and a few other CMS packages&#8230; heh heh&#8230; I even wrote my own.  Concrete5 is better.  I haven&#8217;t research how well it scales to &#8220;enterprise-level&#8221; size, but I&#8217;ve seen tidbits that it may be quite good.  Whatever the case, consider it.  Lots of hosting providers have it available as a &#8220;one-click&#8221; install (I&#8217;m using Bluehost.com), so if you&#8217;re in need of such a thing, it&#8217;s worth a look-see.</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/bnjviP9Ht04" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=143</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=143</feedburner:origLink></item>
		<item>
		<title>CentOS 6.2 VMWare ESXi 5.0 Template Stuff</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/6LC18A8weDw/</link>
		<comments>http://capnjosh.com/blog/?p=141#comments</comments>
		<pubDate>Mon, 19 Mar 2012 04:13:52 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[ESXi 5]]></category>
		<category><![CDATA[Red Had]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=141</guid>
		<description><![CDATA[I want to have both Windows and Linux template VMs from which I can quickly create VMs so I can test stuff. If you want to use CentOS, ESXi won&#8217;t let you create a &#8220;Guest Customization Specificiation&#8221; for whatever reason. &#8230; <a href="http://capnjosh.com/blog/?p=141">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I want to have both Windows and Linux template VMs from which I can quickly create VMs so I can test stuff.  If you want to use CentOS, ESXi won&#8217;t let you create a &#8220;Guest Customization Specificiation&#8221; for whatever reason.  Just change the VM&#8217;s definition to say it&#8217;s going to be using RedHat of the same version number.  They&#8217;re very nearly the same OS after all.  It works fine after that.  You will find other mentions of the same if you&#8217;ve been searching.</p>
<p>I flashed my router with DD-WRT awhile back, more for the heck of it than anything, but I have found it to be more flexible than stock router management software, at least back then, so it&#8217;s been good.  One of the things I&#8217;ve done is enabled DNSMasq as a way to have hostname-to-IP mappings in the network (I&#8217;d like to use DHCP whenever possible too).  Unfortunately, Linux machines wouldn&#8217;t show up with a hostname, even though their assigned IPs were showing as &#8220;active&#8221; in the DD-WRT interface.  Doing &#8220;ping
<linuxhostname>&#8221; didn&#8217;t work either.  As it turns out, by default some or most Linux  DHCP clients don&#8217;t tell the DHCP server their hostname.  It&#8217;s a one-line configuration change, so it&#8217;s not bad.  In CentOS add the following line to /etc/sysconfi/network (I put it right below &#8220;HOSTNAME=<desiredhostname>&#8220;):</p>
<p>DHCP_HOSTNAME=<desiredhostname></p>
<p>How does this then behave when deploying a VM from a template with this setting?  Well, it&#8217;s not perfect.  the DHCP_HOSTNAME line gets changed to just another &#8220;HOSTNAME=&#8221; line, so, yeah, there are 2 lines.  And, as expected, the hostname still doesn&#8217;t show up.  If you change the second of the two HOSTNAME lines to DHCP_HOSTNAME save and do a &#8220;service network restart&#8221;, it will show up&#8230;. but now it throws an error about eth0 not seeming to be present, which could be that a NIC MAC address is not being updated.  However, networking seems to be fine, so it&#8217;s not a dealbreaker at the moment.</p>
<p>All a bit fragmented and not proof-read, but it may be helpful for someone</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/6LC18A8weDw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=141</feedburner:origLink></item>
		<item>
		<title>Fast ways to set up Web/WCF servers</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/X7L-W2W_2qQ/</link>
		<comments>http://capnjosh.com/blog/?p=139#comments</comments>
		<pubDate>Sat, 17 Mar 2012 08:55:43 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Group Policy]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[msdeploy]]></category>
		<category><![CDATA[OU]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=139</guid>
		<description><![CDATA[Here&#8217;s what I want: Deploy a VM from a template VM in VMWare Guest is renamed and added to a given domain AD computer account is assigned to the Services Organizational Unit Upon reboot/startup, the machine gets everything installed and &#8230; <a href="http://capnjosh.com/blog/?p=139">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s what I want:</p>
<p>Deploy a VM from a template VM in VMWare<br />
Guest is renamed and added to a given domain<br />
AD computer account is assigned to the Services Organizational Unit<br />
Upon reboot/startup, the machine gets everything installed and configured that it will need as a server serving up WCF services<br />
Bamboo automatically starts deploying to this new service machine upon next deployment<br />
Load balancer automatically picks up new services machines and adds them to the rotation once their application health checks succeed<br />
Life is good<br />
Profit</p>
<p>Where I&#8217;m at:<br />
VMWare vCenter guest customizations template that names the new VM and joins it to the domain<br />
I have to manually move the computer account to the Services OU, though I&#8217;m experimenting with pre-creating the computer account in the services OU)<br />
Group Policy on the Services OU that installs Web server role, installs Web Deployment agent, installs .Net 4.0<br />
I have to manually create the IIS sites and ensure their application pool is using .net 4.0<br />
Bamboo is using the below script to deploy to all servers in the Services OU, so that&#8217;s cool<br />
I&#8217;m still in the process of getting a license for a Citrix NSVPX Express license (I want to use these as my load balancers)</p>
<p>The &#8220;%%a&#8221; is the chosen variable that houses the DNS name of the services machines in the &#8220;do loop&#8221;.</p>
<p>@echo off<br />
setlocal enableextensions<br />
for /f &#8220;tokens=* delims=&#8221; %%a in (<br />
&#8216;dsquery.exe COMPUTER &#8220;OU=Services, OU=Servers, DC=JC, DC=Home&#8221; -o rdn -limit 300 -u <domain account> -p
<pwd>&#8216;<br />
) do ( </p>
<p>C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBUILD.exe ${bamboo.build.working.directory}\PlatformServices\PlatformServices.sln /P:Configuration=Release /P:DeployOnBuild=True /P:DeployTarget=MSDeployPublish /P:MsDeployServiceUrl=%%a /p:DeployIisAppPath=vireco/Services/EcologyServices /P:AllowUntrustedCertificate=True /P:MSDeployPublishMethod=RemoteAgent /P:CreatePackageOnPublish=True /P:UserName=<myuser> /P:Password=<mypwd></p>
<p>)<br />
echo %myvar%<br />
endlocal</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/X7L-W2W_2qQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=139</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=139</feedburner:origLink></item>
		<item>
		<title>Documentation on the Artemis C# Project</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/503_WMjhgJM/</link>
		<comments>http://capnjosh.com/blog/?p=137#comments</comments>
		<pubDate>Tue, 28 Feb 2012 07:20:36 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Artemis]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=137</guid>
		<description><![CDATA[I&#8217;ve started committing intellisense summaries for the Artemis C# Entity Systems framework. &#8220;thelinuxlich&#8221; has been kind enough to allow me to act as a contributor on the project here: https://github.com/thelinuxlich/artemis_CSharp. If you see any errors, please let me know. Be &#8230; <a href="http://capnjosh.com/blog/?p=137">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started committing intellisense summaries for the Artemis C# Entity Systems framework.  &#8220;thelinuxlich&#8221; has been kind enough to allow me to act as a contributor on the project here: https://github.com/thelinuxlich/artemis_CSharp.</p>
<p>If you see any errors, please let me know.  Be brutal and straight to the point.  I&#8217;m more interested in seeing the project move forward than I am in bolstering my own ego <img src='http://capnjosh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   My hope is to provide enough intellisense summaries that someone can fairly readily understand how all the major parts fit together.  It seems I&#8217;d have to put some amount of intended purpose, and likely some contextual references to other related methods.  Not sure if this is considered a totally inappropriate use of intellisense, but let me know.</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/503_WMjhgJM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=137</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=137</feedburner:origLink></item>
		<item>
		<title>BlockJump – Gonna put it on the WP7 Marketplace</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/zceU-EneW-8/</link>
		<comments>http://capnjosh.com/blog/?p=135#comments</comments>
		<pubDate>Tue, 28 Feb 2012 07:08:51 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Marketplace]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=135</guid>
		<description><![CDATA[It&#8217;s time to push myself to polish something &#8220;enough&#8221; to get it accepted on the WP7 Marketplace. My chosen game is &#8220;Block Jump&#8221;. It&#8217;s an insanely simple concept, and it may be too much of a rehash: you jump over &#8230; <a href="http://capnjosh.com/blog/?p=135">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s time to push myself to polish something &#8220;enough&#8221; to get it accepted on the WP7 Marketplace.  My chosen game is &#8220;Block Jump&#8221;.  It&#8217;s an insanely simple concept, and it may be too much of a rehash: you jump over blocks of varying size that slide at you at varying speeds.  You score points while you touch the ground, and you get more points faster the longer you touch the ground.  I try to keep the score stored on my server and keyed off the deviceID of the phone.  The game can operate just fine disconnected, as it stores the score locally as well.  I have a tile/icon set up (properties of the game project in VS2010), and I have swapped out the main &#8220;actor&#8221; graphic for a higher-resolution version.  I think I already  have the game fitting within the requirements, as it doesn&#8217;t even have a full menu and it quits rather than tombstones.</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/zceU-EneW-8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=135</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=135</feedburner:origLink></item>
		<item>
		<title>Block Jump project</title>
		<link>http://feedproxy.google.com/~r/Capnjosh/~3/kxo0wwdbmiA/</link>
		<comments>http://capnjosh.com/blog/?p=133#comments</comments>
		<pubDate>Mon, 20 Feb 2012 08:16:57 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://capnjosh.com/blog/?p=133</guid>
		<description><![CDATA[My boy fairly regularly asks if he can see my game [on the phone]. I haven&#8217;t made anything new in about a week now, and his asking has been a reality check that if I&#8217;m serious about learning the game &#8230; <a href="http://capnjosh.com/blog/?p=133">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My boy fairly regularly asks if he can see my game [on the phone].  I haven&#8217;t made anything new in about a week now, and his asking has been a reality check that if I&#8217;m serious about learning the game programming craft, I need to be pretty harsh about actually producing stuff as often as I can.</p>
<p>To that end, I added features and polish to my Block Jump game.  The main character, a happy face is now of higher resolution and handles transparency better, an exploit has been fixed, there is a score multiplier based on how long you can stay on the ground before jumping or getting hit with a block, and the game will exit with both the back and home buttons.  There is now a &#8220;Get Ready&#8221; state when first starting the game where nothing is affected until the first block rolls by.  Combined with the fact that the game always exits when focus shifts away, this provides a crude &#8220;paused&#8221; state, which I think is actually within range of &#8220;appropriate&#8221;.</p>
<img src="http://feeds.feedburner.com/~r/Capnjosh/~4/kxo0wwdbmiA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://capnjosh.com/blog/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://capnjosh.com/blog/?p=133</feedburner:origLink></item>
	</channel>
</rss>

