<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Blog</title>
    <link>http://nicolas/blog/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>nicolasbottari@gmail.com</dc:creator>
    <dc:rights>Copyright 2010</dc:rights>
    <dc:date>2010-08-03T15:02:40+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>Handy use for Apple&#8217;s black cleaning cloth</title>
      <link>http://nicolasbottari.com/site/handy_use_for_apples_black_cleaning_cloth</link>
      <guid>http://nicolasbottari.com/site/handy_use_for_apples_black_cleaning_cloth#When:15:02:40Z</guid>
      <description>Everyone has one or more of those black cleaning cloths that come with a number of Apple products. Often ignored, this cloth does an amazing job at cleaning the screen of your computer or glass&#45;based device. I also noticed that the cloth causes enough friction and traction to be used as a great bottle/pot opener. Any other good uses for the cloth?</description>
      <dc:subject>Tips and tricks,</dc:subject>
      <dc:date>2010-08-03T15:02:40+00:00</dc:date>
    </item>

    <item>
      <title>How to fix some Wordpress e&#45;commerce plugin annoyances</title>
      <link>http://nicolasbottari.com/site/how_to_fix_some_wordpress_e_commerce_plugin_annoyances</link>
      <guid>http://nicolasbottari.com/site/how_to_fix_some_wordpress_e_commerce_plugin_annoyances#When:14:29:42Z</guid>
      <description>Here are some small fixes I found during Wordpress site development using the WP e&#45;commerce plugin. Although the plugin is a quick (and free!) way to quickly put up a small e&#45;commerce section on a website, it still requires a handful of improvement to make setup more simple to use.
Removing decimals to prices
This should be an option in the control panel, but unfortunately isn&apos;t. Not every currency has decimals (eg. Japanese yen), so the extra &quot;.00&quot; needs to be dropped. This can be done by first setting the plugin not to display decimals in the control panel. Unfortunately, this setting does not extend everywhere, so two files need to be modified:
In the wp&#45;e&#45;commerce/wpsc&#45;includes/cart.class.php file near line 1362, change
 $price = number_format($price, 2, &apos;.&apos;, &apos;,&apos;); 
to
$price = number_format($price, 0, &apos;.&apos;, &apos;,&apos;);
&amp;nbsp;
In the wp&#45;e&#45;commerce/wpsc&#45;includes/processing.functions.php file near line 81, change

$price_out = number_format($price_in, 2, &apos;.&apos;, &apos;,&apos;);

to

$price_out = number_format($price_in, 0, &apos;.&apos;, &apos;,&apos;);

Use form&#45;submitted values in confirmation email/thank you page
Another feature that should be working out&#45;of&#45;the&#45;box. By default, only the following tokens can be used in emails and thank you pages (Store &amp;gt; Settings &amp;gt; Admin): %shop_name%, %product_list%, %total_price%, %total_shipping%, %find_us%. How about the client name? Or email address? Or shipping info? Would be nice to have a &quot;Thank you, Mr. X, for your order&quot;, right?
Not the best type of hack, but works. Each input field you set up in the wp e&#45;commerce control panel has an field ID attached to it. Let&apos;s get those IDs and create new tokens like %field_id_1%. In the wp&#45;e&#45;commerce/transaction_result_functions.php file, add the following near lines 231 (or anywhere in that area):
$submitted_form_data = $wpdb&#45;&amp;gt;get_results(&apos;SELECT * FROM wp_wpsc_submited_form_data WHERE `log_id`=&quot;&apos;.$purchase_log[&apos;id&apos;].&apos;&quot;&apos;);foreach($submitted_form_data as $k =&amp;gt; $v) {&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $extra_field_data[$v&#45;&amp;gt;form_id] = $v&#45;&amp;gt;value;}foreach($extra_field_data as $id =&amp;gt; $value) {&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $message = str_replace( &apos;%field_id_&apos;.$id.&apos;%&apos;, $value, $message );&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $report = str_replace( &apos;%field_id_&apos;.$id.&apos;%&apos;, $value, $report );&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $message_html = str_replace( &apos;%field_id_&apos;.$id.&apos;%&apos;, $value, $message_html );&amp;nbsp;}
You should now be able to add %field_is_X% tokens (X being the field ID) in the report and client message emails, as well as the shop HTML pages.
Multibyte shop category names
Looks like multibyte characters do not play nice with category names in the WP e&#45;commerce plugin. By default, the category name is used to create the &quot;nice&#45;name&quot; which can be thought of as the category slug. With multibyte characters (eg. Japanese), this can become a problem when used in URLs. If you do not use the category description field, that field can be used to store your multibyte name, and the category name is used for your standard alphanumeric category name. To do this, a small change is needed in the wp&#45;e&#45;commerce/wpsc&#45;includes/category.functions.php file at lines 29&#45;31. Change:
function wpsc_print_category_name() {&amp;nbsp;&amp;nbsp; &amp;nbsp;echo &quot;[wpsc_category_name]&quot;;}
to

function wpsc_print_category_name() { &amp;nbsp;&amp;nbsp; &amp;nbsp;echo &quot;[wpsc_category_description]&quot;; }

Your multibyte text will show on the site, but your URLs will contain alphanumeric characters based on your category name field in the control panel.
Hopefully this can come in handy for someone. And yes, using ExpressionEngine with Freeform might have been faster.</description>
      <dc:subject>Coding, Wordpress,</dc:subject>
      <dc:date>2010-07-27T14:29:42+00:00</dc:date>
    </item>

    <item>
      <title>How to change the collation of a table and its columns</title>
      <link>http://nicolasbottari.com/site/how_to_change_the_collation_of_a_table_and_its_columns</link>
      <guid>http://nicolasbottari.com/site/how_to_change_the_collation_of_a_table_and_its_columns#When:08:56:21Z</guid>
      <description>One of my ExpressionEngine 2 installations wouldn&apos;t accept multibyte characters (Japanese, to be exact) in the Discussion Forum module. Those characters would be displayed as question marks in thread posts. I thought that the default EE2 install created tables in Unicode (UTF&#45;8) automatically, and that I shouldn&apos;t have any problems with multibyte characters. After a closer look at my database, I realised that the exp_forum tables were in latin_1! I had two options to fix the problem:

Turn on the &quot;Convert to high ASCII&quot; option in ExpressionEngine&apos;s control panel (under Admin / Channel Administration / Global preferences). Multibyte characters would then be saved as entities in the database. For example, &quot;&#12354;&quot; would be saved as &amp;amp;#12354; . This is not my favorite strategy anymore, as I would rather have foreign characters readable in my database, using the command line or phpMyAdmin.
Alter the latin_1 MySQL tables, and its columns, into UTF&#45;8. This can be done with phpMyAdmin, but the following SQL is more expedient (just repeat for each affected table):
ALTER TABLE exp_forum_posts CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;


After this, I was able to post with multibyte characters, which were saved as is in the database under the right utf8_general_ci&#45;collated column.</description>
      <dc:subject>Coding,</dc:subject>
      <dc:date>2010-07-14T08:56:21+00:00</dc:date>
    </item>

    <item>
      <title>Cup noodle ads: funny lyrics of known music videos</title>
      <link>http://nicolasbottari.com/site/cup_noodle_ads_funny_lyrics_of_known_music_videos</link>
      <guid>http://nicolasbottari.com/site/cup_noodle_ads_funny_lyrics_of_known_music_videos#When:12:02:47Z</guid>
      <description>I&#39;m really digging the recent Cup Noodle commercial series in Japan. The commercial looks like a regular music video, but the lyrics are completely different and sung in Japanese. Check out this Jamiroquai gem:

	

	Looks like the famous &amp;quot;Virtual Insanity&amp;quot; video, until Jamiroquai starts singing &amp;quot;I&#39;m hungry, I&#39;m hungry, I&#39;m hungry, I&#39;m hungry... Oh Cup Noodle, I could eat about five!&amp;quot;

	I only know of another music video from a Japanese song, but looking forward to more of these commercials.</description>
      <dc:subject>Engrish and odd findings, Japan,</dc:subject>
      <dc:date>2010-06-21T12:02:47+00:00</dc:date>
    </item>

    <item>
      <title>Addon updates for EE2, part 1</title>
      <link>http://nicolasbottari.com/site/addon_updates_for_ee2_part_1</link>
      <guid>http://nicolasbottari.com/site/addon_updates_for_ee2_part_1#When:23:21:43Z</guid>
      <description>I have updated some my addons over the weekend for ExpressionEngine 2. Each addon will now have two download links for the 1.6.x and 2.x versions of the addon.

	The updated addons are:

	
		Google Analytics (actually updated my Mathieu Fauveau)
	
		NB moji limit
	
		NB CSV to Table
	
		NB Japanese Year


	I have tested these addons myself and they seem to be running fine. If you encounter any problems, please let me know.

	Since ExpressionEngine 2 stores text in the database in UTF&#45;8 format, I thought Ellis Lab&#39;s Character Limiter plugin would easily do NB moji limit&#39;s job. To my surprise, text came out garbled as in 1.6.x, so I decided to update my plugin. Don&#39;t forget to make sure your PHP installation has the required functions for multibyte characters!</description>
      <dc:subject>ExpressionEngine 2,</dc:subject>
      <dc:date>2010-06-13T23:21:43+00:00</dc:date>
    </item>

    <item>
      <title>Using twitter from a Japanese mobile phone</title>
      <link>http://nicolasbottari.com/site/using_twitter_from_a_japanese_mobile_phone</link>
      <guid>http://nicolasbottari.com/site/using_twitter_from_a_japanese_mobile_phone#When:22:15:07Z</guid>
      <description>I remember a few months ago when I tried in vain to login on Twitter from my Japanese ketai, which most have only a simple WAP browser (meaning no Javascript or complex CSS, old school webpages only). I couldn&#39;t get past the login form, which wouldn&#39;t clear for some reason.

	Looks like this has been solved now, with the whole Twitter interface translated in Japanese, little Japanese keitai&#45;only emoji and all. Some mobile&#45;specific functionality has also been added, including emailing a tweet from your mobile (like mobile blogging found in some CMSs) and keypad menu selection.

	That might explain why Twitter is becoming increasingly popular in Japan, after a slow start compared to other parts of the world. In fact, there is even a current drama on Japanese TV (Sunao ni narenakute, &#32032;&#30452;&#12395;&#12394;&#12428;&#12394;&#12367;&#12390;) about a group of friends who met using Twitter. A number of scenes showed the protagonists tweeting on their keitais, which I thought was not yet possible. Looks like I&#39;m wrong.</description>
      <dc:subject>Japan,</dc:subject>
      <dc:date>2010-06-09T22:15:07+00:00</dc:date>
    </item>

    <item>
      <title>This site, now fueled with ExpressionEngine 2</title>
      <link>http://nicolasbottari.com/site/this_site_now_fueled_with_expressionengine_2</link>
      <guid>http://nicolasbottari.com/site/this_site_now_fueled_with_expressionengine_2#When:06:02:28Z</guid>
      <description>It&#39;s done, the site has been upgraded and is now running using ExpressionEngine 2. The upgrade went very well, aside from a few minor hiccups (note: upgrade goes better if you don&#39;t leave the &amp;quot;save templates as files&amp;quot; option on in EE 1.6.x). You may have noticed a few more changes on the site as well.

	Site redesign

	I guess my green phase is over. The initial design was put together very quickly to be able to officially hold my EE addons and have a place to blog. I decided to go &amp;quot;purple&amp;quot; this time, and hope to tweak the design more in the coming weeks.

	Latest tweets on front page

	I decided to add twitter to the mix, as I often do not have enough to write for a full blog article, but still like to communicate some of my thoughts. Besides, I use twitter a bit more frequently than the site.

	Projects page

	I added a simple page for projects I have worked on in the past. This section is not very refined yet, but hope to improve it soon.

	EE2 addons

	Right now, only the Google Analytics plugin has been updated to EE2, thanks to another EE developer, Matthieu Fauveau. I intend to convert the other addons over time. Since I do not know how many people out there actually use my addons, if you would like to see a specific addon updated to EE2 more quickly, please let me know and I&#39;ll try to speed things up.

	I will also have to review which addons actually need to be updated, as some of them may be obsolete for EE2.

	NB show custom field data

	I have an updated version of the currently 1.6.x&#45;only addon NB show custom field data (v1.0) which I would like to make public soon, under a possible new name. The extension should answer a number of requests I received based on the current official version, and contain a few more goodies. I would like to offer this addon as donationware for the time being, as I don&#39;t know how popular the addon is, and would like more people to try it out first. The idea is that you make a donation, and I will send you the extension (one donation = one single&#45;site license). If this addon is popular enough, hopefully that will mean further improvements and even EE2 compatibility!

	I sure have a lot of little things I want to add/improve on the site, but hope to push these incrementally. A bit like Google with their frequent and tiny additions to their web apps.</description>
      <dc:subject>ExpressionEngine 2, nicolasbottari.com,</dc:subject>
      <dc:date>2010-06-05T06:02:28+00:00</dc:date>
    </item>

    <item>
      <title>My latest gadget: the washlet</title>
      <link>http://nicolasbottari.com/site/my_latest_gadget_the_washlet</link>
      <guid>http://nicolasbottari.com/site/my_latest_gadget_the_washlet#When:10:34:58Z</guid>
      <description>While everyone else is talking about the iPad, I would like to show off my latest gadget which I have purchased last week: the washlet.

	I&#39;m sure a lot of people know what a washlet is, but personally, I didn&#39;t know about the term until I came to Japan. So, what is a washlet?

	A washlet is a device that replaces your standard toilet cover with a high&#45;tech seat containing a number of functions, such as sprinkling water on your bum, heating the seat, filtering odors, automatically raising/lowering seat, etc. It comes with a sidearm console, which I have played with numerous times in Japanese restaurants. It&#39;s always nice to figure out what a particular washlet can do, despite some uncomfotable surprises form time to time (cold water up there when you&#39;re not expecting it? Not fun.)

	Installation

	The installation was not as hard as I thought it would be. Toilet seats have two big plastic screws which are very easy to remove, and likewise, the washlet screws into the toilet the same way. The piping was slightly more complex, as the standard pipe going to the tank must be modified to bring water to both the tank and the washlet tank, which in turn will warm up the water to be later sprinkled. Then, the washlet must be connected to a power outlet to power the console. Finally, a thin metal wire must be grounded to avoid static charge buildup while the device is on. I cannot image getting a jolt of static electricity on your privates being a pleasant experience.

	Basic washlet functions

	I got a fairly normal model by Japanese standards:

	
		Heating seat: Most japanese homes are not or badly insulated for winter (don&#39;t ask me why, no one knows!!!). Standard seats can get very cold in winter, which is very unpleasant. Heating provides a much better experience.
	
		Odor filter: Do I have to explain this one? A lifesaver after Mexican food.
	
		Heated water sprinkler: Want a better butt&#45;wiping experience? Try spraying some water first. The spray can even move! You also save on paper (but lose on water, I guess).
	
		Bidet: For the ladies, I&#39;m sure this is very practical, and you don&#39;t need a bidet in the house in addition to the toilet. 2&#45;in&#45;1 !!!
	
		Fine control over everything: seat temperature, water temperature, water pressure, sprinkler position... maybe more?


	More advanced models come with odor filtering with perfumes, automatic opening seat as you walk in and closing as you are done (after getting up, of course), flush strength, air jet to dry your bum after sprinkling it, and otohime, the fart silencer.

	Sounds weird to be excited about a washlet, but I&#39;m actually very happy to have gotten one, even if it&#39;s just for the heated seat. I&#39;m even thinking of giving a few to my family back home. If you can get your hands (or butt) on one, I totally recommend it.</description>
      <dc:subject></dc:subject>
      <dc:date>2010-02-07T10:34:58+00:00</dc:date>
    </item>

    <item>
      <title>Addons and ExpressionEngine 2.0 &#8220;something&#8221;</title>
      <link>http://nicolasbottari.com/site/addons_and_expressionengine_2_0_something</link>
      <guid>http://nicolasbottari.com/site/addons_and_expressionengine_2_0_something#When:21:35:56Z</guid>
      <description>ExpressionEngine 2.0 PB, formerly &amp;quot;Beta&amp;quot;, formerly &amp;quot;Release candidate&amp;quot;, now &amp;quot;Public Beta&amp;quot; (or was that Peanut Butter? maybe later), has been out for about a week now. A lot of developers are annoucing roadmaps, and I should probably do something similar... eventually.

	Based on the developer&#39;s documentation, porting my plugins to 2.0 should not be too difficult. I hope to update those soon enough, although there doesn&#39;t seem to be any rush to do so right at this moment. The NB Show custom field data extension will be an interesting challenge, and I think this extension can come in handy in 2.0 as well as 1.x.

	So, no roadmap for now, but I hope to move the addons to 2.0 in the future (I use a number of them here myself). Just a heads up.</description>
      <dc:subject></dc:subject>
      <dc:date>2009-12-07T21:35:56+00:00</dc:date>
    </item>

    <item>
      <title>Taking on the seven&#45;patty Whopper</title>
      <link>http://nicolasbottari.com/site/taking_on_the_seven-patty_whopper</link>
      <guid>http://nicolasbottari.com/site/taking_on_the_seven-patty_whopper#When:13:16:56Z</guid>
      <description>Oh boy, what a feast! Along with the Windows 7 launch, for which I&#39;m psyched just for Internet Explorer 8 and the hopefully hastened death of IE6, Burger King in Japan was offering a seven&#45;patty Whopper. The first 140 visitors or so could get the whopper for 777 yen (about 7 bucks), but since I got there late, I dished out the full 1420 yen. Worth it though, being my birthday and a rare chance to see this marvel, if ever see such a sandwich again. Also... what a challenge! The Whopper tasted like you would expect: pure meat, with a touch of condiment flavor if you bit the top or bottom of the burger. Since this gargantuan sandwich was higher than my maximum buccal aperture size, I opted for the bite&#45;the&#45;top, bite&#45;the&#45;bottom approach. Needless to say the meal was quite a messy one. As pumped as I was to conquer this monster&#45;sized burger, three&#45;quarters down I had to concede defeat. I wrapped up the remaining patties, which I will probably use in macaroni and cheese or something.</description>
      <dc:subject></dc:subject>
      <dc:date>2009-10-24T13:16:56+00:00</dc:date>
    </item>

    <item>
      <title>Google Analytics plugin updated</title>
      <link>http://nicolasbottari.com/site/google_analytics_plugin_updated</link>
      <guid>http://nicolasbottari.com/site/google_analytics_plugin_updated#When:20:15:01Z</guid>
      <description>Took less time than I thought to confirm that site search queries and other links are tracked in my Google Analytics account. I therefore released version 0.2 of the Google Analytics plugin for Expressionengine. Again, this plugin is really for convenience: no need to look for the GA code, followed by copy/pasting in your template/embed/as a global variable. I mean,  is a lot easier to remember than the GA code, right? Not to mention that this simple tag simplifies templates. Juicy details can be found here and at the EE Forums</description>
      <dc:subject></dc:subject>
      <dc:date>2009-10-06T20:15:01+00:00</dc:date>
    </item>

    <item>
      <title>Progress on the Google Analytics plugin for EE</title>
      <link>http://nicolasbottari.com/site/progress_on_the_google_analytics_plugin_for_ee</link>
      <guid>http://nicolasbottari.com/site/progress_on_the_google_analytics_plugin_for_ee#When:19:39:26Z</guid>
      <description>Just finished adding a few useful parameters to the Google Analytics plugin. Although everything seems to be working fine on my system, I&#39;ll need a few days to check if everything checks in alright. Among things to look forward to are search query tracking, as well as download/mailto/whatever click tracking.</description>
      <dc:subject></dc:subject>
      <dc:date>2009-10-05T19:39:26+00:00</dc:date>
    </item>

    <item>
      <title>Tokyo tower&#8230; in pink</title>
      <link>http://nicolasbottari.com/site/tokyo_tower_in_pink</link>
      <guid>http://nicolasbottari.com/site/tokyo_tower_in_pink#When:16:15:11Z</guid>
      <description>Just had to share this. Walking back from work, I see a bunch of people with their cellphones out, pointing their cameras at something. I look behind me, and behold, what a view! Tokyo tower, a &amp;quot;me too!&amp;quot; copy of another famous European building, was illuminated in some kind of purple/pink color. I had just enough juice in my cellphone to take the picture, before my cell died. As you can also see, a picture taken from a crappy cellphone camera, at night, is not great.</description>
      <dc:subject></dc:subject>
      <dc:date>2009-10-01T16:15:11+00:00</dc:date>
    </item>

    <item>
      <title>Changes to site design</title>
      <link>http://nicolasbottari.com/site/changes_to_site_design</link>
      <guid>http://nicolasbottari.com/site/changes_to_site_design#When:20:11:18Z</guid>
      <description>I&#39;m currently making some changes to the website. I haven&#39;t tested in Internet Explorer yet, so sorry if the site doesn&#39;t look too hot in that (let&#39;s be honest) simpler series of browsers. I wrote the first version of my stylesheet a bit in a hurry, as I just wanted to get up and running. Now I have the chance to go over it again and make changes. Also added some CSS3&#45;based styling, which should look nice in a number of browser, except for the above&#45;mentioned browser, of course. So much faster to write too, and lesser worries. I recently have some interest in mathematics in design, in particular the Golden number. Probably comes from my biological science background :) Try to find where I used the Golden number. I find it reassuring to know that things that look pretty have a calculable reason to be pretty.</description>
      <dc:subject></dc:subject>
      <dc:date>2009-09-28T20:11:18+00:00</dc:date>
    </item>

    <item>
      <title>Ongoing work on my ExpressionEngine addons</title>
      <link>http://nicolasbottari.com/site/ongoing_work_on_my_expressionengine_addons</link>
      <guid>http://nicolasbottari.com/site/ongoing_work_on_my_expressionengine_addons#When:19:33:13Z</guid>
      <description>Progress on my NB Show custom field data extension for ExpressionEngine is going well. More detailed conversation about the piece can be found at the EE forums. Right now, work&#45;in&#45;progress options are the no&#45;longer&#45;need to specify the file upload directory when the custom field is set to the &amp;quot;File&amp;quot; display type, and control over the FF Matrix table headers. The bigger and requested option, which I have yet to tackle, is giving the choice of a downloadable file or thumbnail image for the File display type. The nGen fiel field, however, can be used to upload all sorts of files, from images, to text files, to PDFs. I will have to find a way to differentiate file types and be selective for image files. Pretty hard and pointless to make a thumbnail of a CSV file, right? ;) The other question is: create thumbnails or just shrink the image by simply setting width and height? The first option means small thumbnail files would have to be created somewhere on the server. Shrinking images, however, leave no thumbnail images lying around, but images take time to load for big files (a 2000 pixel&#45;wide image, for example, is still a heavy 2000 pixel&#45;wide image). I&#39;ll have to look at how the other thumbnail&#45;displaying extensions handle this, as I haven&#39;t had the chance to try those much. I might just go for setting width/height for images, though, unless I have some incentive to spend time and work on a thumbnail&#45;creating system :)</description>
      <dc:subject></dc:subject>
      <dc:date>2009-09-03T19:33:13+00:00</dc:date>
    </item>

    <item>
      <title>This may look simple for now&#8230;</title>
      <link>http://nicolasbottari.com/site/this_may_look_simple_for_now</link>
      <guid>http://nicolasbottari.com/site/this_may_look_simple_for_now#When:03:11:21Z</guid>
      <description>You may have noticed that the site may look somewhat simple and empty, but I intend to add a number of items, such as this section (the blog), some ExpressionEngine plugins and extensions I am playing with/working on, various web projects, tips and tricks I find here and there, as well as probably some not&#45;that&#45;insightful commentaries from time to time.</description>
      <dc:subject>nicolasbottari.com,</dc:subject>
      <dc:date>2009-08-17T03:11:21+00:00</dc:date>
    </item>

    
    </channel>
</rss>