<?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>littlebigtomatoes</title>
	<atom:link href="http://www.littlebigtomatoes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littlebigtomatoes.com</link>
	<description>Adventures of a geek, trying to create something cool....</description>
	<lastBuildDate>Mon, 07 May 2012 14:17:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Developer Recipes &#8211; Using Git and Dropbox together</title>
		<link>http://www.littlebigtomatoes.com/2012/05/developer-recipes-using-git-and-dropbox-together/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=developer-recipes-using-git-and-dropbox-together</link>
		<comments>http://www.littlebigtomatoes.com/2012/05/developer-recipes-using-git-and-dropbox-together/#comments</comments>
		<pubDate>Mon, 07 May 2012 14:13:28 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Recipes]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=117</guid>
		<description><![CDATA[Using git and Dropbox together I love coding. My work is my hobby and I like to write small little apps and tools that I can use myself. I also use several machines with multiple operating systems on them and I need a workflow that would allow me to seamlesly synchornize between my machines. For [...]]]></description>
			<content:encoded><![CDATA[<h1 id="using_git_and_dropbox_together">Using git and Dropbox together</h1>
<p>I love coding. My work is my hobby and I like to write small little apps and tools that I can use myself. I also use several machines with multiple operating systems on them and I need a workflow that would allow me to seamlesly synchornize between my machines. For this I created this process that involves git and dropbox, to keep my personal projects under source code control and have it synchroned to all my machines automatically. So I decided to document this method here.</p>
<p><strong>Disclaimer:</strong> I do not invented this method. Originally I saw the idea on stackoverflow.com:</p>
<p><a title="Stackoverflow - Using git dropbox together effectively?" href="http://stackoverflow.com/questions/1960799/using-gitdropbox-together-effectively">Stackoverflow &#8211; Using git dropbox together effectively?</a></p>
<p>I am also not convinced that this method is suitable for more than one person to use. I am a single developer and this process fits my need perfectly.</p>
<h2 id="overview">Overview</h2>
<p>I use Visual Studio.NET 2010, <a href="https://www.dropbox.com/">dropbox</a> and <a href="http://code.google.com/p/msysgit/">msysgit</a> on all my Windows machines. I am mainly developing for my Windows Phone and soon I will try to create Metro Apps for Windows 8. Although, this will be .NET and Visual Studio centric recipe, you can still use it with your own stuff. The only crucial component is dropbox and git.</p>
<p>Let say, you have two machines. One laptop that you carry around and one desktop. Both have dropbox and git installed. You start creating your project on your laptop, but when you arrive home you would like to continue the coding on your desktop machine. So what will happen is the following:</p>
<ul>
<li>I will set up the project on my laptop and add it to the git source control</li>
<li>I will initialize a bare repository on my laptop’s dropbox folder.</li>
<li>Will push the project to dropbox.</li>
<li>Get the project on the desktop machine</li>
</ul>
<h2 id="setting_up_project_and_add_it_to_git">Setting up project and add it to git</h2>
<ul>
<li>Set up your Visual Studio.NET project and do some coding</li>
</ul>
<p>First, thing first is to create your application in Visual Studio.NET 2010. I will create a new todo app for my Windows Phone called <strong>TodoApp_WP7</strong>. Cannot see enough todo app on this new platform yet. So we need one <img src='http://www.littlebigtomatoes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>Initialize the git repository in the solution folder</li>
</ul>
<p>Open up msysgit and navigate to your solution folder. Initialize your git repo and your</p>
<blockquote><p>git init</p></blockquote>
<p>Before adding your project files, it is a good idea to create a .gitognore file. Here you can specify what files you want to exclude from source code controll! So in your msysgit command line you issue this command to create .gitignore and add the things you would like to ignore.</p>
<blockquote><p>touch .gitignore<br />
notepad .gitignore</p></blockquote>
<p>I have something like this in my .gitignore</p>
<blockquote><p>User-specific files</p>
<p>*.suo<br />
*.user<br />
*.sln.docstates</p>
<p>Others</p>
<p>[Bb]in<br />
[Oo]bj</p></blockquote>
<p>Then you can add your files and do your first commit</p>
<blockquote><p>git add .<br />
git commit -m “first commit”</p></blockquote>
<h2 id="pushing_the_changes_to_dropbox">Pushing the changes to Dropbox</h2>
<ul>
<li>Create a git folder in your Dropbox folder and initialize a bare git repository</li>
</ul>
<p>Navigate to your git dropbox folder and create your bare repository. Navigating in the git shell can be tricky to someone, who knows only windows command line.</p>
<p>My Dropbox is installed on my machine here D:\Dropbox, so to go to that folder you need to issue this command:</p>
<blockquote><p>cd /d/Dropbox/git<br />
git init —bare TodoApp_WP7.git</p></blockquote>
<ul>
<li>Adding remotes</li>
</ul>
<p>Now you need to go back to your project directory and configure the dropbox folder as the origin for your project. I also add a remote called dropbox as a convenience.</p>
<blockquote><p>git remote add origin /d/Dropbox/git/TodoApp<em>WP7.git<br />
git remote add dropbox /d/Dropbox/git/TodoApp</em>WP7.git</p></blockquote>
<ul>
<li>Push the project to your bare dropbox repository</li>
</ul>
<p>Now you need to push the project to your dropbox repository</p>
<blockquote><p>git push -u origin master</p></blockquote>
<ul>
<li>On your other machine just simply do a git clone to get the project</li>
</ul>
<h2 id="getting_your_project_from_dropbox_to_another_computer_for_the_first_time">Getting your project from Dropbox to another computer for the first time</h2>
<p>When logging on to your other machine you will see that dropbox is busy to refresh all the files you were changing or it already has been happened. All you need to do is to open up the git client on your machine, navigate to your dev folder an issue the command</p>
<blockquote><p>git clone /d/Dropbox/git/TodoApp_WP7.git</p></blockquote>
<p>This will create the folder in your dev folder and gets the source code of your app. You will need not to worry about remotes, however you can create anew remote called dropbox, if you like.<br />
Now you are ready to launch Visual Studio on the machine and do some changes. After finishing your work you can return to the git command line and issue the following command to find out what has changed:</p>
<blockquote><p>git status</p></blockquote>
<p>You will see all files that are changed or new. You will need to add the changes to your change set and commit these changes .</p>
<blockquote><p>git add .<br />
git commit -m “My new changes to my app”</p></blockquote>
<p>With the commit command you added all the changes to your git repository. However, you still need to push these changes to your dropbox. It is called origin and it is automatically created when you cloned your project from dropbox.</p>
<p>All you need to do is to issue the following command:</p>
<blockquote><p>git push</p></blockquote>
<p>Now you are done with all the changes and these are now synchronized on all your developer machines.</p>
<h2 id="getting_the_changes_for_your_project_on_a_machine_that_already_has_your_project">Getting the changes for your project on a machine that already has your project.</h2>
<p>This is the simples command. All you need to do is to go to your project repository and do a pull operation:</p>
<blockquote><p>git pull</p></blockquote>
<p>I hope that you will find this method useful for synchronizing code between your computer via dropbox and git. If you have any questions, please do not hesitate to contact me!</p>
<h2 id="useful_links">Useful links</h2>
<ul>
<li><a title="Git Cheat Sheet" href="https://github.com/AlexZeitler/gitcheatsheet/blob/master/gitcheatsheet.pdf">git cheat sheet</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2012/05/developer-recipes-using-git-and-dropbox-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An easy way to create awesome looking Windows Phone7 icons using expression Design</title>
		<link>http://www.littlebigtomatoes.com/2012/03/an-easy-way-to-create-awesome-looking-windows-phone7-icons-using-expression-design/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=an-easy-way-to-create-awesome-looking-windows-phone7-icons-using-expression-design</link>
		<comments>http://www.littlebigtomatoes.com/2012/03/an-easy-way-to-create-awesome-looking-windows-phone7-icons-using-expression-design/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 17:18:08 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[windowsphone]]></category>
		<category><![CDATA[wp7]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=85</guid>
		<description><![CDATA[I am always having problems when it comes to creating icons for my Wp7 apps. I am a coder and not a designer, so drawing something nice looking is really really out of my comfort zone. Previously I spent hours trying to draw symbols myself, but I never really liked the outcome. But lately, I [...]]]></description>
			<content:encoded><![CDATA[<p>I am always having problems when it comes to creating icons for my Wp7 apps. I am a coder and not a designer, so drawing something nice looking is really really out of my comfort zone.</p>
<p>Previously I spent hours trying to draw symbols myself, but I never really liked the outcome. But lately, I found a quick and effective way to create nice looking icons for my Windows Phone 7 apps. Here it goes:</p>
<h2>The Noun project</h2>
<p>First, I go to the <a title="The Noun Project" href="http://thenounproject.com" target="_blank">nounproject</a> website to find some nice looking symbols. This website has hundreeds of symbols and you can download them for free in vector format. The graphics comes with a Creative Commons license, so you&#8217;re free to do whatever you want with them. Sounds pretty neat, if you ask me!</p>
<div class="wp-caption aligncenter" style="width: 270px"><a href="http://thenounproject.com" target="_blank"><img title="thenounproject" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/000.png" alt="thenounproject website" width="260" height="215" /></a><p class="wp-caption-text">thenounproject website</p></div>
<p>Once, you found the symbol you like, download and extract it. The symbol is in SVG format. I am using Expression Design for drawing my icons, but Design unfortunately does not support SVG yet. I need a tool that can convert SVG to something that I can import to Expression Design.</p>
<div class="wp-caption aligncenter" style="width: 270px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/001.png"><img title="Symbol from thenounproject website." src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/001_thumb.png" alt="Symbol from thenounproject website." width="260" height="196" /></a><p class="wp-caption-text">Choose a symbol from thenounproject site.</p></div>
<h2>Inkscape</h2>
<p>With Inkscape I can do exactly this. Inkscape can import SVG and can export .PDF and .PDF can be imported to Expression Design. Inkscape is a very cool, free and open source drawing application. You can download it from <a title="Inkscape Download" href="http://inkscape.org/">here</a>.</p>
<div class="wp-caption aligncenter" style="width: 270px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/002.png"><img title="Inkscape" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/002_thumb.png" alt="Inkscape" width="260" height="246" /></a><p class="wp-caption-text">Download and install Inkscape</p></div>
<p>Once Inkscape is installed then you can import the .SVG file and save it as .PDF file. After that I change the  .PDF extension to .AI and now I can import into Expression Design.</p>
<p>First, import your svg file to Inkscape for converting to AI format:</p>
<div class="wp-caption aligncenter" style="width: 270px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/003.png"><img title="Import your symbol to Inkscape" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/003_thumb.png" alt="Import your symbol to Inkscape" width="260" height="226" /></a><p class="wp-caption-text">Import your symbol to Inkscape</p></div>
<div class="wp-caption aligncenter" style="width: 270px"><a class="thickbox" href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/004.png"><img title="Symbol imported" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/004_thumb.png" alt="Symbol imported" width="260" height="225" /></a><p class="wp-caption-text">Symbol imported</p></div>
<p>Then save the your symbol in PDF format. Make sure that PDF 1.4 is selected as PDF version:</p>
<div class="wp-caption aligncenter" style="width: 270px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/005.png"><img title="Export your symbol in PDF format" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/005_thumb.png" alt="Export your symbol in PDF format" width="260" height="224" /></a><p class="wp-caption-text">Export your symbol in PDF format</p></div>
<div class="wp-caption aligncenter" style="width: 270px"><a class="thickbox" href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/007.png"><img title="Setting the correct PDF version" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/007_thumb.png" alt="Setting the correct PDF version" width="260" height="223" /></a><p class="wp-caption-text">Setting the correct PDF version</p></div>
<h2>Expression Design</h2>
<p>Before importing to Expression Design rename the exported .pdf to  .ai. This way Expression Design can export your artwork as an Adobe Illustrator file.</p>
<div class="wp-caption aligncenter" style="width: 270px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/009.png"><img title="Importing to Expression Design" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/009_thumb.png" alt="Import your artwork to Expression Design" width="260" height="192" /></a><p class="wp-caption-text">Import your artwork to Expression Design</p></div>
<p>Here in Expression Design I can re-use my icon design template to create all the different sizes of icons that are needed for my WP7 app and export them to .PNG format to embedd in your WP7 Application project.</p>
<div class="wp-caption aligncenter" style="width: 270px"><a class="thickbox" href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/010.png"><img title="Artwork in Expression Design" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/010_thumb.png" alt="Your artwork now imported to Expression Design" width="260" height="210" /></a><p class="wp-caption-text">Your artwork now imported to Expression Design</p></div>
<p>You can also change the shape as it is vector based to alter the shape!</p>
<div class="wp-caption aligncenter" style="width: 253px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/011.png"><img title="Vector shapes in Expression Design" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/011_thumb.png" alt="Vector shapes in Expression Design" width="243" height="244" /></a><p class="wp-caption-text">Vector shapes in Expression Design</p></div>
<h2>Bonus</h2>
<p>If you would like to have this artwork in your silverlight, wpf or your windows phone app, you can also create a xaml file out of it in Expression Blend importing the .ai file and converting it to xaml.</p>
<div class="wp-caption aligncenter" style="width: 270px"><a class="thickbox" href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/014.png"><img title="Artwork in Blend" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/03/014_thumb.png" alt="Artwork imported to Expression Blend" width="260" height="184" /></a><p class="wp-caption-text">Artwork imported to Expression Blend</p></div>
<p>Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2012/03/an-easy-way-to-create-awesome-looking-windows-phone7-icons-using-expression-design/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My version of the IKEAPad</title>
		<link>http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-version-of-the-ikeapad</link>
		<comments>http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 06:50:24 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[hacks]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[ikeahacker]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=45</guid>
		<description><![CDATA[I recently saw the IKEAPad stand on IKEA Hackers and I really liked it. IKEAPad is basically a simple iPad stand constructed from an Ekby Valter that costs 3$, that is less cheaper that you would pay for any iPad stand on the market. After reading the article, I decided to create my own version, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently saw the <a title="IKEAPad" href="http://www.ikeahackers.net/2010/12/ikeapad-stand.html">IKEAPad stand</a> on <a title="IKEA Hackers" href="http://www.ikeahackers.net/">IKEA Hackers</a> and I really liked it. <a title="IKEAPad" href="http://www.ikeahackers.net/2010/12/ikeapad-stand.html">IKEAPad</a> is basically a simple iPad stand constructed from an <a title="Ekby Valter" href="http://www.ikea.com/us/en/catalog/products/76696009/">Ekby Valter</a> that costs 3$, that is less cheaper that you would pay for any iPad stand on the market. After reading the article, I decided to create my own version, for this you will need to buy 2 pieces of Ekby Valter and take out the shortest piece of wood from one of the Ekby Valter and use it as a dowel. I guess it is easier to understand if you see it.</p>
<div id="attachment_55" class="wp-caption alignnone" style="width: 310px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003951.jpg"><img class="size-medium wp-image-55  " title="Finished iPad stand" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003951-300x225.jpg" alt="The finished iPad stand in my kitchen holding the iPad" width="300" height="225" /></a><p class="wp-caption-text">Finished iPad stand</p></div>
<p>The rest of the images:</p>

<a href='http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/wp_000394/' title='Testing with iPad'><img width="150" height="150" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_000394-150x150.jpg" class="attachment-thumbnail" alt="Testing with iPad" title="Testing with iPad" /></a>
<a href='http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/wp_000395-2/' title='Finished iPad stand'><img width="150" height="150" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003951-150x150.jpg" class="attachment-thumbnail" alt="The finished iPad stand in my kitchen holding the iPad" title="Finished iPad stand" /></a>
<a href='http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/wp_000398-2/' title='Finished iPad stand in the kitchen'><img width="150" height="150" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003981-150x150.jpg" class="attachment-thumbnail" alt="Finished iPad stand in the kitchen" title="Finished iPad stand in the kitchen" /></a>
<a href='http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/wp_000391-2/' title='Ekby Valter'><img width="150" height="150" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003911-150x150.jpg" class="attachment-thumbnail" alt="Ekby Valter" title="Ekby Valter" /></a>
<a href='http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/wp_000392-2/' title='Ekby Valter parts'><img width="150" height="150" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003921-150x150.jpg" class="attachment-thumbnail" alt="Ekby Valter parts" title="Ekby Valter parts" /></a>
<a href='http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/wp_000394-2/' title='iPad stand is ready'><img width="150" height="150" src="http://www.littlebigtomatoes.com/wp-content/uploads/2012/01/WP_0003941-150x150.jpg" class="attachment-thumbnail" alt="iPad stand is ready" title="iPad stand is ready" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2012/01/my-version-of-the-ikeapad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An easy way to create Windows Phone 7 Icons using Expression Design</title>
		<link>http://www.littlebigtomatoes.com/2011/11/an-easy-way-to-create-windows-phone-7-icons-using-expression-design/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=an-easy-way-to-create-windows-phone-7-icons-using-expression-design</link>
		<comments>http://www.littlebigtomatoes.com/2011/11/an-easy-way-to-create-windows-phone-7-icons-using-expression-design/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 05:23:55 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[expressiondesign]]></category>
		<category><![CDATA[wp7]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=38</guid>
		<description><![CDATA[In the past I had problems when I wanted to create icons quickly for my Windows Phone 7 apps before submitting them to the marketplace certification. A good set of consistent icons is a good way to give a good first impression to your future customers, but if you decide to create those icons yourself [...]]]></description>
			<content:encoded><![CDATA[<p>In the past I had problems when I wanted to create icons quickly for my Windows Phone 7 apps before submitting them to the marketplace certification. A good set of consistent icons is a good way to give a good first impression to your future customers, but if you decide to create those icons yourself then it is a time consuming task. I decided to fix this problem for good!</p>
<div id="attachment_37" class="wp-caption alignnone" style="width: 310px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2011/11/expression_design.png"><img class="size-medium wp-image-37" title="expression_design" src="http://www.littlebigtomatoes.com/wp-content/uploads/2011/11/expression_design-300x176.png" alt="Windows Phone 7 Icons with Expression Design" width="300" height="176" /></a><p class="wp-caption-text">Windows Phone 7 Icons with Expression Design</p></div>
<p>For your application and for marketplace submission you will need the following artwork:</p>
<ul>
<li>Application Icon (62 x 62)</li>
<li>Application Tile Image (173 x 173)</li>
<li>Marketplace catalog icon (small) (99 x 99)</li>
<li>Marketplate catalog icon (large) (173 x 173)</li>
<li>Desktop application icon (200 x 200)</li>
</ul>
<p>To create an icon and the resize it correctly and export it is always a lot of repetitive work, the one I do not enjoy. So in my favorite design tool &#8211; Expression Design 4 &#8211; created a file, where all you need is to replace the shape in each icon and select <strong>File | Export</strong> and you are done. All the icons will be ready for your project.</p>
<p>I created a git repository for it called <a title="WP7ExpressionIcons github repo" href="https://github.com/gyurisc/WP7ExpressionIcons">WP7ExpressionIcons</a>.</p>
<p>I used this to articles as my starting point:</p>
<ul>
<li><a title="Windows Phone 7 Icons" href="http://cgeers.com/2011/10/30/programming-windows-phone-7-5-part-2-icons/#more-3521" target="_blank">Programming Windows Phone 7.5 Part 2: Icons</a></li>
<li><a title="Creating Windows Phone 7 Application and Marketplace icons" href="http://expression.microsoft.com/en-us/gg317447" target="_blank">Creating Windows Phone 7 Application and Marketplace icons</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2011/11/an-easy-way-to-create-windows-phone-7-icons-using-expression-design/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>BootstrapMVC, an ASP.NET MVC project using Twitter Bootstrap</title>
		<link>http://www.littlebigtomatoes.com/2011/09/bootstrapmvc-an-asp-net-mvc-project-using-twitter-bootstrap/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bootstrapmvc-an-asp-net-mvc-project-using-twitter-bootstrap</link>
		<comments>http://www.littlebigtomatoes.com/2011/09/bootstrapmvc-an-asp-net-mvc-project-using-twitter-bootstrap/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 11:22:35 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net mvc]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter bootstrap]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=28</guid>
		<description><![CDATA[My favorite web development framework is ASP.NET MVC. I like its simplicity and that it is very easy to learn. The whole approach is just makes sense to me, unlike the classic ASP.NET. However, the default MVC theme is getting really old and bring. I also really like the Twitter Bootstrap framework from twitter. It [...]]]></description>
			<content:encoded><![CDATA[<p>My favorite web development framework is <strong>ASP.NET MVC</strong>. I like its simplicity and that it is very easy to learn. The whole approach is just makes sense to me, unlike the classic ASP.NET. However, the default MVC theme is getting really old and bring.</p>
<p>I also really like the <strong><a title="Twitter Bootstrap" href="https://dev.twitter.com/blog/bootstrap-twitter" target="_blank">Twitter Bootstrap</a></strong> framework from twitter. It looks totally awesome and it can be used to create good looking websites really quick. So it made sense to create an MVC project using <strong><a title="Twitter Botstrap" href="https://dev.twitter.com/blog/bootstrap-twitter">Twitter Bootstrap</a></strong>. The result is <strong><a title="BootstrapMVC" href="https://github.com/gyurisc/BootstrapMVC">BootstrapMVC</a></strong>.</p>
<p>BootstrapMVC is an ASP.NET MVC project using the Twitter Botstrap CSS. Just download it from github and open the solution file in Visual Studio.NET.</p>
<p>This is how it looks:</p>
<div id="attachment_26" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.littlebigtomatoes.com/wp-content/uploads/2011/09/BootstrapMVC.png"><img class="size-medium wp-image-26" title="BootstrapMVC" src="http://www.littlebigtomatoes.com/wp-content/uploads/2011/09/BootstrapMVC-300x217.png" alt="ASP.NET MVC theme using Twitter Bootstrap" width="300" height="217" /></a><p class="wp-caption-text">BootstrapMVC</p></div>
<p>Check out the <a title="BootstrapMVC project page" href="http://www.littlebigtomatoes.com/bootstrapmvc/" target="_blank">BootstrapMVC</a> or <a title="BootstrapMVC on github" href="https://github.com/gyurisc/BootstrapMVC" target="_blank">download the project from github</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2011/09/bootstrapmvc-an-asp-net-mvc-project-using-twitter-bootstrap/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Apphub membership is free for Nokia Launchpad members</title>
		<link>http://www.littlebigtomatoes.com/2011/08/apphub-membership-is-free-for-nokia-launchpad-members/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apphub-membership-is-free-for-nokia-launchpad-members</link>
		<comments>http://www.littlebigtomatoes.com/2011/08/apphub-membership-is-free-for-nokia-launchpad-members/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 12:18:11 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wp7]]></category>
		<category><![CDATA[wp7dev]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=14</guid>
		<description><![CDATA[It seems that you can save the price of 1 year Microsoft AppHub membership, if you are a Nokia Launchpad member and an Ovi Appstore Publisher. If you use the same email address that you used to register with Nokia Launchpad to register for a one year membership for Apphub, the $99 price of the [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that you can save the price of 1 year <a title="Apphub" href="http://create.msdn.com/en-US/" target="_blank">Microsoft AppHub</a> membership, if you are a<a title="Nokia Launchpad" href="https://www.developer.nokia.com/Developer_Programs/Launchpad/" target="_blank"> Nokia Launchpad</a> member and an <a title="Ovi Publisher" href="http://info.publish.ovi.com/" target="_blank">Ovi Appstore Publisher</a>.</p>
<p>If you use the same email address that you used to register with Nokia Launchpad to register for a one year membership for Apphub, the $99 price of the membership will be returned to you.</p>
<p>The Apphub is the main site, where you can register to publish apps to the Windows Phone 7 Marketplace or to xbox360, a one year membership costs $99 dollars. So if you are planning to develop and publish apps for the Windows Phone 7 platform then it is time take the chance and register for free.</p>
<p>Here is the information from Nokia:</p>
<blockquote><p>We are offering a free Microsoft App Hub registration for the first one year to those Nokia Developer PRO and Launchpad members who are registered Ovi publishers in the countries that Microsoft supports on the App Hub. This offer will save you $99 USD (the regular annual membership fee) as the membership fee will be refunded to you by Microsoft. The membership will give you access to submit applications for Windows Phone Marketplace as well as access to the developer tools, documentation, code samples and forums.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2011/08/apphub-membership-is-free-for-nokia-launchpad-members/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Plus for .NET</title>
		<link>http://www.littlebigtomatoes.com/2011/07/google-plus-for-net/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-plus-for-net</link>
		<comments>http://www.littlebigtomatoes.com/2011/07/google-plus-for-net/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 14:05:41 +0000</pubDate>
		<dc:creator>gyurisc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[dotnet]]></category>

		<guid isPermaLink="false">http://www.littlebigtomatoes.com/?p=9</guid>
		<description><![CDATA[I uploaded my first version of the GooglePlus.NET unofficiall API called Dotnet.GooglePlus. Happy Hacking!]]></description>
			<content:encoded><![CDATA[<p>I uploaded my first version of the GooglePlus.NET unofficiall API called <a title="Dotnet.googleplus on GitHub" href="https://github.com/gyurisc/dotnet.googleplus">Dotnet.GooglePlus</a>. Happy Hacking! <img src='http://www.littlebigtomatoes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlebigtomatoes.com/2011/07/google-plus-for-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

