<?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>alfredoalvarez.com</title>
	<atom:link href="http://alfredoalvarez.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://alfredoalvarez.com/blog</link>
	<description>Photography, Silversmithing and Programming</description>
	<lastBuildDate>Mon, 23 Apr 2012 06:49:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Writing my first windows 8 Metro App</title>
		<link>http://alfredoalvarez.com/blog/?p=329</link>
		<comments>http://alfredoalvarez.com/blog/?p=329#comments</comments>
		<pubDate>Mon, 23 Apr 2012 06:49:55 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[programming; xaml; windows 8]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=329</guid>
		<description><![CDATA[Hi Everyone, Today I got started building my first windows 8 app. Decided that I wanted to write a standard WPF MVVM app and try the javascript interactions later. Loaded my windows 8 image created a project and downloaded Prism to get started. I was surprised while adding the dll&#8217;s to prism that they do [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Everyone,    <br />Today I got started building my first windows 8 app. Decided that I wanted to write a standard WPF MVVM app and try the javascript interactions later. Loaded my windows 8 image created a project and downloaded Prism to get started. I was surprised while adding the dll&#8217;s to prism that they do not work with windows core which is the framework that metro apps run on that. Realized that I&#8217;m going to have to be crafty and just take the exact part of Prism and adapt them.    <br />Opened expression blend created a project from a template to get started.    <br />First thing to surprise me was to see that the toolbar is completely gone replaced by the appbar. They work the same way therefore more of an inconvenience of recognizing what the name of the component is. </p>
<p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">
<p>&lt;appbar grid.column=&quot;0&quot; grid.row=&quot;0&quot;&gt;</p>
<p>&lt;stackpanel&gt;</p>
<p>&lt;button horizontalalignment=&quot;Left&quot; verticalalignment=&quot;Top&quot;&gt;</p>
<p>&lt;ellipse              <br />Height=40t </p>
<p>Width=40 </p>
<p>StrokeThickness=3</p>
<p>Stroke={StaticResource ApplicationTextBrush}/&gt; </p>
<p>&lt;/button&gt;</p>
<p>&lt;/stackpanel&gt;</p>
<p>&lt;/appbar&gt;</p>
</td>
</tr>
</tbody>
</table>
<p>After that the next item that stomped me was when I tried to look for icons clicling on any picture takes me to a full screen method in which at the moment scrolling did not work on the folder that I was. Weird behavior kept me having go back and forth between the folders on the desktop and the metro start page&#8230;</p>
<p>While doing this I had my ui freeze causing a restart. Which is okay since its a beta preview.</p>
<p>A cool thing that I noticed is the new standard template breaks your app into folders Assets, Common, DataModel. If you add a xaml resource into the Common folder gets automatically added has a merged dictionary on the app level.</p>
<p>After adding the shared dictionary I wanted to add a textblock surrounded by a circle I tried to copy some old code using the label type to discover that it no longer exists.</p>
<p>Got the same effect from using:<br />
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">
<p>&lt;button&gt;              <br />&#160; &lt;border horizontalalignment=&quot;Center&quot; verticalalignment=&quot;Center&quot; width=&quot;40&quot; height=&quot;40&quot; borderbrush=&quot;{StaticResource ApplicationTextBrush}&quot; borderthickness=&quot;3&quot; cornerradius=&quot;20&quot;&gt;</p>
<p>&#160;&#160; &lt;textblock horizontalalignment=&quot;Center&quot; verticalalignment=&quot;Center&quot;&gt;40 F&lt;/textblock&gt; </p>
<p>&#160;&#160;&#160; &lt;/border&gt;</p>
<p>&#160;&#160;&#160; &lt;/button&gt;</p>
</td>
</tr>
</tbody>
</table>
<p>Since I was using it a bunch of places decide to make it a global resource to find out that the syntax for declaring types has changed from:    <br />{StaticResource {x:Type Button}}&quot;     <br />To be more similar to what is used in Silverlight which can be read on this link:     <br />Which requires to either create and converter for similar functionality or reference directly from the based template of the controls which is what I did by doing:     <br />BasedOn=&quot;{StaticResource AppBarButtonStyle}&quot;</p>
<p>At the end in order to substituthe contentcontrol behavior that I would normally use a label for used a contentcontrol which made the button look the way I desired.</p>
<p>Another point to make to change the application loaded frame you want to go to app.xaml.cs -&gt; protected override void OnLaunched(LaunchActivatedEventArgs args);</p>
<p>Overall so far got quite some progress on this. Like the new setup for the project. Feel like sometimes while testing the os crashes a bit much and I need to more exploration of all the controls(ToggleButton rock). Added some resources on the button and will keep making post has the application progress and post some images later. At the end some links to a few resources.</p>
<p>-Alfredo Out</p>
<p>Icon Resource    <br />I&#8217;m using the ones from this website but you can also use the ones from the phone.     <br />http://www.iconsforwindows8.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=329</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xaml DataBinding to current datacontext</title>
		<link>http://alfredoalvarez.com/blog/?p=275</link>
		<comments>http://alfredoalvarez.com/blog/?p=275#comments</comments>
		<pubDate>Wed, 21 Mar 2012 19:15:22 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[XAML databinding programming]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=275</guid>
		<description><![CDATA[My new job has me doing a ton of xaml i have a few interesting cases that i believe i should document before i forget how to do them. First one was how do i Bind to the current Context after a few attempts couple of bings search got to this page and he had [...]]]></description>
			<content:encoded><![CDATA[<p>My new job has me doing a ton of xaml i have a few interesting cases that i believe i should document before i forget how to do them.</p>
<p>First one was how do i Bind to the current Context after a few attempts couple of bings search got to this page and he had an answer for my problem.</p>
<p>http://www.developmentalmadness.com/archive/2009/08/26/xaml-binding-to-the-current-datacontext.aspx</p>
<p>Its pretty simple you just do {Binding} with nothing else in it. </p>
<p>Come next day to work realize that now i need a converter since we want different text to the one provided by the enum. To my surprise what i would expect {Binding, Converter={StaticResource myconverter}} would not work. So i started trying different possibilities made an explicit binding. Then Started thinking and decided well i&#8217;m just binding to my datacontext. So ended up with the following.</p>
<p><Binding<br />
                            RelativeSource="{RelativeSource Self}"<br />
                            Path="DataContext"<br />
                            Converter="{StaticResource myconverter}"<br />
                            ConverterParameter="Parent" /></p>
<p>I feel like this is a case in which the xaml its really ambiguose and in future generations maybe the should create a keyword like context or what not to be able to change it.</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=275</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How things are going current projects and sorry for the lack of update</title>
		<link>http://alfredoalvarez.com/blog/?p=323</link>
		<comments>http://alfredoalvarez.com/blog/?p=323#comments</comments>
		<pubDate>Wed, 07 Mar 2012 07:58:20 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Personal project]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[personal projects]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=323</guid>
		<description><![CDATA[Hi Everyone, How come I have dissapeared for a few well the new contractor life and settling into the new pace has taken a bit more of me than I expected. On the good news Im a lot happier than I was in the sept – january time frame and gainfully employed. I&#8217;ve been doing [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Everyone,</p>
<p>How come I have dissapeared for a few well the new contractor life and settling into the new pace has taken a bit more of me than I expected. On the good news Im a lot happier than I was in the sept – january time frame and gainfully employed.</p>
<p>I&#8217;ve been doing a lot of WPF for two reasons one i&#8217;m studying for a cert and second its what i&#8217;m currently doing at work.</p>
<p>I&#8217;m hoping to be a lot more active this month and bring some update to my old projects</p>
<ul>
<li>There is no place for gnomes needs a new scoreboard and want to do an add based version </li>
<li>Reddit Screensaver needs and update and i want to transform it into a MMVM app </li>
<li>HDR raw want to try out some new formats in particular for the new sony lines is anyone still using this paint.net plugin?? </li>
</ul>
<p>I have been working on a Platform  game aussie puncharoo probably for almost a year this weekend im going to commit to getting some progress and uploading a demo. Hoping to finish this project in the month of march to move to some ideas that i have to start my own business.</p>
<p>In terms of the blog im going to install win 8 today and then start describing the construction of an app that i will be work on a bit each day is going to be called contract manager and the purpose its to help you be a contractor on yourslef and keep track of everything that is going on in the life without a mother company</p>
<p> Happy Coding </p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=323</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Year And Interesting Changes</title>
		<link>http://alfredoalvarez.com/blog/?p=322</link>
		<comments>http://alfredoalvarez.com/blog/?p=322#comments</comments>
		<pubDate>Mon, 23 Jan 2012 20:44:05 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=322</guid>
		<description><![CDATA[The new year came in and few things have changed in my life for once. I decided to resign at Microsoft to take care of some personal issues. At the moment i ‘m still dealing with the change of moving from the workforce into a more personally driven situation. In part due to my new [...]]]></description>
			<content:encoded><![CDATA[<p>The new year came in and few things have changed in my life for once. I decided to resign at Microsoft to take care of some personal issues. At the moment i ‘m still dealing with the change of moving from the workforce into a more personally driven situation.</p>
<p> In part due to my new found time I have been taking a look around at the new technologies that are coming and I’m convinced that this year is going to be the the year that html 5 blows up our minds. Perusing the web I found this two web sites and they did just that.   </p>
<p><a title="http://www.kevs3d.co.uk/dev/&#13;&#10;" href="http://www.kevs3d.co.uk/dev/">http://www.kevs3d.co.uk/dev/    <br /></a>He shows his 3d library and creates some interesting demos is worth looking at it.  </p>
<p> <a title="http://apps.nahklick.de/cnc/" href="http://apps.nahklick.de/cnc/">http://apps.nahklick.de/cnc/</a>   <br />This one on top recreated c&amp;c in html 5 showing off the possible gaming capabilities of the environment.   </p>
<p>Seeing this type of technology advancements have made me question two things   <br />First &#8211; What the heck have I been doing in this last couple of years since it made me realize I’ve been not contributing much.   </p>
<p>Second – As software developers we might actually be a bit out of focus with what is needed to advance society. We are spending our time creating software for advertisement, games and advancing it day to day but leaving behind&#160; many fields like infrastructure creation, economics , resource distribution , medicine with only a few advancements.   <br />&#160; In a lot of cases when we have approach this field due to the constraint of money we have become part of the system. Like in medicine a lot of the Emr or bi systems are not for the betterment of the patient or to help the provider make less mistakes. But to enforce that correct billing is being done to the Insurance companies.   </p>
<p>Which brings me to the point maybe for the next year computer engineer / scientist should spend at least some of their time helping another industry that is not their own <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://alfredoalvarez.com/blog/wp-content/uploads/2012/01/wlEmoticon-smile.png" />.&#160; </p>
<p>Best of wishes on the new year.   </p>
<p>Alfredo</p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=322</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xna Resources collected over time</title>
		<link>http://alfredoalvarez.com/blog/?p=320</link>
		<comments>http://alfredoalvarez.com/blog/?p=320#comments</comments>
		<pubDate>Tue, 25 Oct 2011 19:10:57 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[XNA]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=320</guid>
		<description><![CDATA[A list I’ve compiled over the years let me know if you got any more that are useful. 3d models http://www.blendswap.com/3D-models/characters/cartoon-character-pack-1/ Free game 2d art for game developers and indies http://hasgraphics.com/ Website to look for game inspiration: http://www.freewebarcade.com/game/jezzball/ Three hundred game designs http://www.squidi.net/three/index.php Tool used to pack the sprites together: http://spritesheetpacker.codeplex.com/ Free sprites http://www.dumbmanex.com/bynd_freestuff.html Shooter [...]]]></description>
			<content:encoded><![CDATA[<p>
<p>A list I’ve compiled over the years let me know if you got any more that are useful.</p>
<p>3d models</p>
<p><a href="http://www.blendswap.com/3D-models/characters/cartoon-character-pack-1/">http://www.blendswap.com/3D-models/characters/cartoon-character-pack-1/</a></p>
</p>
<p> Free game 2d art for game developers and indies
<p><a href="http://hasgraphics.com/">http://hasgraphics.com/</a></p>
<p>Website to look for game inspiration:
<p><a href="http://www.freewebarcade.com/game/jezzball/">http://www.freewebarcade.com/game/jezzball/</a></p>
<p>Three hundred game designs</p>
<p><a href="http://www.squidi.net/three/index.php">http://www.squidi.net/three/index.php</a></p>
<p>
<p>Tool used to pack the sprites together:</p>
<p><a href="http://spritesheetpacker.codeplex.com/">http://spritesheetpacker.codeplex.com/</a></p>
</p>
<p>Free sprites</p>
<p><a href="http://www.dumbmanex.com/bynd_freestuff.html">http://www.dumbmanex.com/bynd_freestuff.html</a></p>
<p>Shooter Game tutorial covers the basics </p>
<p><a href="http://create.msdn.com/en-US/education/tutorial/2dgame/drawing_user_interface">http://create.msdn.com/en-US/education/tutorial/2dgame/drawing_user_interface</a></p>
<p>Map Editor</p>
<p><a href="http://www.mapeditor.org/">http://www.mapeditor.org/</a></p>
<p>physics engine for Silverlight and XNA</p>
<p><a href="http://farseerphysics.codeplex.com/">http://farseerphysics.codeplex.com/</a></p>
<p>Samples</p>
<p><a href="http://farseersimplesamples.codeplex.com/">http://farseersimplesamples.codeplex.com/</a></p>
<p>A Platformer tutorial using farseer.</p>
<p><a href="http://farseerplatformer3.codeplex.com/">http://farseerplatformer3.codeplex.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=320</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What To Do When Inheriting A Code Base: Part 2 Understanding The System</title>
		<link>http://alfredoalvarez.com/blog/?p=319</link>
		<comments>http://alfredoalvarez.com/blog/?p=319#comments</comments>
		<pubDate>Fri, 07 Oct 2011 05:34:02 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Programming tutorial]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=319</guid>
		<description><![CDATA[Alright Last Article we got the code base working and now we are ready to actually understand what our system does. The first step that I take is to not look at the provided Diagrams for the project. Why you may I ask because I have found that most of the time they are not [...]]]></description>
			<content:encoded><![CDATA[<p>Alright Last Article we got the code base working and now we are ready to actually understand what our system does. The first step that I take is to not look at the provided Diagrams for the project. Why you may I ask because I have found that most of the time they are not completely correct which only causes confusion when you don’t know the system. So what would I do:</p>
<p>First check if I have a functional environment that I can thinker with. If I do then I try to figure out what is the main point of entrance for the main function of this system and what is the output the orange boxes. After Identifying that I try to find Where does the workflow happen and this I what I really care about.</p>
<p><a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/10/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/10/image_thumb.png" width="574" height="282" /></a></p>
<p>By Watching the Workflow happen slowly either debugging or reading a log in verbose you can get a pretty good picture of what goes on in the system. This is really easy to do on WCF service and SQL in particular. In SQL people have a task table which is a common pattern well lets place the profiler to see the changes then make sense of what all that means. On the WCf service watching the messages come in and the responses it gives should give a fairly clear idea of what the routing it looks like.</p>
<p>After you understand the system routing is easy to dissect what happens in each component in a need to know basis.</p>
<p>Normally after I understand this I look at the documentation and see how close it is to what I understood from analyzing the system.</p>
<p>To understand the support system to me is important to isolate them and see them individually to be able to gather the reason for them and not just the side effects they cause or the support they give.</p>
<p>This is a really time consuming action and you should document everything you find during this for your own sake.</p>
<p>-Alfredo Out</p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=319</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What To Do When Inheriting A Code Base: Part 1 Inspecting the code</title>
		<link>http://alfredoalvarez.com/blog/?p=315</link>
		<comments>http://alfredoalvarez.com/blog/?p=315#comments</comments>
		<pubDate>Wed, 03 Aug 2011 22:48:22 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Programming tutorial]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=315</guid>
		<description><![CDATA[Hey Everyone, I&#8217;ve been on more than one occasion on the situation in which I inherit a gigantic code base and its my job to support it and write some new functionality for it. I want to outline a few steps and practices I like to follow in order to get to the point that [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Everyone,</p>
<p>I&#8217;ve been on more than one occasion on the situation in which I inherit a gigantic code base and its my job to support it and write some new functionality for it. I want to outline a few steps and practices I like to follow in order to get to the point that I&#8217;m confident making changes to the system in place. Note is that I use MS products in most of my development so I&#8217;m doing the article with those in mind.</p>
<p>My Steps are the following and I will discuss them in different articles.</p>
<p>1.Inspecting the code</p>
<p>2.Understanding the system</p>
<p>3.Preparing to make changes.    <br />-Legacy     <br />-NonLegacy</p>
<p><b>1.Inspecting the code base </b>    <br /><i>A.Create A New Branch </i></p>
<p>Making a new branch allows you to be able to check out files and work with them in a manner that is easy to see the changes you have done. When you actually got something that is worth you can reverse integrate into the main branch and delete yours.</p>
<p><i>B.Make sure the code compiles on the first download or lets you know how to set up the machine. </i></p>
<p>If the projects has a dependency check script run it. If it does not this is the first thing that needs to be done create a script that looks into the build machine and makes sure that all the dependencies that are needed for compilation are install and in the right place in reference with the script. By dependencies I mean libraries or GAC dll&#8217;s or simply cross compile configurations in your settings. In the case that the script is not provided a bit of investigative work will have to occur inside of the compilation errors which leads to the next point.</p>
<p>Make sure that all the projects that I have been given compile. It&#8217;s my practice to actually have a local compile script. This script just makes an entire build of all the project one for VSTF using batch could look as follows:</p>
<p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">&#160; for /R %%i in (*.sln) DO (            <br />REM echo %%i             <br />msbuild /clp:ErrorsOnly /nologo &quot;%%i&quot;             <br />) </td>
</tr>
</tbody>
</table>
<p>In the case that compilation is not occurring I make a list of all the problems and try to see which ones group together for example a library is missing. An important part during this step is to look out for orphaned solutions. If proper procedure are not followed sometimes in the branch you can find solutions that are no longer used. There is no easy way of finding this out. Except opening the projects and see duplicated projects in a solution.</p>
<p> <i>C.Make sure that the leftover solution bindings in visual studio are correctly installed.</i>
<p>Try editing a file in each of the projects that are relevant and see if you get auto check out in the IDE if it does not work. You need to refresh the bindings.     <br />Todo this follow this steps :     <br />Open the solution     <br />Go File&gt;SourceControl&gt;Change Source Control Remove the bindings     <br />Then Go back to the same location and on the screen that lets you bind per project do binding for each one of them and the solution     <br />Checkin     </p>
<p><i>D.Make sure the unit test runs</i>     <br />You can do it by following the steps to compile but using the mstest tool on the mstest projects the files should be the same is normal that some dependencies on the test project might be broke and some investigation will need to happen. </p>
<p><i>E.Create a dependency script</i> Now that you went through all the work and figure what needs to be installed in a machine make it easy for everyone else. My example of that script in batch checking for Pex to be installed. </p>
<p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">&#160; REM VALIDATING DEPENDENCIES TO BE ABLE TO COMPILE CODESIGN
<p>SET /a NumberOfErrors = 0</p>
<p>SET /a NumberOfErrors +=1</p>
<p>Echo %NumberOfErrors%</p>
<p>del temp1.txt temp2.txt</p>
<p>REM CHECK FOR PEX</p>
<p>reg export HKEY_CLASSES_ROOT\Installer\Assemblies\Global temp1.txt</p>
<p>find &quot;Microsoft.Pex&quot; temp1.txt</p>
<p>IF %ERRORLEVEL% EQU 0 (</p>
<p>@ECHO PEX INSTALLED</p>
<p>) </p>
<p>IF %ERRORLEVEL% NEQ 0 (</p>
<p>@ECHO PEX NEEDS TO BE INSTALLED DOWNLOADED FROM <a href="http://research.microsoft.com/en-us/downloads/d2279651-851f-4d7a-bf05-16fd7eb26559/default.aspx">http://research.microsoft.com/en-us/downloads/d2279651-851f-4d7a-bf05-16fd7eb26559/default.aspx</a></p>
<p>SET /a NumberOfErrors +=1</p>
<p>)</p>
</td>
</tr>
</tbody>
</table>
<p>del temp1.txt temp2.txt</p>
<p>In the next part I will address how to find information about your system when no documentation is there.</p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=315</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blender day 20 (actually day 10 since I had gotten 0 done in the last 10 days)</title>
		<link>http://alfredoalvarez.com/blog/?p=314</link>
		<comments>http://alfredoalvarez.com/blog/?p=314#comments</comments>
		<pubDate>Sun, 31 Jul 2011 01:30:06 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Blender]]></category>
		<category><![CDATA[Personal project]]></category>
		<category><![CDATA[blender]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=314</guid>
		<description><![CDATA[Well seems life caught to me and I had to get away from blender a bit also had my parents visit for a week which was pretty awesome. I got back to it today and decided to go back an revisit the robot that I was working on last time and give it some legs. [...]]]></description>
			<content:encoded><![CDATA[<p>Well seems life caught to me and I had to get away from blender a bit also had my parents visit for a week which was pretty awesome. I got back to it today and decided to go back an revisit the robot that I was working on last time and give it some legs. </p>
<p>Just so its written somewhere is you do control p to a shape while also selecting the camera you can set to follow. note you have to select the camera first the the path. Also in the object data tab the one that looks like a curve you can go to path animations and set the seconds it take to run through it.</p>
<p>Below a picture and a link to a video showing it. Also a screen Shot of the mesh.</p>
<p><a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/robot2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="robot2" border="0" alt="robot2" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/robot2_thumb.png" width="546" height="309" /></a></p>
<p>MESH</p>
<p><a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/Untitled.jpg"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Untitled" border="0" alt="Untitled" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/Untitled_thumb.jpg" width="421" height="497" /></a></p>
<p><iframe style="width: 627px; height: 382px" height="349" src="http://www.youtube.com/embed/pBYW-ArGp_A" frameborder="0" width="425" allowfullscreen="allowfullscreen"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=314</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blender day 9 randy the robot</title>
		<link>http://alfredoalvarez.com/blog/?p=309</link>
		<comments>http://alfredoalvarez.com/blog/?p=309#comments</comments>
		<pubDate>Wed, 20 Jul 2011 06:37:40 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Blender]]></category>
		<category><![CDATA[blender]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=309</guid>
		<description><![CDATA[I did not get to do anything on day 7 and 8 on day 9 I did randy the robot because of a challenge on reddit here is my render and below a photo of the mesh. &#160; Commands Learned shift + A for add mesh]]></description>
			<content:encoded><![CDATA[<p>I did not get to do anything on day 7 and 8 on day 9 I did randy the robot because of a challenge on reddit here is my render and below a photo of the mesh.</p>
<p> <a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/randy.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="randy" border="0" alt="randy" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/randy_thumb.png" width="620" height="350" /></a>
<p><a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/image_thumb.png" width="524" height="370" /></a></p>
<p>&#160;</p>
<p>Commands Learned</p>
<p>shift + A for add mesh</p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=309</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blender Day 6</title>
		<link>http://alfredoalvarez.com/blog/?p=301</link>
		<comments>http://alfredoalvarez.com/blog/?p=301#comments</comments>
		<pubDate>Sun, 17 Jul 2011 01:27:10 +0000</pubDate>
		<dc:creator>alfredo</dc:creator>
				<category><![CDATA[Blender]]></category>
		<category><![CDATA[blender]]></category>

		<guid isPermaLink="false">http://alfredoalvarez.com/blog/?p=301</guid>
		<description><![CDATA[Today I only have like an hour to use the Blender therefore instead of finishing the tutorial will I ever I have decided to Try and put what I have learned in the past few days together therefore I revisited my first project the robot and tried to conceptualize a new one. Thought it would [...]]]></description>
			<content:encoded><![CDATA[<p>Today I only have like an hour to use the Blender therefore instead of finishing the tutorial will I ever I have decided to Try and put what I have learned in the past few days together therefore I revisited my first project the robot and tried to conceptualize a new one.    </p>
<p>Thought it would be cool to make him steampunk style therefore the colors are going to be somewhat rusty and so on.</p>
<p>I did not manage to finish it but fairly satisfied with what I got after an hour and can feel the progress on blender actually happening.</p>
<p>Alfredo Out. Also on monday I will take a break from doing a blender post and go back to do a normal post on the blog(Going to talk a bit about unit testing).</p>
<p>&#160;</p>
<p>&#160;</p>
<p> <a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/robot.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="robot" border="0" alt="robot" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/robot_thumb.png" width="501" height="283" /></a>
<p>&#160;</p>
<p>A Render that I did a few minutes ago since I wanted to see if I was capable at this point. First day ever like 3 months ago when I tried blender and gave up I tried to render Eva she looked&#160; really bad so I tried again. It still meh but a lot better this one I dare show.</p>
<p> <a href="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/eva.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="eva" border="0" alt="eva" src="http://alfredoalvarez.com/blog/wp-content/uploads/2011/07/eva_thumb.png" width="509" height="289" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://alfredoalvarez.com/blog/?feed=rss2&#038;p=301</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

