<?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/" >
	<channel>
	    <title><![CDATA[Arzion Rss - Internet contents, web programming, emarketing, econsulting, technology]]></title>
	    <link>http://www.arzion.com/</link>
	    <language>en</language>
	    <description><![CDATA[A lot of interesting post about internet, web programming, emarketing, econsulting and new technologies.]]></description>	    
	    <generator>Arzion</generator><item>
			    	<title>Popups with FancyBox</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Popups-with-FancyBox]]></link>
					<pubDate>28 Oct 2009 15:30:41 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Popups-with-FancyBox</comments>
					<content:encoded><![CDATA[<p>Hello... today I'm gonna teach you how to show a popup with FancyBox.

FancyBox is a tool to show images, html content and multimedia content in a window LightBox like

It was developed using the jQuery library.

Let's go to the example!

First of all, we should add to the page that is going to contain our b</p>]]></content:encoded>
					<description><![CDATA[<p>Hello... today I'm gonna teach you how to show a popup with FancyBox.

FancyBox is a tool to show images, html content and multimedia content in a window LightBox like

It was developed using the jQuery library.

Let's go to the example!

First of all, we should add to the page that is going to contain our b</p>]]></description>
				</item>
				<item>
			    	<title>Booking Calendar - Online booking plugin for Wordpress</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Booking-Calendar---Online-booking-plugin-for-Wordpress]]></link>
					<pubDate>27 Oct 2009 14:52:26 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Booking-Calendar---Online-booking-plugin-for-Wordpress</comments>
					<content:encoded><![CDATA[<p>Browsing the web, I found this plugin to make online bookings.

It's a plugin that allow us to add a form into our blog to make the reservations.

Your site visitors can make booking for one or several days of one or several properties (appartments, hotel rooms, cars, etc) and make online payment. Its can be interesting for hotel reservation service, rental service or a</p>]]></content:encoded>
					<description><![CDATA[<p>Browsing the web, I found this plugin to make online bookings.

It's a plugin that allow us to add a form into our blog to make the reservations.

Your site visitors can make booking for one or several days of one or several properties (appartments, hotel rooms, cars, etc) and make online payment. Its can be interesting for hotel reservation service, rental service or a</p>]]></description>
				</item>
				<item>
			    	<title>Export a GridView to Word format with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Word-format-with-ASPnet]]></link>
					<pubDate>8 Jul 2009 14:14:40 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Word-format-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>Following our series of Export to... this time is the turn of Word format. (.doc).
Still being really simple. We put the next code on the OnClick event of the button, and that's all!.

    Response.Clear();

    Response.Buffer = true;

    Response.AddHeader("content-disposition",

    "attachment;filename=GridViewExport.doc");

    Respons</p>]]></content:encoded>
					<description><![CDATA[<p>Following our series of Export to... this time is the turn of Word format. (.doc).
Still being really simple. We put the next code on the OnClick event of the button, and that's all!.

    Response.Clear();

    Response.Buffer = true;

    Response.AddHeader("content-disposition",

    "attachment;filename=GridViewExport.doc");

    Respons</p>]]></description>
				</item>
				<item>
			    	<title>Importance of Sitemaps</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Importance-of-Sitemaps]]></link>
					<pubDate>13 Jun 2009 22:11:54 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Importance-of-Sitemaps</comments>
					<content:encoded><![CDATA[<p>&nbsp;The sitemaps importance is today out of discussion, it's been more than 2 years since yahoo, microsoft and google jointly announced the sitemap submition in robots.txt, according to a study presented in the WWW 09 in madrid by Uri Schonfeld, sitemap files&nbsp;submission has almost tripled over the last year</p>]]></content:encoded>
					<description><![CDATA[<p>&nbsp;The sitemaps importance is today out of discussion, it's been more than 2 years since yahoo, microsoft and google jointly announced the sitemap submition in robots.txt, according to a study presented in the WWW 09 in madrid by Uri Schonfeld, sitemap files&nbsp;submission has almost tripled over the last year</p>]]></description>
				</item>
				<item>
			    	<title>Export a GridView to Excel format with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Excel-format-with-ASPnet]]></link>
					<pubDate>1 Jun 2009 16:09:17 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-a-GridView-to-Excel-format-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>With the next code you will be able to export a GridView to Excel format (xls), it's very simple:

protected void btnExportExcel_Click(object sender, EventArgs e)
{
	Response.Clear();
	Response.Buffer = true;
	Response.AddHeader(&quot;content-disposition&quot;,
	&quot;attachment;filename=GridViewExport.xls&quot;);
	Response.Charset = &quot;&quot;;
	Respon</p>]]></content:encoded>
					<description><![CDATA[<p>With the next code you will be able to export a GridView to Excel format (xls), it's very simple:

protected void btnExportExcel_Click(object sender, EventArgs e)
{
	Response.Clear();
	Response.Buffer = true;
	Response.AddHeader(&quot;content-disposition&quot;,
	&quot;attachment;filename=GridViewExport.xls&quot;);
	Response.Charset = &quot;&quot;;
	Respon</p>]]></description>
				</item>
				<item>
			    	<title>Export a GridView to CSV with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-a-GridView-to-CSV-with-ASPnet]]></link>
					<pubDate>27 May 2009 15:08:58 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-a-GridView-to-CSV-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>This example is very easy to implement. We only need to put the next code in the desired button:



protected void btnExportCSV_Click(object sender, EventArgs e)
{
    Response.Clear();
    Response.Buffer = true;
    Response.AddHeader("content-disposition",
     "attachment;filename=GridViewExport.csv");
    Response.Charset = "";
    Resp</p>]]></content:encoded>
					<description><![CDATA[<p>This example is very easy to implement. We only need to put the next code in the desired button:



protected void btnExportCSV_Click(object sender, EventArgs e)
{
    Response.Clear();
    Response.Buffer = true;
    Response.AddHeader("content-disposition",
     "attachment;filename=GridViewExport.csv");
    Response.Charset = "";
    Resp</p>]]></description>
				</item>
				<item>
			    	<title>Automatic documentation for PHP part 2</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP-part-2]]></link>
					<pubDate>17 Apr 2009 01:29:31 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP-part-2</comments>
					<content:encoded><![CDATA[<p>This time, we are going to talk about the standard PHPDoc.

A PHPDoc documentation is a set of Doc Blocks. These blocks must be placed inmediately before each declaration that we want to comment. The blocks have the form:



/**
*short description
*long description
*tags (see below)
*/



Using packages
Fir</p>]]></content:encoded>
					<description><![CDATA[<p>This time, we are going to talk about the standard PHPDoc.

A PHPDoc documentation is a set of Doc Blocks. These blocks must be placed inmediately before each declaration that we want to comment. The blocks have the form:



/**
*short description
*long description
*tags (see below)
*/



Using packages
Fir</p>]]></description>
				</item>
				<item>
			    	<title>Working with ASP.net and the Flickr Api</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Working-with-ASPnet-and-the-Flickr-Api]]></link>
					<pubDate>23 Mar 2009 16:15:17 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Working-with-ASPnet-and-the-Flickr-Api</comments>
					<content:encoded><![CDATA[<p>Today, I'm going to teach you how to work with the Flickr API, more precisely with FlickrNet

First of all we'll need an API key to use the library. We can get the key in www.flickr.com/services/api/keys.

Once we have the key we proceed to download the library from FlickrNet website: </p>]]></content:encoded>
					<description><![CDATA[<p>Today, I'm going to teach you how to work with the Flickr API, more precisely with FlickrNet

First of all we'll need an API key to use the library. We can get the key in www.flickr.com/services/api/keys.

Once we have the key we proceed to download the library from FlickrNet website: </p>]]></description>
				</item>
				<item>
			    	<title>Automatic documentation for PHP</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP]]></link>
					<pubDate>23 Mar 2009 15:40:04 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Automatic-documentation-for-PHP</comments>
					<content:encoded><![CDATA[<p>How many times we developed a class, and after an intensive test to ensure it works correctly, we are proud of our work and consider the task finished? A lot of times. But 5 minutes after, we say: &quot;oh no, I forgot the documentation!!&quot;.

</p>]]></content:encoded>
					<description><![CDATA[<p>How many times we developed a class, and after an intensive test to ensure it works correctly, we are proud of our work and consider the task finished? A lot of times. But 5 minutes after, we say: &quot;oh no, I forgot the documentation!!&quot;.

</p>]]></description>
				</item>
				<item>
			    	<title>Kernel compiled with the Intel C/C plus plus Compiler</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Kernel-compiled-with-the-Intel-CC-plus-plus-Compiler]]></link>
					<pubDate>4 Mar 2009 12:10:09 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Kernel-compiled-with-the-Intel-CC-plus-plus-Compiler</comments>
					<content:encoded><![CDATA[<p>Exciting news from the LinuxDNA project, which earlier this month successfully compiled a recent Linux kernel with the Intel C/C++ compiler (ICC). This is not just a compile without errors, this is &mdash; for the most part &mdash; a fully bootable, compatible Linux kernel that </p>]]></content:encoded>
					<description><![CDATA[<p>Exciting news from the LinuxDNA project, which earlier this month successfully compiled a recent Linux kernel with the Intel C/C++ compiler (ICC). This is not just a compile without errors, this is &mdash; for the most part &mdash; a fully bootable, compatible Linux kernel that </p>]]></description>
				</item>
				<item>
			    	<title>Export to PDF with WinNovative WnvHtmlConvert</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Export-to-PDF-with-WinNovative-WnvHtmlConvert]]></link>
					<pubDate>4 Mar 2009 01:23:51 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Export-to-PDF-with-WinNovative-WnvHtmlConvert</comments>
					<content:encoded><![CDATA[<p>In this example, I'll teach you how to export an URL to a PDF document, using the WinNovative WnvHTMLConvert library. Sadly this library isn't free, but you can download the DLL wich has only one restriction and that is every time you export, it prints over the PDF a message saying you are using an evaluation version. The link to download the DLL is the next one: </p>]]></content:encoded>
					<description><![CDATA[<p>In this example, I'll teach you how to export an URL to a PDF document, using the WinNovative WnvHTMLConvert library. Sadly this library isn't free, but you can download the DLL wich has only one restriction and that is every time you export, it prints over the PDF a message saying you are using an evaluation version. The link to download the DLL is the next one: </p>]]></description>
				</item>
				<item>
			    	<title>List files from a FTP server</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/List-files-from-a-FTP-server]]></link>
					<pubDate>4 Mar 2009 00:42:16 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/List-files-from-a-FTP-server</comments>
					<content:encoded><![CDATA[<p>In this little example, I'll show you how to list files from a FTP server.
We need to import the following namespaces:
&nbsp;

&lt;%@ Import Namespace=&quot;System.Net&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.IO&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.Collections.Generic&quot; %&gt;
&nbsp;
Then, we add a Grid</p>]]></content:encoded>
					<description><![CDATA[<p>In this little example, I'll show you how to list files from a FTP server.
We need to import the following namespaces:
&nbsp;

&lt;%@ Import Namespace=&quot;System.Net&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.IO&quot; %&gt;
&lt;%@ Import Namespace=&quot;System.Collections.Generic&quot; %&gt;
&nbsp;
Then, we add a Grid</p>]]></description>
				</item>
				<item>
			    	<title>LXDE, lightweight X11 desktop environment</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/LXDE-lightweight-X11-desktop-environment]]></link>
					<pubDate>11 Feb 2009 20:33:53 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/LXDE-lightweight-X11-desktop-environment</comments>
					<content:encoded><![CDATA[<p>&quot;Lightweight X11 Desktop Environment&quot;, is an extremely faster, performing and energy saving desktop environment. It is maintained by an international community of developers and comes with a beautiful interface, multi-language support, standard keyboard short cuts and additional features like tabbed file browsing. This desktop uses less CPU and less RAM. It was especially designed for cl</p>]]></content:encoded>
					<description><![CDATA[<p>&quot;Lightweight X11 Desktop Environment&quot;, is an extremely faster, performing and energy saving desktop environment. It is maintained by an international community of developers and comes with a beautiful interface, multi-language support, standard keyboard short cuts and additional features like tabbed file browsing. This desktop uses less CPU and less RAM. It was especially designed for cl</p>]]></description>
				</item>
				<item>
			    	<title>Cut and paste big files</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Cut-and-paste-big-files]]></link>
					<pubDate>9 Feb 2009 19:23:11 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Cut-and-paste-big-files</comments>
					<content:encoded><![CDATA[<p>In this mini tutorial I will show you how to cut and paste big files on Linux. There are just 2 simple commands that will be very helpful to you, in case that you need to split any file, or to move it from one folder to another, or whatever you need to do.


Suppose we have a 1GB file, and we want to split it in 10 parts... well, first of all tip the next command:
</p>]]></content:encoded>
					<description><![CDATA[<p>In this mini tutorial I will show you how to cut and paste big files on Linux. There are just 2 simple commands that will be very helpful to you, in case that you need to split any file, or to move it from one folder to another, or whatever you need to do.


Suppose we have a 1GB file, and we want to split it in 10 parts... well, first of all tip the next command:
</p>]]></description>
				</item>
				<item>
			    	<title>Hide PHP extension with .htaccess</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Hide-PHP-extension-with-htaccess]]></link>
					<pubDate>1 Feb 2009 20:40:56 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Hide-PHP-extension-with-htaccess</comments>
					<content:encoded><![CDATA[<p>Hi, this time i'm going to teach you how to rewrite an URL using the .htaccess file.

Using this technique you will be able to &quot;hide&quot; every physical file extension such as product.php to be shown as product.html in the address bar of the browser but the actual file name remains product.php and you don&rsquo;t need to rename the file extension. Furthermore you can rewrite th</p>]]></content:encoded>
					<description><![CDATA[<p>Hi, this time i'm going to teach you how to rewrite an URL using the .htaccess file.

Using this technique you will be able to &quot;hide&quot; every physical file extension such as product.php to be shown as product.html in the address bar of the browser but the actual file name remains product.php and you don&rsquo;t need to rename the file extension. Furthermore you can rewrite th</p>]]></description>
				</item>
				<item>
			    	<title>Learn Jquery from scratch (day 1)</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Learn-Jquery-from-scratch--day-1-]]></link>
					<pubDate>30 Jan 2009 13:13:18 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Learn-Jquery-from-scratch--day-1-</comments>
					<content:encoded><![CDATA[<p>Javascript potential and its enhacement by web 2.0 revolution has made lot of js frameworks appear to allow us create the same scripts in a more easy and intuitive way.

Among all available frameworks, Jquery is my choice, for its simple syntax and as their slogan says &quot;Write less, do more&quot;.

But you'll want to know why you have to choose among all the other f</p>]]></content:encoded>
					<description><![CDATA[<p>Javascript potential and its enhacement by web 2.0 revolution has made lot of js frameworks appear to allow us create the same scripts in a more easy and intuitive way.

Among all available frameworks, Jquery is my choice, for its simple syntax and as their slogan says &quot;Write less, do more&quot;.

But you'll want to know why you have to choose among all the other f</p>]]></description>
				</item>
				<item>
			    	<title>Paging with ASP.net</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Paging-with-ASPnet]]></link>
					<pubDate>15 Jan 2009 23:33:00 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Paging-with-ASPnet</comments>
					<content:encoded><![CDATA[<p>Many of the problems at the time of paginating results come at the moment when we mix our HTML design with the code to show the results. Default pagers, barely works for us, or if they do, not meet the things we want to do. So, I bring you an example of pagination that is easily adaptable to almost any idea that we have in mind.

First of all, let's start with the HTML code and the A</p>]]></content:encoded>
					<description><![CDATA[<p>Many of the problems at the time of paginating results come at the moment when we mix our HTML design with the code to show the results. Default pagers, barely works for us, or if they do, not meet the things we want to do. So, I bring you an example of pagination that is easily adaptable to almost any idea that we have in mind.

First of all, let's start with the HTML code and the A</p>]]></description>
				</item>
				<item>
			    	<title>15 Blogs that a web developer must read</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/15-Blogs-that-a-web-developer-must-read]]></link>
					<pubDate>15 Jan 2009 13:14:38 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/15-Blogs-that-a-web-developer-must-read</comments>
					<content:encoded><![CDATA[<p>In our job change its change its the only constant (and this could change too), and because of this keep us informed es an advantage.&nbsp; 

Here you have a list of the best blogs to add them to your google reader.

Javascript frameworks and ajax world
</p>]]></content:encoded>
					<description><![CDATA[<p>In our job change its change its the only constant (and this could change too), and because of this keep us informed es an advantage.&nbsp; 

Here you have a list of the best blogs to add them to your google reader.

Javascript frameworks and ajax world
</p>]]></description>
				</item>
				<item>
			    	<title>Using Curl to Post Data</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Using-Curl-to-Post-Data]]></link>
					<pubDate>2 Jan 2009 04:11:55 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Using-Curl-to-Post-Data</comments>
					<content:encoded><![CDATA[<p>Curl its a php library that alow us to comunicate between servers using diferent protocols such us http, https, ftp, gopher, telnet, dict, file and Idap.
It's very useful, for example we can create a web crawler or even upload files using FTP.
Something interesting that we can do with this library, is to simulate a user surf in a site.

In this case, we are going to use</p>]]></content:encoded>
					<description><![CDATA[<p>Curl its a php library that alow us to comunicate between servers using diferent protocols such us http, https, ftp, gopher, telnet, dict, file and Idap.
It's very useful, for example we can create a web crawler or even upload files using FTP.
Something interesting that we can do with this library, is to simulate a user surf in a site.

In this case, we are going to use</p>]]></description>
				</item>
				<item>
			    	<title>Speed up your javascript libs with google technology</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Speed-up-your-javascript-libs-with-google-technology]]></link>
					<pubDate>26 Nov 2008 04:52:36 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Speed-up-your-javascript-libs-with-google-technology</comments>
					<content:encoded><![CDATA[<p>Always thinking about user experience,our development load speed its very important.

Maybe a way in wich web 2.0 had impacted in our applications are the better integrated elements needed. This has raised the amount of javascript libraries we have to embed in our sites.
Google always thinking about the user, has decided a few months ago colaborate with us, and they provide us</p>]]></content:encoded>
					<description><![CDATA[<p>Always thinking about user experience,our development load speed its very important.

Maybe a way in wich web 2.0 had impacted in our applications are the better integrated elements needed. This has raised the amount of javascript libraries we have to embed in our sites.
Google always thinking about the user, has decided a few months ago colaborate with us, and they provide us</p>]]></description>
				</item>
				<item>
			    	<title>The war of smartphones (Apple vs Lg vs Samsung)</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/The-war-of-smartphones--Apple-vs-Lg-vs-Samsung-]]></link>
					<pubDate>11 Oct 2008 22:09:24 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/The-war-of-smartphones--Apple-vs-Lg-vs-Samsung-</comments>
					<content:encoded><![CDATA[<p>The war of smartphones
The Iphone from Apple, start the war of the movil phones. 
See in this video the comparatives bettween APPLE, LG, SAMSUNG


</p>]]></content:encoded>
					<description><![CDATA[<p>The war of smartphones
The Iphone from Apple, start the war of the movil phones. 
See in this video the comparatives bettween APPLE, LG, SAMSUNG


</p>]]></description>
				</item>
				<item>
			    	<title>Nokia 5800 XpressMusic</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Nokia-5800-XpressMusic]]></link>
					<pubDate>3 Oct 2008 02:27:09 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Nokia-5800-XpressMusic</comments>
					<content:encoded><![CDATA[<p>&nbsp;
While it may not be Nokia's first touchscreen phone (anyone out there remember the 7710?), the </p>]]></content:encoded>
					<description><![CDATA[<p>&nbsp;
While it may not be Nokia's first touchscreen phone (anyone out there remember the 7710?), the </p>]]></description>
				</item>
				<item>
			    	<title>Search engine visibility (Part I)</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Search-engine-visibility--Part-I-]]></link>
					<pubDate>29 Sep 2008 04:31:09 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Search-engine-visibility--Part-I-</comments>
					<content:encoded><![CDATA[<p>In the last weekend, I began read a book about SEO called &quot;Search Engine Visibility&quot; writed by Shari Thurow. I will try to transcript in this post some ideas from the first chapters which I found very interesting.

To get the best overall, long-term search engine visibility, three components must be present on a web page:

    </p>]]></content:encoded>
					<description><![CDATA[<p>In the last weekend, I began read a book about SEO called &quot;Search Engine Visibility&quot; writed by Shari Thurow. I will try to transcript in this post some ideas from the first chapters which I found very interesting.

To get the best overall, long-term search engine visibility, three components must be present on a web page:

    </p>]]></description>
				</item>
				<item>
			    	<title>Design Patterns for PHP</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Design-Patterns-for-PHP]]></link>
					<pubDate>19 Sep 2008 02:04:19 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Design-Patterns-for-PHP</comments>
					<content:encoded><![CDATA[<p>The design patterns are software solutions that have been developed and refined over time. Therefore, this is not the designs that people tend to generate when it initially starts to develop an application or a project, but reflect the entire redesign and recoding that developers have done as they struggled to achieve greater reuse and flexibility in their software.
Reuse and flexibility ar</p>]]></content:encoded>
					<description><![CDATA[<p>The design patterns are software solutions that have been developed and refined over time. Therefore, this is not the designs that people tend to generate when it initially starts to develop an application or a project, but reflect the entire redesign and recoding that developers have done as they struggled to achieve greater reuse and flexibility in their software.
Reuse and flexibility ar</p>]]></description>
				</item>
				<item>
			    	<title>Installing Samba in Ubuntu</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Installing-Samba-in-Ubuntu]]></link>
					<pubDate>18 Sep 2008 18:08:43 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Installing-Samba-in-Ubuntu</comments>
					<content:encoded><![CDATA[<p>Samba is an open source implementation of the shared file protocol created by Microsoft. It allow us to share files and printers from a Linux PC&nbsp;to a Windows PC.

Let's get down to business: installation and configuration.

1&ordm;) Open a console and type the next:

user:localhost~$ sudo apt-get install samba smbfs

2&ordm;) We proceed </p>]]></content:encoded>
					<description><![CDATA[<p>Samba is an open source implementation of the shared file protocol created by Microsoft. It allow us to share files and printers from a Linux PC&nbsp;to a Windows PC.

Let's get down to business: installation and configuration.

1&ordm;) Open a console and type the next:

user:localhost~$ sudo apt-get install samba smbfs

2&ordm;) We proceed </p>]]></description>
				</item>
				<item>
			    	<title>Hackers infiltrate Large Hadron Collider systems</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Hackers-infiltrate-Large-Hadron-Collider-systems]]></link>
					<pubDate>12 Sep 2008 21:14:07 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Hackers-infiltrate-Large-Hadron-Collider-systems</comments>
					<content:encoded><![CDATA[<p>Hackers have mounted an attack on the Large Hadron Collider, raising concerns about the security of the biggest experiment in the world.

As the first particles were circulating in the machine near Geneva where the world wide web was born, a Greek group hacked into the facility, posting a warning about wea</p>]]></content:encoded>
					<description><![CDATA[<p>Hackers have mounted an attack on the Large Hadron Collider, raising concerns about the security of the biggest experiment in the world.

As the first particles were circulating in the machine near Geneva where the world wide web was born, a Greek group hacked into the facility, posting a warning about wea</p>]]></description>
				</item>
				<item>
			    	<title>Cuil is saying goodbye</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Cuil-is-saying-goodbye]]></link>
					<pubDate>12 Sep 2008 20:56:52 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Cuil-is-saying-goodbye</comments>
					<content:encoded><![CDATA[<p>Google's shadow Cuil, is slowly dying.

In the few short weeks of its existence, the highly-promoted new search engine Cuil has dropped to almost zero usage share. The share drop comes amidst massive criticism of Cuil's search results, where reports of unrelated results to what was being searched were common.

See it before it disappear in </p>]]></content:encoded>
					<description><![CDATA[<p>Google's shadow Cuil, is slowly dying.

In the few short weeks of its existence, the highly-promoted new search engine Cuil has dropped to almost zero usage share. The share drop comes amidst massive criticism of Cuil's search results, where reports of unrelated results to what was being searched were common.

See it before it disappear in </p>]]></description>
				</item>
				<item>
			    	<title>Google cuts data retention time in half</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/Google-cuts-data-retention-time-in-half]]></link>
					<pubDate>9 Sep 2008 22:12:47 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/Google-cuts-data-retention-time-in-half</comments>
					<content:encoded><![CDATA[<p>
Under pressure from European regulators, Google is halving the amount of time its stores Internet Protocol addresses.
In a blog post, Google said it would keep IP addresses on its server logs for 9 months before anonymizing them, down from the 18 months it had previousl</p>]]></content:encoded>
					<description><![CDATA[<p>
Under pressure from European regulators, Google is halving the amount of time its stores Internet Protocol addresses.
In a blog post, Google said it would keep IP addresses on its server logs for 9 months before anonymizing them, down from the 18 months it had previousl</p>]]></description>
				</item>
				<item>
			    	<title>First steps with ASP.net MVC</title>
					<link><![CDATA[http://www.arzion.com/internet-business/posts/First-steps-with-ASPnet-MVC]]></link>
					<pubDate>26 Aug 2008 03:39:53 GMT</pubDate>
					<comments>http://www.arzion.com/internet-business/posts/First-steps-with-ASPnet-MVC</comments>
					<content:encoded><![CDATA[<p>MVC is a framework that divides the implementation of an application in three roles: models, views and controllers.

&nbsp;&nbsp;&nbsp; &bull; The &quot;models&quot; of an application based on MVC are the components responsible for maintaining the state. Suppose in this case, a database.
&nbsp;&nbsp;&nbsp;&bull; The &quot;views&quot; are the components responsible for displayi</p>]]></content:encoded>
					<description><![CDATA[<p>MVC is a framework that divides the implementation of an application in three roles: models, views and controllers.

&nbsp;&nbsp;&nbsp; &bull; The &quot;models&quot; of an application based on MVC are the components responsible for maintaining the state. Suppose in this case, a database.
&nbsp;&nbsp;&nbsp;&bull; The &quot;views&quot; are the components responsible for displayi</p>]]></description>
				</item>
				
		</channel>
	
</rss> 