<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Stereo Interactive &#38; Design</title>
	<link>http://stereointeractive.com/blog</link>
	<description>Development Blog</description>
	<lastBuildDate>Wed, 07 Jul 2010 19:16:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Git Basics</title>
		<description><![CDATA[A cheat-sheet to reference while getting started with git.
1. Pull down a copy of the repository:

git clone &#60;repository&#62;

2. List available branches (on the remote server)

git branch -r

3. Create a new branch

git branch &#60;branchname&#62;

4. Switch to an existing branch

git checkout &#60;branchname&#62;

5. After you have made changes to your local files, you can review what has changed [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/07/06/git-basics/</link>
			</item>
	<item>
		<title>MySQL Emergency</title>
		<description><![CDATA[My friends Lawrence Krubner and Darren Hoyt just launched MySql Emergency. It&#8217;s a site where you can post urgent MySql questions and post a small bounty ($4 or more) for a good solution to your problem. 
MySql Emergency is problem-solving community for MySql, ideal for users seeking quick, succinct answers they can&#8217;t find in any [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/05/09/mysql-emergency/</link>
			</item>
	<item>
		<title>Moving wordpress site to another server</title>
		<description><![CDATA[There was a question posted on WP Questions about moving a wordpress from a local development server to the live server. Here is what I do for just about all of my WP sites. It works for me since while I&#8217;m building out a site I usually make local changes that I have to sync [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/04/19/moving-wordpress-site-to-another-server/</link>
			</item>
	<item>
		<title>Wordpress navigation, link to page or category</title>
		<description><![CDATA[Here is a quick snippet of a non-elegant way to create a navigation for a wordpress template. This sample includes links to specific pages using get_permalink() and is_page(), along with get_category_link() and in_category(). Using these functions you can determine if each link should be in its active state or not.


$links = array&#40;
  'Industry Studies' [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/04/10/wordpress-navigation-link-to-page-or-category/</link>
			</item>
	<item>
		<title>symfony forms: hide created_at, updated_at columns</title>
		<description><![CDATA[There are a few different methods you can use if you&#8217;d like to hide created_at and updated_at columns from your generated forms.
The first way, and the easiest, is to simply unset the fields in your form class:


class SampleForm extends BaseSampleForm
&#123;   
  public function configure&#40;&#41;
  &#123;
    unset&#40;
   [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/04/07/symfony-forms-hide-created_at-updated_at-columns/</link>
			</item>
	<item>
		<title>Symfony 1.2 doctrine file upload in form</title>
		<description><![CDATA[Here are the required modifications for to a form class that contains a file upload field in symfony 1.2 using doctrine (and it probably works with propel, too).


class NewsletterForm extends BaseNewsletterForm
&#123;
  public function configure&#40;&#41;
  &#123;
    $this-&#62;widgetSchema&#91;'file'&#93; = new sfWidgetFormInputFileEditable&#40;array&#40;
      'file_src' =&#62; '/uploads/'.$this-&#62;getObject&#40;&#41;-&#62;getfile&#40;&#41;,
    [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/03/30/symfony-1-2-doctrine-file-upload-in-form/</link>
			</item>
	<item>
		<title>twitter contest rules</title>
		<description><![CDATA[I&#8217;ve wondered what the rules and regulars are surrounding holding a contest in which prizes are given away based on &#8220;tweeted&#8221; entries. Many years ago a business of mine sponsored a large-scale sweepstakes, and besides the &#8220;no purchase necessary&#8221; clause, we had to accept  hand entries via mail. Here is a snippet of some [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/03/30/twitter-contest-rules/</link>
			</item>
	<item>
		<title>Process for Submitting your iPad App to the App Store</title>
		<description><![CDATA[	]]></description>
		<link>http://stereointeractive.com/blog/2010/03/26/process-for-submitting-your-ipad-app-to-the-app-store/</link>
			</item>
	<item>
		<title>AirPort Extreme vs AirPort Express</title>
		<description><![CDATA[I recently updated our home network from an AirPort Express (802.11g) to an AirPort Extreme (late 2009, dual-band). The AirPort Express works great; it&#8217;s small, easy to set up, and we only have a few devices on our network and use it to stream music just about all day long. The only time we encounter [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/03/23/airport-extreme-vs-airport-express/</link>
			</item>
	<item>
		<title>symfony sync command configuration (with symfony 1.0)</title>
		<description><![CDATA[I recently discovered a quick way to edit the rsync parameters used when executing the symfony sync command with symfony 1.0. 
I wanted to ignore timestamp and permissions differences, which wasn&#8217;t possible using the default configuration due to the -a (which stands for &#8216;archive&#8217; mode) parameter added to the rsync command. If you want to [...]]]></description>
		<link>http://stereointeractive.com/blog/2010/03/22/symfony-sync-command-configuration-with-symfony-1-0/</link>
			</item>
</channel>
</rss>
