<?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>Software development blog</title>
	<atom:link href="http://mmmattos.net/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://mmmattos.net/wordpress</link>
	<description>Miguel Miranda de Mattos´s blog.</description>
	<lastBuildDate>Wed, 11 Apr 2012 22:43:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Mais um kabrito de sucesso!</title>
		<link>http://mmmattos.net/wordpress/?p=419</link>
		<comments>http://mmmattos.net/wordpress/?p=419#comments</comments>
		<pubDate>Wed, 11 Apr 2012 20:34:54 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[kabritos]]></category>
		<category><![CDATA[personal projects]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=419</guid>
		<description><![CDATA[Meu amigo Paulo Bridi teve, após tensos dias de espera, seu aplicativo, Olho no Lance, desenvolvido para iPhone baseado no sistema iOS, aprovada no ITunes Apple Store. O objetivo é bem claro. Acompanhar os resultados dos jogos de futebol das jornadas dos campeonatos Gauchão e Brasileiro, e como um plus receber notificações &#8220;PUSH&#8221; para os [...]]]></description>
			<content:encoded><![CDATA[<p>Meu amigo  <a href="http://about.me/paulobridi" title="Paulo Bridi" target="_blank">Paulo Bridi</a> teve, após tensos dias de espera, seu aplicativo, <a href="http://itunes.apple.com/us/app/olho-no-lance/id516458863?mt=8" title="Olho no Lance" target="_blank">Olho no Lance</a>, desenvolvido para iPhone baseado no sistema iOS, aprovada no ITunes Apple Store.<img src="http://a5.mzstatic.com/us/r1000/104/Purple/v4/e0/2e/2e/e02e2ea8-448c-2c1b-a427-0dc34b64d56a/gvsofLvTQtSSjJ4UtoaELM-temp-upload.sdboxtaa.320x480-75.jpg" align="right" alt="Olho no Lance" /><br />
O objetivo é bem claro. Acompanhar os resultados dos jogos de futebol das jornadas dos campeonatos Gauchão e Brasileiro, e como um plus receber notificações &#8220;PUSH&#8221; para os jogos selectionados.<br />
Hoje o aplicativo pode ser baixado gratuitamente no App Store.</p>
<p>Projetos pessoais, a.k.a. &#8220;kabritos&#8221; como este do Paulo, são uma forma proativa de se aprofundar em novas tecnologias nas horas livres.<br />
Alem de ampliar a bagagem de conhecimentos do autor, é muito recompensador, mesmo o produto sendo gratuito.</p>
<p>Em breve espero poder escrever sobre o &#8220;kabrito&#8221; que estou criando, e que deve ficar pronto antes de 19/Maio atendendo ao desafio do meu brother <a href="http://twitter.com/#!/ironworld" title="Cícero Rolim">Cícero Rolim</a>, emprendedor, criador do <a href="http://www.muambator.com.br" title="Muambator" target="_blank">Muambator</a> e mentor de kabritos meu e do Paulinho.</p>
<p>Mais uma vez: Parabéns ao Paulo por mais essa conquista!<br />
Abraço,</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=419</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How-to verify COM dll is indeed registered, with C#.</title>
		<link>http://mmmattos.net/wordpress/?p=406</link>
		<comments>http://mmmattos.net/wordpress/?p=406#comments</comments>
		<pubDate>Thu, 29 Sep 2011 03:53:15 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[programming languages]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[visualstudio]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=406</guid>
		<description><![CDATA[I´ve been looking for a way to verify, from within Visual C#, whether a required COM component dynamic link library (DLL) has  indeed been registered in the system and that our dependent class can you use without fear. In the way to the solution I found approaches using kernel32 LoadLibrary and FreeLibrary calls which actually [...]]]></description>
			<content:encoded><![CDATA[<p>I´ve been looking for a way to verify, from within Visual C#, whether a required COM component dynamic link library (DLL) has  indeed been registered in the system and that our dependent class can you use without fear.</p>
<p>In the way to the solution I found approaches using kernel32 LoadLibrary and FreeLibrary calls which actually only verify the existence of the component but nothing about whether it has been registered in the Windows registry.</p>
<p>The most reliable way to do this verification is to use a static method named <a title="GetTypeFromProgID" href="http://msdn.microsoft.com/en-us/library/hss5hw09.aspx">GetTypeFromProgID</a>,  available in the TYPE class, from the CLR,</p>
<p>This method attempts to load a particular type from the DLL under test.<br />
If successfull it should return the full qualified type. Otherwise, if the DLL is not registered, it will render a NULL result.</p>
<p>This method takes a string parameter which is the ProgID. If progID is a valid entry in the registry and a type is associated with it; otherwise, Nothing</p>
<p>The sample code:</p>
<blockquote><p><pre><code>
using System;
using System.Runtime.InteropServices;
namespace ComDllVerification
{
    class Program
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;static void Main(string[] args)        
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Type T = Type.GetTypeFromProgID(&quot;WIA.DeviceManager&quot;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (T != null)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Safe to go...
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch (COMException ex)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Handle the COM exception here...
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;}
}
</code></pre></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=406</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git rebase</title>
		<link>http://mmmattos.net/wordpress/?p=402</link>
		<comments>http://mmmattos.net/wordpress/?p=402#comments</comments>
		<pubDate>Sun, 18 Sep 2011 04:47:46 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[software development]]></category>
		<category><![CDATA[software tools]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[rebase]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[source control]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=402</guid>
		<description><![CDATA[Source control management has never changed so much its paradigm until GIT. Git revolutionized they way you deal and manage source code repositories breaking traditional concepts as those found in CVS and SVN. Working on a branch of one of the mainstream projects I participate, the time came where a merge is needed. Both master [...]]]></description>
			<content:encoded><![CDATA[<p>Source control management has never changed so much its paradigm until <a href="http://git-scm.com/">GIT</a>.</p>
<p>Git revolutionized they way you deal and manage source code repositories breaking traditional concepts as those found in <a href="http://www.google.com.br/url?sa=t&amp;source=web&amp;cd=7&amp;ved=0CEwQFjAG&amp;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FConcurrent_Versions_System&amp;ei=bnd1TvqyB8rt0gH_zsXbDQ&amp;usg=AFQjCNEXu2vTfH7IaUQjOsnrFY9swcF24w&amp;sig2=SuKwefrwYXN8RJHhs5b9yg">CVS </a>and <a href="http://www.google.com.br/url?sa=t&amp;source=web&amp;cd=3&amp;ved=0CC4QFjAC&amp;url=http%3A%2F%2Fsubversion.tigris.org%2F&amp;ei=v3d1Tq6HNebE0AHKitToDQ&amp;usg=AFQjCNECDGdYIfVJA74uPGr3-JKbCKXFWQ&amp;sig2=wZocMLI_1-oWWMxNdVENsA">SVN</a>.</p>
<p>Working on a branch of one of the mainstream projects I participate, the time came where a merge is needed.<br />
Both master (trunk) and our branch (remote, because it sits on the server) have evolved and merging wouldn´t be easy.</p>
<p>To make things safer I decided to bring the master changes into our branch and for that purpose I choose to use &#8220;git rebase&#8221; that was expected to &#8220;replay&#8221; the master changes from the begining and finally apply our changes on top of them, all onto our branch.</p>
<p>The command is pretty easy:</p>
<p>$ git rebase origin/master</p>
<p>If there are many conflicts, they can be resolved manually. Rebase will stop on each conflict, allowing you to fix it and procced or abort.</p>
<p>To proceed:</p>
<p>$ git rebase &#8211;continue</p>
<p>To abort:</p>
<p>$ git rebase &#8211;abort.</p>
<p>You can also skip a patch by issuing:</p>
<p>$ git rebase &#8211;skip</p>
<p>&nbsp;</p>
<p>And one very important note. Once it´s finished, NO commits or push commands are needed. I made that mistake once and ended up with a merge commit on top of the actual rebase. So don´t doi it! <img src='http://mmmattos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Everything should be rebased on your remote server.<br />
Verify the Git logs or use gitk and you´ll how ended up.</p>
<p>The good point is that commit history, authors, etc..are all preserved.That´s good.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=402</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synergy weird behavior on Windows 7</title>
		<link>http://mmmattos.net/wordpress/?p=399</link>
		<comments>http://mmmattos.net/wordpress/?p=399#comments</comments>
		<pubDate>Sun, 18 Sep 2011 04:25:08 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[mouse sharing]]></category>
		<category><![CDATA[synergy]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=399</guid>
		<description><![CDATA[To keep up the pace of running multiple development environments simultaneously, xp, win7, and to avoid dealing with multiple mice/keyboards combinations, I downloaded and installed Synergy, a little tool that allows you to control many computer desktops from just one of them, extending and embracing the combined dektops with a unique experience. It allows your [...]]]></description>
			<content:encoded><![CDATA[<p>To keep up the pace of running multiple development environments simultaneously, xp, win7, and to avoid dealing with multiple mice/keyboards combinations, I downloaded and installed <a href="http://synergy-foss.org/">Synergy</a>, a little tool that allows you to control many computer desktops from just one of them, extending and embracing the combined dektops with a unique experience.</p>
<p>It allows your mouse to roll from one machine´s desktop to the other one, transparently.</p>
<p>My setup has a the Windows 7 box configured as the Synergy server, so others (clients) desktops connect to it to get access to the input devices.</p>
<p>Everything worked smoothly until a recent windows automatic update that took phace las Thursday, September 15th.<br />
Albeit the server service was up and running and client machines connected ok to the server one, the server consistently refused to share its input devices with the clients.</p>
<p>After experimenting with different configurations, I realized the problem was related to the Synergy Windows service accessing the user desktop area.</p>
<p>Fixing this situation, involved:</p>
<ol>
<li><span class="Apple-style-span" style="line-height: 16px;">Disable the Synergy Windows service.</span></li>
<li><span class="Apple-style-span" style="line-height: 16px;">Granting the Synergy app shortcut administrator execution privileges.</span></li>
<li><span class="Apple-style-span" style="line-height: 16px;">Set the app Synergy app to automatically startup with Windows (through msconfig).</span></li>
</ol>
<p>Now Synergy is back to normal! <img src='http://mmmattos.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=399</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Getting started with semanticweb</title>
		<link>http://mmmattos.net/wordpress/?p=392</link>
		<comments>http://mmmattos.net/wordpress/?p=392#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:01:31 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[semanticweb]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[foaf]]></category>
		<category><![CDATA[ontology]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=392</guid>
		<description><![CDATA[From the very first time you attempt a domain name search to begin the setup of your own website to the moment when you “launch” your site on the Internet, a great deal of thought and creativity goes into making your own website. If you have ever attempted this feat, you know just how much [...]]]></description>
			<content:encoded><![CDATA[<p>From the very first time you attempt a <a href="http://www.networksolutions.com">domain name search</a> to begin the setup of your own website to the moment when you “launch” your site on the Internet, a great deal of thought and creativity goes into making your own website. If you have ever attempted this feat, you know just how much goes into it – you want the right domain name, the right format, adequate capabilities, and the ability to adapt and manage your site as easily as possible. Fortunately, professional web hosting companies like Network Solutions simplify the process as much as possible, allowing people the ability to focus almost entirely on the creative side of the experience rather than worry about the technological side, which can be very complicated. However, if you have ever been more curious about how things work on the Internet, it is well worth researching things like what is called the Semantic Web, in order to gain a greater understanding of the Internet’s abilities and inner-workings. </p>
<p>For those who are unfamiliar or merely curious, the Semantic Web is, in simple terms, a sort of data network that exists beneath the surface of the World Wide Web. More specifically, the Semantic Web is defined on its Wikipedia page as “a web of data that facilitates machines to understand the semantics, or meaning, of information on the World Wide Web.” Essentially, the Semantic Web exists to make automated, machine reading of the Internet as fast as possible, so that Internet data can be accessed and understood quickly by machines, allowing the Web to run more smoothly. The idea is to help machines to understand human-related Internet activity, and be able to respond to our requests and needs. </p>
<p>Ultimately, the simplest way to think of the Semantic Web is that it is the “how.” In other words, the Semantic Web represents how the Internet works. Every time you search a phrase, look up a word, purchase something online, etc. you are making a demand of the Internet to respond to whatever it is you have requested. However, it is not up to you to sift through the entire World Wide Web to actually find or accomplish whatever it is you want – this is where the Semantic Web comes in. The idea is that it allows the Internet to automatically take care of the searching, or the completion of whatever task you have laid before it. There is of course more to the Semantic Web than this, as it is a complex and ever-evolving concept, but this has been a basic introduction for anyone curious to find out more about the ways in which the Internet works.<br />
<br />
In our <a href="http://mmmattos.blogspot.com/">Breathing Semantics  blog</a>, you will find some examples of semantic web implementations using the FOAF (Friend Of A Friend) ontology concepts.<br /></p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=392</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Reset after update&#8230;</title>
		<link>http://mmmattos.net/wordpress/?p=378</link>
		<comments>http://mmmattos.net/wordpress/?p=378#comments</comments>
		<pubDate>Sun, 29 May 2011 05:05:10 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[issues]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=378</guid>
		<description><![CDATA[Unfortunately after a recent update of WP my blog wen to an unstable state which required me to restore a plain new one off from the database backup I was able to make days before. Hopefully there will be no disruption on the posts flow but just in case you find something unusual, please just [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately after a recent update of WP my blog wen to an unstable state which required me to restore a plain new one off from the database backup I was able to make days before.</p>
<p>Hopefully there will be no disruption on the posts flow but just in case you find something unusual, please just let me know and I´ll try to fix it.</p>
<p>Some broken images are expected.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=378</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Online Bookmarks (Chrome) Extension</title>
		<link>http://mmmattos.net/wordpress/?p=318</link>
		<comments>http://mmmattos.net/wordpress/?p=318#comments</comments>
		<pubDate>Wed, 25 May 2011 02:29:51 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[api]]></category>
		<category><![CDATA[programming languages]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[online]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=318</guid>
		<description><![CDATA[Here is something that was in my plans for quite some time. Writing a Chrome browser extension. Wanted to write something useful. Not being happy with the extensions currently available for browsing the Delicious bookmarking system, I decided to create a new one. Requirements would be: 1) Not to require server side code. 2) Provide [...]]]></description>
			<content:encoded><![CDATA[<p>Here is something that was in my plans for quite some time. Writing a Chrome browser extension.  Wanted to write something useful. Not being happy with the extensions currently available for browsing the Delicious bookmarking system, I decided to create a new one.<br />
<span id="more-318"></span><br />
Requirements would be:<br />
1) Not to require server side code.<br />
2) Provide auto-complete on tag typing.<br />
3) Use JSON instead of XML.<br />
4) REST – This is actually a Delicious premise.</p>
<p>Oh. And by the way. You don´t need to have a Delicious account to use it. If you know a friends account there, add it in the Options page, and you´ll be able to browse his public bookmarks.</p>
<p>&nbsp;</p>
<p>Even further. If you don´t provide an account (yours or from someone you know) it does not matter!!! You will be able to browse from all the bookmarks available at Delicious.</p>
<p>The extension is available at the <a href="https://chrome.google.com/extensions/detail/jgjlgjkcnndefgldkhmpmngpjddibgal">Chrome Web Store</a>.</p>
<p>If you are curious about it (I would be) the source code for this extension is available at my <a href="https://github.com/mmmattos/deli_browser">Github</a>.</p>
<p>Try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=318</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mozy vs Carbonite: Considering differences</title>
		<link>http://mmmattos.net/wordpress/?p=313</link>
		<comments>http://mmmattos.net/wordpress/?p=313#comments</comments>
		<pubDate>Sun, 22 May 2011 02:05:34 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[software tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[online backup]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=313</guid>
		<description><![CDATA[Join me as my colleague and friend Claudio explores the differences between these two online backup solutions. Read the full story here.]]></description>
			<content:encoded><![CDATA[<p>Join me as my colleague and friend Claudio explores the differences<br />
between these two online backup solutions.<br/><br />
Read the full story <a href="http://www.heckler.com.br/blog/2011/05/18/the-little-differences/trackback/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=313</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal source repositories for free&#8230;</title>
		<link>http://mmmattos.net/wordpress/?p=307</link>
		<comments>http://mmmattos.net/wordpress/?p=307#comments</comments>
		<pubDate>Thu, 25 Nov 2010 16:12:01 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software development]]></category>
		<category><![CDATA[software tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[software development tools]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=307</guid>
		<description><![CDATA[Recently I made an investigation to find a free alternative for source code repository. GitHub is a great one, but all your repos will be public. For the private ones you have to pay. DropBox, as mentioned in this blog, provides some versioning and works great for some projects. A couple of days ago I [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I made an investigation to find a free alternative for source code repository.<br />
<a href="http://github.com/">GitHub </a>is a great one, but all your repos will be public. For the private ones you have to pay.<br />
<a href="http://dropbox.com/">DropBox</a>, as mentioned in this <a href="http://stevenbenner.com/2010/02/poor-mans-source-code-repository-and-versioning-with-dropbox/">blog</a>,  provides some versioning and works great for some projects. </p>
<p>A couple of days ago I was  browsing for dev tools I found the <a href="http://www.atlassian.com/">Atlassian </a>site where they offer different (and very useful)  solutions for developers.<br />
Among these solutions, there is the <a href="http://www.bitbucket.org/">Bitbucket.org</a> hosted <a href="http://mercurial.selenic.com/">Mercurial </a>SCM repository, that is offered for free for accounts of up to five users. For those who are not familiar with <a href="http://mercurial.selenic.com/">Mercurial</a>, it is very similar to Git in concept.  <a href="http://www.bitbucket.org/">Bitbucket</a> also allows you to create a dns redirection from one of your host subdomains  and it works great!&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=307</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome to override fonts used in websites</title>
		<link>http://mmmattos.net/wordpress/?p=287</link>
		<comments>http://mmmattos.net/wordpress/?p=287#comments</comments>
		<pubDate>Sat, 30 Oct 2010 02:06:48 +0000</pubDate>
		<dc:creator>mmmattos</dc:creator>
				<category><![CDATA[software tools]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[font settings]]></category>
		<category><![CDATA[google chrome]]></category>

		<guid isPermaLink="false">http://mmmattos.net/wordpress/?p=287</guid>
		<description><![CDATA[Chrome is a goergeous, clean, minimal browser. One of the only problems I had that was stopping me from using it as a my default browser, was the fact the it would not let me override font sizes and types, favoring the selections made by each website. Well, as explained here, I set up my [...]]]></description>
			<content:encoded><![CDATA[<p>Chrome is a goergeous, clean, minimal browser. One of the only problems I had that was stopping me from using it as a my default browser, was the fact the it would not let me override font sizes and types, favoring the selections made by each website.</p>
<p>Well, as explained <a title="Google Chrome Help Forum" href="http://goo.gl/Y1XX" target="_blank">here</a>, I set up my customized configuration for Webkit within Google Chrome´s Preference file, that is located (in Windows Vista) at</p>
<ul>
<li>&#8230;AppData\Local\Google\Chrome\User Data\Default</li>
</ul>
<p>The <a title="Webkit at Wikipedia" href="http://goo.gl/X37V" target="_blank">Webkit</a> section of my Preference file, that sits close to the end of the file, now looks like this:</p>
<div  style="background-color:#FFFFFF;">
<pre><code style="margin: 10px 50px 30px 5px;">
...
&quot;webkit&quot;: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;webprefs&quot;: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;default_fixed_font_size&quot;: 13,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;default_font_size&quot;: 16,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;fixed_font_family&quot;: &quot;Consolas&quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;minimum_font_size&quot;: 14,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;minimum_logical_font_siz&quot;: 13,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;sansserif_font_family&quot;: &quot;Segoe UI&quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;serif_font_family&quot;: &quot;Segoe UI&quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;standard_font_is_serif&quot;: false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&quot;text_areas_are_resizable&quot;: true
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
}
...</code></pre></div>
<p>That seems to , at list partially have fixed the problem for me.<br />
Oh, just a quick reminder. Shutdown Chrome before editing the Preference file.</p>
]]></content:encoded>
			<wfw:commentRss>http://mmmattos.net/wordpress/?feed=rss2&#038;p=287</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

