<?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>aboutme.it</title>
	<atom:link href="http://www.aboutme.it/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aboutme.it</link>
	<description>Enrico Icardi - personal blog</description>
	<lastBuildDate>Wed, 18 Jan 2012 14:51:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Maxema.com is out!</title>
		<link>http://www.aboutme.it/2012/01/18/maxema-com-is-out/</link>
		<comments>http://www.aboutme.it/2012/01/18/maxema-com-is-out/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 11:02:54 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=586</guid>
		<description><![CDATA[My latest commercial web project (in collaboration with Dario Aschero, Alessandro Valsania) is finally out! Website Link: maxema Front-End / Back-End Screenshots:]]></description>
			<content:encoded><![CDATA[<p>My latest commercial web project (in collaboration with <a title="Dario Aschero" href="http://www.linkedin.com/in/darioaschero" target="_blank">Dario Aschero</a>, <a title="Alessandro Valsania" href="http://www.linkedin.com/pub/alessandro-valsania/25/35/a09" target="_blank">Alessandro Valsania</a>) is finally out!</p>
<p>Website Link: <a title="Maxema" href="http://www.maxema.com" target="_blank">maxema</a></p>
<p>Front-End / Back-End Screenshots:</p>
<p><a href="http://www.aboutme.it/wp-content/uploads/2012/01/maxemaShot1.jpg"><img class="alignnone size-medium wp-image-590" title="maxemaShot" src="http://www.aboutme.it/wp-content/uploads/2012/01/maxemaShot1-430x343.jpg" alt="" width="430" height="343" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2012/01/18/maxema-com-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyMCE + WordPress + genesis + venture = nervous breakdown</title>
		<link>http://www.aboutme.it/2011/11/09/tinymce-wordpress-genesis-venture-theme-from-studiopress/</link>
		<comments>http://www.aboutme.it/2011/11/09/tinymce-wordpress-genesis-venture-theme-from-studiopress/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 19:38:48 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[webweirdworld]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=555</guid>
		<description><![CDATA[I&#8217;ve just worked 5 hours on one of the most boring task of my life to solve one of my client&#8217;s issue&#8230;and solved it with in a really &#8220;weird&#8221; way&#8230;.so weird i wanted to share it to hopefully save some life or some serious nervous breakdown :) So: for all of you who will start [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just worked 5 hours on one of the most boring task of my life to solve one of my client&#8217;s issue&#8230;and <strong>solved it</strong> with in a really &#8220;weird&#8221; way&#8230;.so weird i wanted to share it to hopefully save some life or some serious nervous breakdown :)</p>
<p>So:<br />
for all of you who will start to read &#8220;o is not a constructor&#8221; or &#8220;q is not a constructor&#8221; in your tiny little useful console while being in the &#8220;wp-admin&#8221; section trying to modify post, page, etc (any page showing the tinyMCE editor)&#8230;.</p>
<p>I&#8217;ve no idea why&#8230;and i&#8217;ve no idea how&#8230;but with my combo (wp+genesis+venture theme) somehow the tinyMCE (i guess) was initialized twice<br />
Took me hours to figure this out because of the huge combo of systems on top of the clean WP installation&#8230;anyway&#8230;<strong>here&#8217;s the solution:</strong></p>
<p>Adding the following script in the &#8220;<em>functions.php</em>&#8221; file should make things right and let you correctly initialize tinyMCE once (to finally see labels in the right way, localization going fine, etc.):</p>
<pre class="brush:[php]">/**
  *
  * START remove double initialization of tiny_mce
  *
 **/

function remove_tinymce(){
	if (has_action('admin_print_footer_scripts','wp_tiny_mce')){
		remove_action('admin_print_footer_scripts','wp_tiny_mce', 25);
	}
}

add_action('init', 'ckeditor_init');
function ckeditor_init(){
/*	global $ckeditor_wordpress;
	require_once 'ckeditor_class.php';*/

	if(is_admin()){
			add_action('admin_print_footer_scripts', 'remove_tinymce');
	}
}

/**
  *
  * END remove double initialization of tiny_mce
  *
 **/</pre>
<p>Don&#8217;t ask me why, just say &#8220;thanks&#8221; if that&#8217;s what you&#8217;re looking for :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/11/09/tinymce-wordpress-genesis-venture-theme-from-studiopress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Coworking Conference</title>
		<link>http://www.aboutme.it/2011/10/20/coworking-conference/</link>
		<comments>http://www.aboutme.it/2011/10/20/coworking-conference/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 10:54:17 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[aboutme]]></category>
		<category><![CDATA[coworking]]></category>
		<category><![CDATA[me]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=536</guid>
		<description><![CDATA[&#160; The 2nd european Coworking Conference is coming! From Shared Desks there will be 2 participants with the same name: me (Enrico) and Enrico &#8230;and it&#8217;s not a joke&#8230;we simply have the same name&#8230; Anyway if you are into coworking or &#8220;co-working&#8221; like some newspaper says join us! &#8230;and since, basically the same guys, has [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><strong><a title="Coworking Conference" href="http://coworkingconference.com" target="_blank">The 2nd european Coworking Conference</a></strong> is coming!<br />
From <strong><a title="SharedDesks.net – Find Coworking Spaces with The Coworking Finder (pt.2)" href="http://www.aboutme.it/2011/04/28/find-coworking-shareddesks-the-coworking-finder/" target="_blank">Shared Desks</a></strong> there will be 2 participants with the same name: me (Enrico) and Enrico &#8230;and it&#8217;s not a joke&#8230;we simply have the same name&#8230;<br />
Anyway if you are into coworking or &#8220;co-working&#8221; like <strong><a title="Shared Desks - Coworking Wall Street Journal" href="http://online.wsj.com/article/SB10001424052970203791904576609301747256470.html" target="_blank">some newspaper</a></strong> says <strong><a title="Coworking Conference - Book it!" href="http://96yayywk.fikket.com/event/coworking-europe-conference-2011" target="_blank">join us</a></strong>!</p>
<p>&#8230;and since, basically the same guys, has gone live with the new coworking survey&#8230;.please take a few seconds to answer a few questions (i did it&#8230;.and it really took me something like 50 seconds) <strong><a title="Coworking Survey" href="http://coworkingsurvey.com/" target="_blank">here</a></strong> and help everybody to get a better idea of the coworking scene worldwide. Ok?</p>
<p>That&#8217;s it for now&#8230;i just wanted to spread the word about the conference :)</p>
<p><a href="http://www.coworkingconference.com"><img class="alignnone size-medium wp-image-537" title="coworking_conferente_14-14-14" src="http://www.aboutme.it/wp-content/uploads/2011/10/coworking_conferente_14-14-14-430x325.png" alt="Shared Desks - Coworking Conference" width="430" height="325" /><br />
</a></p>
<p><strong>UPDATE 01/11/2011:</strong><br />
SharedDesks will be on stage the second day &#8211; Panel 2.</p>
<p><strong>UPDATE 07/11/2011:</strong><br />
<a title="SharedDesks - Co-working" href="http://www.shareddesks.net" target="_blank">SharedDesks</a> is now online!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/10/20/coworking-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Admin Template</title>
		<link>http://www.aboutme.it/2011/08/31/html5-admin-template/</link>
		<comments>http://www.aboutme.it/2011/08/31/html5-admin-template/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 19:01:29 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[aboutme]]></category>
		<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[UID]]></category>
		<category><![CDATA[webweirdworld]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=527</guid>
		<description><![CDATA[I&#8217;m happy to present my last project (my first opensource project): html5admin a simple html5 ready admin template for those programmers, like me, who feel like wasting time in building every time new html structure for their new clients. It&#8217;s open-source because it wasn&#8217;t more than 3 days of work, but it&#8217;s a start&#8230;and i really [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to present my last project (my first opensource project): <strong><a title="html5 admin template" href="http://www.html5admin.com" target="_blank">html5admin</a> </strong>a simple html5 ready admin template for those programmers, like me, who feel like wasting time in building every time new html structure for their new clients.</p>
<p>It&#8217;s open-source because it wasn&#8217;t more than 3 days of work, but it&#8217;s a start&#8230;and i really hope somebody will support it by improving it.<br />
It still needs a lot of features, but it could be considered &#8220;ready-to-use&#8221; since it&#8217;s covering the most common UI actions&#8230;</p>
<p>So: if you feel like helping or you were looking for a new template for your next administration section&#8230;here&#8217;s the <strong><a title="html5 admin on github" href="http://github.com/ricricucit/html5admin" target="_blank">github / download link</a></strong> and the <strong><a title="html5 admin demo pages" href="http://www.html5admin.com/demo/" target="_blank">demo pages</a></strong>.<br />
Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/08/31/html5-admin-template/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Best jquery tables plugin</title>
		<link>http://www.aboutme.it/2011/07/22/best-jquery-tables-plugin/</link>
		<comments>http://www.aboutme.it/2011/07/22/best-jquery-tables-plugin/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 08:49:10 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[UID]]></category>
		<category><![CDATA[webweirdworld]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=522</guid>
		<description><![CDATA[In  previous post of mine i&#8217;ve talked about a table plugin that i was using in a few back-end projects. This is a new post to correct myself&#8230;I&#8217;ve found a (imho) better one (that does not even need a review&#8230;just try it)! It is called DataTables (jquery data tables plugin) and this is a preview [...]]]></description>
			<content:encoded><![CDATA[<p>In  previous post of mine i&#8217;ve talked about a <a title="jquery, flexigrid" href="http://www.aboutme.it/2009/12/15/great-grid-jquery-plugin/">table plugin that i was using</a> in a few back-end projects.</p>
<p>This is a new post to correct myself&#8230;I&#8217;ve found a (imho) better one (that does not even need a review&#8230;just <a title="jquery best data tables plugin" href="http://www.datatables.net/" target="_blank">try it</a>)!</p>
<p>It is called <a title="DataTables - The best jquery tables plugin" href="http://www.datatables.net/" target="_blank">DataTables</a> (jquery data tables plugin)<br />
and this is a preview of one of its GUI (supports custom theming and jqueryUI theming system):</p>
<p><a title="best jquery plugin for tables" href="http://www.datatables.net/" target="_blank"><img class="alignnone size-medium wp-image-523" title="dataTables" src="http://www.aboutme.it/wp-content/uploads/2011/07/dataTables-430x182.png" alt="" width="430" height="182" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/07/22/best-jquery-tables-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A beta search engine for coworking spaces</title>
		<link>http://www.shareddesks.net</link>
		<comments>http://www.shareddesks.net#comments</comments>
		<pubDate>Fri, 22 Jul 2011 08:36:13 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[coworking]]></category>
		<category><![CDATA[coworking finder]]></category>
		<category><![CDATA[find coworking]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=507</guid>
		<description><![CDATA[We finally decided to show up with a beta search engine for coworking based on users location. It is part of our bigger coworking project &#8220;SharedDesks.net&#8221; but already quite useful. Until now we have around 350 coworking spaces in about 200 different cities (mostly in Europe). More will come and you can help us grow [...]]]></description>
			<content:encoded><![CDATA[<p>We finally decided to show up with a <a title="Find Coworking" href="http://www.coworkingfinder.com" target="_blank">beta search engine for coworking</a> based on users location.<br />
It is part of our bigger coworking project &#8220;<a href="http://shareddesks.net" target="_blank">SharedDesks.net</a>&#8221; but already quite useful.</p>
<p>Until now we have around 350 coworking spaces in about 200 different cities (mostly in Europe).</p>
<p>More will come and you can <a title="find coworking - add your space" href="http://coworkingfinder.com/beta/add-your-space/" target="_blank">help us grow</a> by adding your coworking space (or by suggesting a coworking space you know).</p>
<p>Here&#8217;s a screenshot of the beta GUI:</p>
<p><a title="Find Coworking" href="http://www.coworkingfinder.com" target="_blank"><img class="size-medium wp-image-512 alignnone" title="cwf_screenshot" src="http://www.aboutme.it/wp-content/uploads/2011/07/cwf_screenshot-430x289.png" alt="Find Coworking - A Coworking Search Engine" width="430" height="289" /></a></p>
<p>&nbsp;</p>
<p><strong>UPDATE 07/11/2011:</strong><br />
<a title="SharedDesks - Co-working" href="http://www.shareddesks.net" target="_blank">SharedDesks</a> is now online!!!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shareddesks.net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharedDesks.net &#8211; Find Coworking Spaces with The Coworking Finder (pt.2)</title>
		<link>http://www.aboutme.it/2011/04/28/find-coworking-shareddesks-the-coworking-finder/</link>
		<comments>http://www.aboutme.it/2011/04/28/find-coworking-shareddesks-the-coworking-finder/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 20:58:58 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[aboutme]]></category>
		<category><![CDATA[coworking]]></category>
		<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[UID]]></category>
		<category><![CDATA[webweirdworld]]></category>
		<category><![CDATA[coworker]]></category>
		<category><![CDATA[find coworking]]></category>
		<category><![CDATA[shared desks]]></category>
		<category><![CDATA[shareddesks]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=454</guid>
		<description><![CDATA[In a previous post of 2009 i was talking about coworking and a new idea that was trying to become &#8220;alive&#8221;. Now you can find a coworking in seconds! &#8230;nope, just kiddin&#8217;, not yet, but sure looking for coworking spaces will be easier then ever, just whip us to make us work faster and to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aboutme.it/2011/04/28/find-coworking-shareddesks-the-coworking-finder/sd150/" rel="attachment wp-att-456"><img class="size-full wp-image-456  alignleft" title="sd150" src="http://www.aboutme.it/wp-content/uploads/2011/04/sd150.png" alt="SharedDesks - Find Coworking with The Coworking Finder" width="150" height="150" /></a></p>
<p>In a <a title="Shared Desks" href="http://www.aboutme.it/2009/06/28/shared-desks/">previous post of 2009</a> i was talking about coworking and a new idea that was trying to become &#8220;alive&#8221;.<br />
Now you can find a coworking in seconds!<br />
&#8230;nope, just kiddin&#8217;, not yet, but sure looking for coworking spaces will be easier then ever, just <a title="Find Coworking!" href="http://www.shareddesks.net" target="_blank">whip us</a> to make us work faster and to see the result of our work :)<br />
Ok, back to the coworking subject and to <strong><a title="Find Coworking with the coworking finder!" href="http://www.shareddesks.net" target="_blank">the coworking finder</a></strong>&#8230;.2 days ago we finally launched &#8220;SharedDesks &#8211; The Coworking Finder&#8221; (and today we got published <a title="SharedDesks - The Coworking Finder on onepagelove.com" href="http://onepagelove.com/shareddesks" target="_blank">onepagelove.com</a> thanks to <a title="Dario Aschero" href="http://it.linkedin.com/in/darioaschero" target="_blank">Dario</a>&#8216;s design and Genesio&#8217;s illustrations).<br />
The idea has grown (but it&#8217;s still the same old thing helping freelancers, coworkers, writers, nerds, etc. to find a coworking&#8230;) and i hope we can soon get online with what IMHO believe being the best way to find a coworking (eheh, probably that&#8217;s not so modest, but still, i remember having this idea 2 years ago and i still believe it will be great :P ).<br />
In the meanwhile, if you are a coworking addict, a coworking curious, a coworking owner or manager, a coworker, or a human surfing the web&#8230;.we are now waiting to see some results in terms of participation&#8230;and that is why you should <a title="get pre-beta subscription invitations on shareddesks.net!" href="http://www.shareddesks.net/#SharedDesks-when" target="_blank">&#8220;whip us&#8221; and get our pre-beta subscription invitations</a>!</p>
<p><a title="Shared Desks The Coworking finder" href="http://shareddesks.net" target="_blank">see the Coworking Finder in a single page &#8220;preview&#8221; and get the invitation to finally find coworking.</a></p>
<p><span style="color: #993300;"><strong>UPDATE 08/08/2011<br />
</strong></span>There is a beta of coworking finder up and running at <a title="find coworking with the coworking finder" href="http://coworkingfinder.com" target="_blank">http://coworkingfinder.com</a> there you can find already a few coworking spaces around you,<a title="Find Coworking with The Coworking Finder" href="http://coworkingfinder.com" target="_blank"> check it out!</p>
<p><strong>UPDATE 07/11/2011:</strong><br />
</a><a title="SharedDesks - Co-working" href="http://www.shareddesks.net" target="_blank">SharedDesks</a><a title="Find Coworking with The Coworking Finder" href="http://coworkingfinder.com" target="_blank"> is now online!!!  </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/04/28/find-coworking-shareddesks-the-coworking-finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brand Catcher 1.2</title>
		<link>http://www.aboutme.it/2011/04/20/brand-catcher-1-2/</link>
		<comments>http://www.aboutme.it/2011/04/20/brand-catcher-1-2/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 14:02:37 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[street fashion]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=470</guid>
		<description><![CDATA[I&#8217;ve got to say this time is not really all thanks to me :P but more thanks to ale, stefan, jan and kevin that Brand-Catcher.com got renewed! see the website.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got to say this time is not really all thanks to me :P<br />
but more thanks to <a title="Alessandro Valsania" href="http://www.linkedin.com/profile/view?id=86665833&amp;authType=name&amp;authToken=cn5L&amp;locale=en_US&amp;goback=.npp_%2Falessandro*5valsania%2F25%2F35%2Fa09" target="_blank">ale</a>, <a title="Stefan Reichel" href="http://www.linkedin.com/profile/view?id=78145189&amp;authType=NAME_SEARCH&amp;authToken=xbgV&amp;locale=en_US&amp;srchid=7c06bf74-9a0e-49c3-92e7-0e6acb1b486f-0&amp;srchindex=1&amp;srchtotal=3&amp;pvs=ps&amp;pohelp=&amp;goback=.fps_*1_Stefan_Reichel_*1_*1_*1_*1_*51_*1_Y_*1_*1_*1_false_1_R_true_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2" target="_blank">stefan</a>, <a title="Jan Radoch" href="http://www.linkedin.com/profile/view?id=12034210&amp;authType=NAME_SEARCH&amp;authToken=GEUV&amp;locale=en_US&amp;srchid=6b8da584-315e-47c6-a8f6-0a0add8b5a07-0&amp;srchindex=1&amp;srchtotal=4&amp;pvs=ps&amp;pohelp=&amp;goback=.fps_*1_+_Radoch_*1_*1_*1_*1_*51_*1_Y_*1_*1_*1_false_1_R_true_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2">jan</a> and <a title="kevin markuse" href="http://www.linkedin.com/profile/view?id=14464399&amp;authType=NAME_SEARCH&amp;authToken=6WVF&amp;locale=en_US&amp;srchid=bcc22c6e-7aa9-472a-95e6-79984108fe47-0&amp;srchindex=1&amp;srchtotal=1&amp;pvs=ps&amp;pohelp=&amp;goback=.fps_*1_Kevin_Marcuse_*1_*1_*1_*1_*51_*1_Y_*1_*1_*1_false_1_R_true_*1_de%3A0_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2">kevin</a> that Brand-Catcher.com got renewed!</p>
<p><a title="Brand Catcher" href="http://www.brand-catcher.com" target="_blank">see the website.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/04/20/brand-catcher-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brand New: Brand-Catcher.com</title>
		<link>http://www.aboutme.it/2011/01/13/brand-new-brand-catcher-com/</link>
		<comments>http://www.aboutme.it/2011/01/13/brand-new-brand-catcher-com/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 10:22:49 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[UID]]></category>
		<category><![CDATA[webweirdworld]]></category>
		<category><![CDATA[cloths]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[retail]]></category>
		<category><![CDATA[street]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/?p=432</guid>
		<description><![CDATA[It&#8217;s been a while since the last post&#8230;buuut: for whoever will reach this page, i want you to know i&#8217;m still here and still working (although i&#8217;ve been 2 months in South Africa) Here&#8217;s the latest update on work i&#8217;ve been busy with in the last year and a half: www.brand-catcher.com It&#8217;s an e-commerce website [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since the last post&#8230;buuut:<br />
for whoever will reach this page, i want you to know i&#8217;m still here and still working (although i&#8217;ve been 2 months in South Africa)<br />
Here&#8217;s the latest update on work i&#8217;ve been busy with in the last year and a half:</p>
<p><a title="aboutme.it - Brand-Catcher.com" href="http://www.brand-catcher.com"><img class="alignnone" title="Brand Catcher" src="http://www.brand-catcher.com/assets/images/logo.png" alt="" width="188" height="31" /></a><br />
<a title="aboutme.it - Brand-Catcher.com" href="http://www.brand-catcher.com">www.brand-catcher.com</a><br />
It&#8217;s an e-commerce website build in around 6 months (starting from scratch with a 4 person team).<br />
I&#8217;ve been busy building the all back-end application and writing all the front-end scripts with the classic <a title="aboutme.it - LAMP" href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29">LAMP</a> setup (+ jquery for having a more user-friendly interaction).</p>
<p>Graphics and all of the front-end interactions are made by <a title="aboutme.it - Alevals" href="http://www.alevals.com">Ale</a>.</p>
<p>The company (Trimara GmbH) is based in Germany and their business is mainly focused in their home country, although rumors say that they will, probably soon, start to sell their street fashion to many other european countries.<br />
Keep an eye on it if you like street fashion, it could be soon availabe in your country as well!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2011/01/13/brand-new-brand-catcher-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>canale150 V2.0</title>
		<link>http://www.aboutme.it/2010/05/02/canale150-v2-0/</link>
		<comments>http://www.aboutme.it/2010/05/02/canale150-v2-0/#comments</comments>
		<pubDate>Sun, 02 May 2010 18:25:25 +0000</pubDate>
		<dc:creator>enrico</dc:creator>
				<category><![CDATA[Italia]]></category>
		<category><![CDATA[nerdstuff]]></category>
		<category><![CDATA[webweirdworld]]></category>
		<category><![CDATA[canale150]]></category>

		<guid isPermaLink="false">http://www.aboutme.it/2010/05/02/canale150-v2-0/</guid>
		<description><![CDATA[New version of the website for the event &#8220;canale150&#8243; is now out, couple of new section and a graphic restyling. www.canale150.it Here&#8217;s a screenshot of the GUI:]]></description>
			<content:encoded><![CDATA[<p>New version of the website for the event &#8220;canale150&#8243; is now out, couple of new section and a graphic restyling.<br />
<a title="aboutme.it - canale150.it" href="http://www.canale150.it">www.canale150.it</a></p>
<p>Here&#8217;s a screenshot of the GUI:</p>
<p><a title="Canale 150 per Italia150" href="http://www.canale150.it" target="_blank"><img class="alignnone size-medium wp-image-520" title="canale150" src="http://www.aboutme.it/wp-content/uploads/2010/05/canale150-430x268.png" alt="" width="430" height="268" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aboutme.it/2010/05/02/canale150-v2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

