<?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>jusupov.com &#187; internet</title>
	<atom:link href="http://www.jusupov.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jusupov.com</link>
	<description>Computer Technology Blog</description>
	<lastBuildDate>Thu, 06 May 2010 16:04:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install Darwin Streaming Server 6.0.3 on Ubuntu 8.04.2 Hardy</title>
		<link>http://www.jusupov.com/2009/06/13/how-to-install-darwin-streaming-server-on-ubuntu-hardy/</link>
		<comments>http://www.jusupov.com/2009/06/13/how-to-install-darwin-streaming-server-on-ubuntu-hardy/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 18:08:59 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Apple DSS]]></category>
		<category><![CDATA[Darwin Streaming Server]]></category>
		<category><![CDATA[DSS]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=340</guid>
		<description><![CDATA[I couldn&#8217;t find any good tutorial on how to install Darwing Streaming Server on Ubuntu Hardy.
So let&#8217;s get started with a fresh install of 8.04.2 with all the updates.

sudo apt-get update &#38;&#38; sudo apt-get upgrade
sudo apt-get install build-essential
sudo addgroup &#8211;system qtss
sudo adduser &#8211;system &#8211;no-create-home &#8211;ingroup qtss qtss
cd /usr/local/src/
Download the latest version at http://github.com/lstoll/dss/tree/master
tar -xvf lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9.tar
cd [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find any good tutorial on how to install Darwing Streaming Server on Ubuntu Hardy.</p>
<p>So let&#8217;s get started with a fresh install of 8.04.2 with all the updates.</p>
<ol>
<li>sudo apt-get update &amp;&amp; sudo apt-get upgrade</li>
<li>sudo apt-get install build-essential</li>
<li>sudo addgroup &#8211;system qtss<br />
sudo adduser &#8211;system &#8211;no-create-home &#8211;ingroup qtss qtss</li>
<li>cd /usr/local/src/</li>
<li>Download the latest version at http://github.com/lstoll/dss/tree/master</li>
<li>tar -xvf lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9.tar</li>
<li>cd lstoll-dss-984a1365251f36ebf3f60f0d0175fa895a30b9a9/</li>
<li>./Buildit install</li>
<li>cd DarwinStreamingSrvr6.0.3-Linux</li>
<li>./Install</li>
<li>If you see Setup Complete! message, you are good to go. Logon to http://servername:1220/ using your browser. Username and password is the ones you entered at step 10.</li>
</ol>
<p>Ok, now you have Darwin Streaming Server installed on your Ubuntu Hardy box.</p>
<p>Here&#8217;s a sample init file for DSS:</p>
<pre class="brush: plain">
#!/bin/sh
#
# chkconfig: 35 92 12
# description: Quicktime Streaming Media Server
#
# Slight tweak of file create by Larry Underhill 05/20/02
#
# init script to start up the quicktime (Darwin) streaming server
# tested on Redhat 7.2, Fedora Core 4 and CentOS-4.3

# source function library
#. /etc/rc.d/init.d/functions

case &amp;quot;$1&amp;quot; in
start)
if test -r /var/lock/dssd
then
echo &amp;quot;Lockfile /var/lock/dssd exists. Server not started.&amp;quot;
failure
else
echo &amp;quot;Starting Darwin Streaming Server: &amp;quot;
/usr/local/sbin/DarwinStreamingServer &amp;amp;amp;&amp;amp;amp; touch /var/lock/dssd
echo &amp;quot;Starting DSS Admin Console: &amp;quot;
/usr/local/sbin/streamingadminserver.pl
echo &amp;quot;DSS and DSS Admin Console started...&amp;quot;
fi
;;

stop)
echo &amp;quot;Stopping Darwin Streaming Server: &amp;quot;
[ -f /var/lock/dssd ] || exit 0
echo &amp;quot;stopping...&amp;quot;
killall DarwinStreamingServer &amp;amp;amp;&amp;amp;amp; killall streamingadminserver.pl
#ps ax | awk &#039;{print $1&amp;quot; &amp;quot; $5}&#039; | awk &#039;/DarwinStreamingServer/ {print $1}&#039; | xargs -r kill -9 &amp;amp;amp;&amp;amp;amp; success || failure
#echo &amp;quot;Stopping DSS Admin Console: &amp;quot;
#ps ax | awk &#039;/streamingadminserver.pl/ {print $1}&#039; | xargs -r kill -9  &amp;amp;amp;&amp;amp;amp; success || failure
rm -f /var/lock/dssd
echo
;;

restart)
$0 stop
sleep 1
$0 start
;;

*)
echo &amp;quot;Usage: $0 [start|stop|restart]&amp;quot;
exit 1
esac
exit 0
</pre>
<p>Save this file in /etc/init.d/dss</p>
<p>Make it executable chmod +x /etc/init.d/dss and make it auto start when booting:</p>
<p>update-rc.d dss defaults<br />
Adding system startup for /etc/init.d/dss &#8230;<br />
/etc/rc0.d/K20dss -&gt; ../init.d/dss<br />
/etc/rc1.d/K20dss -&gt; ../init.d/dss<br />
/etc/rc6.d/K20dss -&gt; ../init.d/dss<br />
/etc/rc2.d/S20dss -&gt; ../init.d/dss<br />
/etc/rc3.d/S20dss -&gt; ../init.d/dss<br />
/etc/rc4.d/S20dss -&gt; ../init.d/dss<br />
/etc/rc5.d/S20dss -&gt; ../init.d/dss</p>
<p>Now that we have already installed DSS on Ubuntu Hardy box, next thing is how to broadcast mp3 and video through it. Well, that&#8217;s a next post coming up. <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Enjoy!</p>
<div id="attachment_343" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-343" title="DSS Admin Console" src="http://www.jusupov.com/wp-content/uploads/2009/06/picture-1-300x197.png" alt="DSS Admin Console" width="300" height="197" /><p class="wp-caption-text">DSS Admin Console</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/06/13/how-to-install-darwin-streaming-server-on-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Hosting &#8211; a top alternative</title>
		<link>http://www.jusupov.com/2009/04/06/linux-hosting-a-top-alternative/</link>
		<comments>http://www.jusupov.com/2009/04/06/linux-hosting-a-top-alternative/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:34:02 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=299</guid>
		<description><![CDATA[Anyone looking to buy web hosting that is of top quality and offered at a reasonable fee will most likely have come across the option of Linux hosting. It is one of the most common cheap hosting plans today; only costing a couple of dollars each month. The Linux software and development itself is open [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone looking to buy web hosting that is of top quality and offered at a reasonable fee will most likely have come across the option of Linux hosting. It is one of the most common cheap hosting plans today; only costing a couple of dollars each month. The Linux software and development itself is open source and hence free. Many like to compare Linux hosting with Windows hosting so let us take a further look at if there is any difference and which one to choose.</p>
<p>These two types of hosting are quite similar in many ways but there are still a few differences that could be worth mentioning. Firstly though, one mistake that many seem to do is focusing too much on the operating system rather than picking web host because of its services and features. We have already mentioned that Linux hosting comes very cheap (so does Windows hosting) and all the features that almost always are included makes the hosting plan even more impressive. Take a look at the Linux hosting plans offered by the largest hosting providers on the market – we are sure that you will like what you see.</p>
<p>Ok, <a title="linux hosting" href="http://www.webhostingsearch.com/linux-web-hosting.php" target="_blank">Linux hosting</a> and Windows hosting are quite similar in many ways but is it possible to say that one is better than the other? Historically has Linux been regarded as the stronger alternative among webmasters and it still seems as if it is their top alternative. One reason for this could be that Linux hosting has narrowed its ease-of-use gap and functionality.  Windows hosting is of course not a bad alternative and it can boost with full allowance for use of ASP and ASP.Net. You are probably better off with Windows if you feel more comfortable with ASP when creating websites. If you are not particularly fond of ASP we would like to recommend you picking Linux hosting.</p>
<p>If we look into web servers in Linux we have Apache, lighttpd, nginx and many other open source servers. They are 100% open source and free. For big websites you can have complicated setup like clustering and failover.</p>
<p>In Windows hosting we have IIS. Mostly it is used to host .NET (old same ASP). Unlike in Linux, in IIS you are more or less stuck with .NET and there&#8217;s not much chance to scale.</p>
<p>Most of the successful websites run free and open source servers and applications. Good examples will be Google, Facebook, Flickr, Twitter, Yahoo and such.</p>
<p>So if you are <a title="Web Hosting Search" href="http://www.webhostingsearch.com/" target="_blank">buy web hosting</a> consider linux hosting as an alternative. If you don&#8217;t have any particular reason for going windows hosting go for linux hosting!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2009/04/06/linux-hosting-a-top-alternative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Active Endpoints, Business Process Management Software</title>
		<link>http://www.jusupov.com/2008/12/24/active-endpoints-business-process-management-software/</link>
		<comments>http://www.jusupov.com/2008/12/24/active-endpoints-business-process-management-software/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 22:40:45 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Sponsored Reviews]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/?p=275</guid>
		<description><![CDATA[Active Endpoints is a provider of cost-effectively and flexibly use all of the web services infrastructure that has been installed in companies over the last few years to create composite applications.
Active Endpoints is the world&#8217;s first all-in-one, standards-based visual orchestration system.
Active is the only SOA-based process orchestration and business process management (BPM) system that allows [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Business Process Management " href="http://www.activevos.com" target="_self">Active Endpoints</a> is a provider of cost-effectively and flexibly use all of the web services infrastructure that has been installed in companies over the last few years to create composite applications.</p>
<p>Active Endpoints is the world&#8217;s first all-in-one, standards-based visual orchestration system.</p>
<p>Active is the only <a title="SOA Software " href="http://www.activevos.com/soa-service-oriented-architecture.php" target="_self">SOA-based process orchestration</a> and business process management (BPM) system that allows enterprises and developers to:</p>
<ol>
<li>Automate business processes</li>
<li>Collaborate across IT and business boundaries</li>
<li>Control the overall state of the business</li>
<li> Adapt rapidly and easily to change</li>
</ol>
<p>Ok, so what&#8217;s SOA? What&#8217;s BPEL? What is Business Process Management?</p>
<p>SOA &#8211; Service Oriented Architecture provides enterprises a design framework to deploy new application in a more faster and economic way. You can say that SOA is a bunch of different business services that can communicate with each other.</p>
<p>Web Services Business Process Execution Language(BPEL) &#8211; Web service interactions can be described in two ways. Executable business processes model actual behavior of a participant in a business interaction. Abstract business processes are partially specified processes that are not intended to be executed. An Abstract Process may hide some of the required concrete operational details. Abstract Processes serve a descriptive role, with more than one possible use case, including observable behavior and process template. WS-BPEL is meant to be used to model the behavior of both Executable and Abstract Processes. ( <a href="http://en.wikipedia.org/wiki/Business_Process_Execution_Language" target="_self">taken from Wikipedia</a> )</p>
<p>Business Process Management, well in short it&#8217;s a process where organizations satisfy their clients by studying and enhancing their products or services.</p>
<p>Now Active Endpoints let&#8217;s you do all these three things. There&#8217;s a free trial, you can download it at <a href="http://www.activevos.com/download-trial.php" target="_self">http://www.activevos.com/download-trial.php</a> by filling out some forms.</p>
<p>If you opt to purchase the software, they give you two options:</p>
<ol>
<li>You buy the software for Development Environment. ActiveVOS is $5,000 per CPU socket.</li>
<li>You buy the software for Deployment Environment. ActiveVOS is $12,000 per CPU socket when the Deployment licenses are ordered with a first-time purchase of Development licenses. Subsequent ActiveVOS deployment purchases are $25,000 per CPU socket.</li>
</ol>
<p>Support is given at annual fee of 20% of total license fees. If you need training,  a  5-day skills transfer program geared specifically to your project     teams needs. Includes 5 days on site for $10,000 plus travel and expenses.</p>
<p>You can follow them via their online blog at <a title="ActiveVos Blog " href="http://www.vosibilities.com/" target="_self">http://www.vosibilities.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/12/24/active-endpoints-business-process-management-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free public DNS servers to use</title>
		<link>http://www.jusupov.com/2008/05/13/free-public-dns-servers-to-use/</link>
		<comments>http://www.jusupov.com/2008/05/13/free-public-dns-servers-to-use/#comments</comments>
		<pubDate>Tue, 13 May 2008 15:01:25 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/05/13/free-public-dns-servers-to-use/</guid>
		<description><![CDATA[If you happened to be using TMNet(Malaysia&#8217;s leading(?!) ISP) DNS servers you probably know how much do they suck. Well here&#8217;s a small tip from me for those in need: a small list of publicly available DNS servers to make a switch.
1. OpenDNS &#8211; http://www.opendns.org &#8211; pretty much solid dns servers, highly recommended by many [...]]]></description>
			<content:encoded><![CDATA[<p>If you happened to be using TMNet(Malaysia&#8217;s leading(?!) ISP) DNS servers you probably know how much do they suck. Well here&#8217;s a small tip from me for those in need: a small list of publicly available DNS servers to make a switch.</p>
<p>1. OpenDNS &#8211; http://www.opendns.org &#8211; pretty much solid dns servers, highly recommended by many people.</p>
<p>2. ScrubIt &#8211; http://scrubit.com &#8211; Haven&#8217;t used myself, found in the net.</p>
<p>3. gtei.net &#8211; nosite &#8211; One of the advantages of these servers &#8211;> IP numbers easy to remember!<br />
a) 4.2.2.1<br />
b) 4.2.2.2<br />
c) 4.2.2.3<br />
d) 4.2.2.4<br />
e) 4.2.2.5<br />
f) 4.2.2.6</p>
<p>Cool, ah? <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Others you can get at http://www.dnsserverlist.org/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/05/13/free-public-dns-servers-to-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress theme layout structures</title>
		<link>http://www.jusupov.com/2008/01/10/wordpress-theme-layout-structures/</link>
		<comments>http://www.jusupov.com/2008/01/10/wordpress-theme-layout-structures/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 14:06:08 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/10/wordpress-theme-layout-structures/</guid>
		<description><![CDATA[In our first part on how to create WordPress(WP) theme we&#8217;ve covered basic installation of WP and also got to know where are the theme files located.
Before we proceed any further let&#8217;s take a look into different WP layouts.
This one will be most common layout used among bloggers. It&#8217;s very basic layout, designing and customizing [...]]]></description>
			<content:encoded><![CDATA[<p>In our first part on how to create WordPress(WP) theme we&#8217;ve covered basic installation of WP and also got to know where are the theme files located.</p>
<p>Before we proceed any further let&#8217;s take a look into different WP layouts.</p>
<p>This one will be most common layout used among bloggers. It&#8217;s very basic layout, designing and customizing this kind of theme is much easier than the most.</p>
<p>This is what we call two column WP layout. Because you have two columns &#8211; Main and Sidebar.<img src="http://www.jusupov.com/wp-content/uploads/2008/01/two-column.gif" alt="WordPress two column layout" align="left" /><br />
It has a header, where we usually put our logo, blog name and tag lines. Also it&#8217;s a common practice to put navigation bar there as well.</p>
<p>Then a sidebar, its where we have blog categories, blogroll, may be some ads and things like that.</p>
<p>The main part is where we have our blog posts shown, it will contain posts with details like date published, author and if there are comments to the posts.</p>
<p>Lastly we have footer, usually people want to put some Copyright/Copyleft, site credits.</p>
<p><img src="http://www.jusupov.com/wp-content/uploads/2008/01/three-column.gif" alt="WordPress three column layout" align="left" /><img src="http://www.jusupov.com/wp-content/uploads/2008/01/three-column-2.gif" alt="WordPress three column layout" align="left" />Also we have another popular layout with three columns.  This one can be in two variations, it differs from each other on the sidebars positions.</p>
<p>In the first layout, we can see that sidebars are kept at both sides, so that the main part(the part where you have your blog posts) is kept in the center.</p>
<p>And the second layout is where we like to have our sidebars on the right or the left side of the blog.</p>
<p>So these are more or less standard WP theme layouts you will see in the blogosphere. These types of layouts are common ones but of course there are other types.</p>
<p>So, I have covered basic WP layout types. My next blog post will be about WP theme files and their functions.</p>
<p>Please make sure you have the following:</p>
<ol>
<li>Working WordPress blog installed. It can be on your workstation(local webserver) or hosted in the internet.</li>
<li>Basic HTML and CSS knowledge.</li>
<li>Your favorite text editor. You can use Macromedia Dreamweaver or any kind of IDE tool at that point. As long as you are comfortable and can manipulate text.</li>
<li>Graphical FTP client or knowledge of command line FTP.</li>
<li>Covered my previous posts <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>If you have any other tips or suggestions please drop your comments, I really appreciate your feedback!</p>
<blockquote><p><strong>Reminder</strong>: This post is a 2nd post in a <a href="http://www.jusupov.com/2008/01/09/how-to-create-wordpress-theme-part-1/">How to create WordPress Theme series</a>. If you want to get updated make sure you subscribe to my RSS feed at <a href="http://www.jusupov.com/feed/" title="RSS">http://www.jusupov.com/feed/</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/10/wordpress-theme-layout-structures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to create WordPress theme &#8211; Part 1</title>
		<link>http://www.jusupov.com/2008/01/09/how-to-create-wordpress-theme-part-1/</link>
		<comments>http://www.jusupov.com/2008/01/09/how-to-create-wordpress-theme-part-1/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 16:34:49 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/09/how-to-create-wordpress-theme-part-1/</guid>
		<description><![CDATA[I&#8217;ve decided to create and publish my own custom WordPress theme. I haven&#8217;t come up with the name or anything but all I can say is that it&#8217;s going to be free.
At the same time I will be taking notes, step by step and publish a series of posts on designing your own custom WordPress(WP) [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to create and publish my own custom <a href="http://www.wordpress.org" title="WordPress" target="_blank">WordPress</a> theme. I haven&#8217;t come up with the name or anything but all I can say is that it&#8217;s going to be free.</p>
<p>At the same time I will be taking notes, step by step and publish a series of posts on designing your own custom WordPress(WP) theme.</p>
<p>Enough said, let&#8217;s get right to it.</p>
<p>Folks at WP did a fairly awesome job at simplifying installation process. However, let&#8217;s take a brief look into installing WP.</p>
<ol>
<li>First you need to download the latest version of WP, another good point from developers that they always keep the latest version available to download at http://www.wordpress.org/latest.zipUnlike many other open source softwares/scripts where you need to go through versions pick mirrors etc, WP is made simple to download.</li>
<li>Unzipping latest.zip(it can also get wordpress-version-number.zip name), you find folder <em>wordpress </em>created. Inside this folder you will find <em>wp-config-sample.php</em>, rename this to wp-config.php file name.</li>
<li>Edit this wp-config.php file. Enter your MySQL details here.</li>
<li>Now upload everything that is under <em>wordpress</em> directory to your web server. Make sure you upload into a directory that is accessible from outside, it is something like htdocs, public_html or www directories.</li>
<li>Fire up your favorite browser and point it to your domain where you uploaded the files.</li>
<li>Once you will see WP setup screen, it will ask you to enter the blog title and admin E-Mail address. Once you have done so, it will generate you random admin password. In case you forget to change the random password, WP will email password details to the E-Mail address you provided during the installation.</li>
</ol>
<p><img src="http://www.jusupov.com/wp-content/uploads/2008/01/2008-01-09_002746.png" alt="2008-01-09_002746.png" align="left" />Now that we know how to setup WP , let&#8217;s take a look into WP themes locations. Themes are located in  <em>wp-content/themes</em> directory and they are under named folders. To edit or modify WP themes, you look into those folders.</p>
<p>You can see from the left image the basic WP theme structure.</p>
<p>So, in this post we learned how to install WP, and we know where to look and what too look for in WP themes.</p>
<blockquote><p> This is the first part in a WordPress theme series. Please <a href="http://www.jusupov.com/feed/" title="Arstan's Technology Blog RSS" target="_blank">subscribe to my RSS feed</a> to get updated.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/09/how-to-create-wordpress-theme-part-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Thank you RapidVPS!</title>
		<link>http://www.jusupov.com/2008/01/02/thank-you-rapidvps/</link>
		<comments>http://www.jusupov.com/2008/01/02/thank-you-rapidvps/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 16:01:18 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2008/01/02/thank-you-rapidvps/</guid>
		<description><![CDATA[This is a review of RapidVPS - a company that provides virtual private servers for an affordable price. They provide VPS in three packages: RapidOne($9.95), RapidTwo($29.95) and RapidThree($49.95).
I have used RapidOne package for like 8 months now, 5GB space, 100GB bandwidth, 2 IPs, 128RAM(burstable) and CPU of 100Mhz out of 8Ghz(also burstable I suppose). When [...]]]></description>
			<content:encoded><![CDATA[<p>This is a review of <a href="http://www.rapidvps.com" title="RapidVPS" target="_blank">RapidVPS </a>- a company that provides virtual private servers for an affordable price. They provide VPS in three packages: RapidOne($9.95), RapidTwo($29.95) and RapidThree($49.95).</p>
<p>I have used RapidOne package for like 8 months now, 5GB space, 100GB bandwidth, 2 IPs, 128RAM(burstable) and CPU of 100Mhz out of 8Ghz(also burstable I suppose). When I was looking for a VPS, main criteria was that it has to be cheap.</p>
<p>Looking through the forums and blogs I found RapidVPS, I tested it for a month, played around with it, installed different kinds of distros and what not&#8230; After a month of testing I moved my blog and other domains. The move was done quite ok, by that time I was already using EveryDNS outsourced DNS services. This means there will be little or close to no down time at all.</p>
<p>I have to admit that I don&#8217;t usually have funds in my paypal account, when I don&#8217;t have funds I email RapidVPS explaining the situation and they have no problem at all giving me some time to get funds in. So this is quite good.</p>
<p>Also I liked Rick, I think he is the main guy over there. He put his efforts and personal touch into RapidVPS which is really awesome!</p>
<p>Ok, so what exactly is nice about RapidVPS?</p>
<ol>
<li>It&#8217;s cheap! With $9.95 you can get an OK VPS to start off with.</li>
<li>You get an awesome useful control panel. You can reboot, shut down, reinstall OS(multiple choices), view your invoices and bills and other cool stuff.</li>
<li>If you prove yourself serious and continuous in their VPS services you can negotiate late payments.</li>
<li>Great affiliate program! Introduce your friend to RapidVPS and get a free month for yourself!</li>
<li>Great support via E-Mail/Wiki/Forum. I&#8217;m not so sure about phone support.</li>
<li>As with any VPS, you can customize your applications to meet your exact needs.</li>
<li>Wide range of Linux distro choices.</li>
<li>Good uptime, they never go under 99,5%. Which is quite OK.</li>
</ol>
<p>I&#8217;m sure you can add more to it when you find yourself hosted with RapidVPS.</p>
<p>So after over 8 months good journey with RapidVPS I am moving on to a dedicated server. I have already moved my blog and most of other critical websites. If you are looking for a quality/price combination VPS &#8211; then look no more, RapidVPS is for you.<br />
Thank you RapidVPS and thank you Rick!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2008/01/02/thank-you-rapidvps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shout out for beginning bloggers</title>
		<link>http://www.jusupov.com/2007/12/21/shout-out-for-beginning-bloggers/</link>
		<comments>http://www.jusupov.com/2007/12/21/shout-out-for-beginning-bloggers/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 01:57:40 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/12/21/shout-out-for-beginning-bloggers/</guid>
		<description><![CDATA[If you are starting or thinking of starting a blog or have a blog at one of the free platform, take a look at Ades Free Domain with Free Hosting contest going on. Together with Ades, we belive that if you want to be successful one of the key points is to have your own [...]]]></description>
			<content:encoded><![CDATA[<p>If you are starting or thinking of starting a blog or have a blog at one of the free platform, take a look at <a href="http://www.adesblog.com/2007/12/19/free-domain-name-free-hosting-contest-week-1/" target="_blank">Ades Free Domain with Free Hosting</a> contest going on. Together with Ades, we belive that if you want to be successful one of the key points is to have your own branded domain and your hosting.</p>
<p>But most starting bloggers think that they should try to make money online with free platforms such as Wordpress.com or Blogger and if they are successful they eventually move to a seperate domain. Ades has blogged of the <a href="http://www.adesblog.com/2007/12/14/common-mistakes-of-a-new-blogger/" target="_blank">common mistakes of a new blogger</a> and I must say that I totally agree.</p>
<p>So, if you are a starting a blog, moving from free blogging platforms leave your name and your email address and you will be counted in the contest.</p>
<p>The prize is domain name of your choice( Sponsored by <a href="http://adesblog.com/about/">Ades</a> ) for two years and a free webhosting ( sponsored by <a href="http://www.jusupov.com/about/" target="_blank">me</a> ) for two years as well.</p>
<p><a href="http://www.adesblog.com/2007/12/19/free-domain-name-free-hosting-contest-week-1/">Contest link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/12/21/shout-out-for-beginning-bloggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help Gmail to improve SPAM filtering</title>
		<link>http://www.jusupov.com/2007/12/18/help-gmail-to-improve-spam-filtering/</link>
		<comments>http://www.jusupov.com/2007/12/18/help-gmail-to-improve-spam-filtering/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 12:29:14 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/12/18/help-gmail-to-improve-spam-filtering/</guid>
		<description><![CDATA[I found out there is a new feature in Google&#8217;s Gmail service, you can now report the SPAM emails to the Gmail anti-SPAM team.
Here&#8217;s the screenshot of it:

This means that Google is to improve their already good anti SPAM filtering. Thats good news for all of us! Let&#8217;s celebrate New Year with less viagra and [...]]]></description>
			<content:encoded><![CDATA[<p>I found out there is a new feature in <a href="http://www.gmail.com" target="_blank">Google&#8217;s Gmail</a> service, you can now report the SPAM emails to the Gmail anti-SPAM team.</p>
<p>Here&#8217;s the screenshot of it:</p>
<p><img src="http://www.jusupov.com/wp-content/uploads/2007/12/2007-12-18_142837.png" alt="2007-12-18_142837.png" /></p>
<p>This means that Google is to improve their already good anti SPAM filtering. Thats good news for all of us! Let&#8217;s celebrate New Year with less viagra and free porn sites <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/12/18/help-gmail-to-improve-spam-filtering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoDaddy promo codes</title>
		<link>http://www.jusupov.com/2007/12/18/godaddy-promo-codes/</link>
		<comments>http://www.jusupov.com/2007/12/18/godaddy-promo-codes/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 09:04:31 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/12/18/godaddy-promo-codes/</guid>
		<description><![CDATA[I am posting this as a personal memo, so that I don&#8217;t have to google it everytime. Please enjoy variety of discount codes. I would appreciate if you could drop a line with the outcome of your coupon, did it work?

OYH3 &#8211; $3 off / $6.95 any .COM (renewals too&#8230; just used it)
YH1 &#8211; 10% [...]]]></description>
			<content:encoded><![CDATA[<p>I am posting this as a personal memo, so that I don&#8217;t have to google it everytime. Please enjoy variety of discount codes. I would appreciate if you could drop a line with the outcome of your coupon, did it work?</p>
<ul>
<li>OYH3 &#8211; $3 off / $6.95 any .COM (renewals too&#8230; just used it)</li>
<li>YH1 &#8211; 10% off whatever</li>
<li>BTPS7 &#8211; 20% any order of $50 or more</li>
<li>BTPS20 &#8211; 25% any order of $100 or more (expires Dec 21st)</li>
<li>BTPS4 &#8211; 10% off anything</li>
<li>OYH2 &#8211; $5 off a $30 purchase</li>
<li>chill1 &#8211; 10% off</li>
<li>chill2 &#8211; $5 off $30</li>
<li>chill3 &#8211; $6.95 .coms</li>
<li>hash1 &#8211; 10% off</li>
<li>hash2 &#8211; $5 off $30</li>
<li>hash3 &#8211; $6.95 .com registration</li>
<li>gdd1101c &#8211; 10% off any order of $40 or more</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/12/18/godaddy-promo-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telekom Malaysia blocks outgoing port 25</title>
		<link>http://www.jusupov.com/2007/12/04/telekom-malaysia-blocks-outgoing-port-25/</link>
		<comments>http://www.jusupov.com/2007/12/04/telekom-malaysia-blocks-outgoing-port-25/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 04:46:06 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/12/04/telekom-malaysia-blocks-outgoing-port-25/</guid>
		<description><![CDATA[Telekom Malaysia (TM) is blocking out port 25 on all dynamic IPs(residential IPs) effective from 3rd December 2007.
Well, this means:

TM has issues with spammers. Be it zombie machines with trojans, viruses and spywares.
All the local businesses that run internal E-Mail servers will have to find other ways.

It&#8217;s not a big deal actually, but again if [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tm.net.my" target="_blank">Telekom Malaysia</a> (TM) is blocking out port 25 on all dynamic IPs(residential IPs) effective from 3rd December 2007.</p>
<p>Well, this means:</p>
<ol>
<li>TM has issues with spammers. Be it zombie machines with trojans, viruses and spywares.</li>
<li>All the local businesses that run internal E-Mail servers will have to find other ways.</li>
</ol>
<p>It&#8217;s not a big deal actually, but again if you are doing this kind of things that means something out of your control is happening and you have to block it. Otherwise I believe it&#8217;s a very widely used port.</p>
<p>The TM&#8217;s corporate users, the one who has fixed IPs do not have to worry, since this does not effect them.</p>
<p>For the home/soho users I will be writing a nice how-to on this matter in a few days time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/12/04/telekom-malaysia-blocks-outgoing-port-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Of hubs, switches and network security</title>
		<link>http://www.jusupov.com/2007/11/27/of-hubs-switches-and-network-security/</link>
		<comments>http://www.jusupov.com/2007/11/27/of-hubs-switches-and-network-security/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 09:29:45 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/11/27/of-hubs-switches-and-network-security/</guid>
		<description><![CDATA[ At the Network layer, hosts are identified by IP addresses. At the Data Link layer, however, hosts are identified by MAC addresses. All packets (in ethernet) are delivered by MAC address (ARP and RARP convert between IP and MAC addresses).
To conserve bandwidth, switches direct traffic to a specific port based on the target MAC [...]]]></description>
			<content:encoded><![CDATA[<p><span class="postbody"> At the Network layer, hosts are identified by IP addresses. At the Data Link layer, however, hosts are identified by MAC addresses. All packets (in ethernet) are delivered by MAC address (ARP and RARP convert between IP and MAC addresses).</span></p>
<p>To conserve bandwidth, switches direct traffic to a specific port based on the target MAC address (as opposed to hubs which simply broadcast all packets to all ports). This allows multiple peer-to-peer conversations to occur at the same time as each conversation only requires two ports (whereas in a hub each conversation occupies all ports!) Hence, bandwidth management; not security <img src="http://ettercap.sourceforge.net/forum/images/smiles/icon_wink.gif" border="0" /> .</p>
<p>For a switch to know which port connects to which MAC addresses, the switch creates and manages a CAM table (a simple mapping between port and MAC address(es)). If no Port Security, this table is dynamic and changes over time (to allow for hosts to appear, disappear and move between ports). The switch learns the CAM table mappings by monitoring the source and destination MAC addresses in packets that it directs.</p>
<p>Now look at the Port Stealing slide. Send layer 2 packets with &#8220;source address equal to victim host address&#8221; and &#8220;destination address equal to its own mac address&#8221;. Taking these in reverse order, the switch will direct the packet to the port mapped to the destination address, the attackers &#8220;own mac address&#8221;; i.e. the packet will return to the attackers host (so no other hosts will notice the packet). At the same time, the switch will record the source address of the packet against the port it came from in the CAM table; i.e. the victim host (MAC) address against the attacker&#8217;s port. If you looked in the CAM table, you&#8217;d now find the attackers port mapped to both the attackers MAC address and also the victim&#8217;s MAC address.</p>
<p>The switch will now direct the next packet targeted at the victim&#8217;s MAC address to the attackers port (based on the CAM table entry) &#8211; the port is &#8217;stolen&#8217;.</p>
<p>To relay the packet to the correct port (so that the conversations can continue uniterrupted), the attacker needs to get the CAM table back to the original state, i.e. with the victim&#8217;s port mapped to the victim&#8217;s MAC address. This is achieved by issuing a broadcast ARP request for the victim&#8217;s IP address. Broadcast means the request will go to all ports (including the victim). When the victim responds, the switch will record the new CAM table mapping (back to where it was originally). The captured packet can now be resent by the attacker and correctly directed by the switch to the victim&#8217;s port.</p>
<p>Now (and this is the scary bit) to get and relay the _next_ packet, the attacker needs to repeat the entire process. It looks like a lot of work and is why I raised queries about whether or not packets would be dropped. NaGA says &#8216;not necessarily&#8217; which is fair enough.</p>
<p>URL: <a href="http://oss.mmu.edu.my/videos/undp-adpip/codebreakers-208x160.wmv" target="_blank">http://ettercap.sourceforge.net/forum/viewtopic.php?t=2329 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/11/27/of-hubs-switches-and-network-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://oss.mmu.edu.my/videos/undp-adpip/codebreakers-208x160.wmv" length="63584306" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>My Firefox Extensions</title>
		<link>http://www.jusupov.com/2007/11/21/my-firefox-extensions/</link>
		<comments>http://www.jusupov.com/2007/11/21/my-firefox-extensions/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 07:15:15 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/11/21/my-firefox-extensions/</guid>
		<description><![CDATA[Do you use Mozilla Firefox? Or its variants?
Here&#8217;s my firefox plugins, they help me a lot and save lots of time. What are your plugins? Please leave in the comments.

]]></description>
			<content:encoded><![CDATA[<p>Do you use Mozilla Firefox? Or its variants?</p>
<p>Here&#8217;s my firefox plugins, they help me a lot and save lots of time. What are your plugins? Please leave in the comments.</p>
<p><a href="http://www.jusupov.com/wp-content/uploads/2007/11/firefox_extensions.png" title="firefox_extensions_th.png"><img src="http://www.jusupov.com/wp-content/uploads/2007/11/firefox_extensions_th.png" alt="firefox_extensions_th.png" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/11/21/my-firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New IMAP feature on Gmail</title>
		<link>http://www.jusupov.com/2007/10/25/new-imap-feature-on-gmail/</link>
		<comments>http://www.jusupov.com/2007/10/25/new-imap-feature-on-gmail/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 01:46:58 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/10/25/new-imap-feature-on-gmail/</guid>
		<description><![CDATA[I&#8217;ve blogged before that Google&#8217;s Gmail uses POP3 for its users to download E-Mails from the servers. While it was POP3 it kinda acted as IMAP, except the fact that it didn&#8217;t allow  you to have folders, remember popular tagging in Gmail?
Well, the news is Gmail is to provide IMAP protocol for its users(Google [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve <a href="http://www.jusupov.com/2007/04/22/easy-gmail-support-in-thunderbird-2/" target="_blank">blogged</a> before that <a href="http://www.gmail.com" target="_blank">Google&#8217;s Gmail</a> uses POP3 for its users to download E-Mails from the servers. While it was POP3 it kinda acted as IMAP, except the fact that it didn&#8217;t allow  you to have folders, remember popular tagging in Gmail?</p>
<p>Well, the news is Gmail is to provide IMAP protocol for its users(<a href="http://www.google.com/a" target="_blank">Google Apps for your domain too</a>). It&#8217;s a great feature to have for those people who are not comfortable using Gmail&#8217;s popular webmail interface or any webmail, preferring those to E-Mail clients like Outlook or Mozilla Thunderbird. Also it&#8217;s also creating a way for gadgets and phones like iPhone, BlackBerry or any kind of PDAs out there.</p>
<p>So go ahead and configure your E-Mail client, PDA or phone to synchronize with your Gmail account.</p>
<p>For those who doesn&#8217;t know what does IMAP mean <a href="http://en.wikipedia.org/wiki/IMAP" target="_blank">read it here</a>.</p>
<blockquote>
<h3> How do I enable IMAP?</h3>
<p>You can retrieve your Gmail messages with a client or device that supports IMAP, like Microsoft Outlook or Apple Mail.</p>
<p>To enable IMAP in your Gmail account:</p>
<ol>
<li> Log in to your Gmail account.</li>
<li> Click <strong>Settings</strong> at the top of any Gmail page.</li>
<li> Click <strong>Forwarding and POP/IMAP</strong>.</li>
<li> Select <strong>Enable IMAP</strong>.</li>
<li><a href="http://mail.google.com/support/bin/answer.py?answer=75726">Configure your IMAP client</a>* and click <strong>Save Changes</strong>.</li>
</ol>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/10/25/new-imap-feature-on-gmail/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Thanks to readers</title>
		<link>http://www.jusupov.com/2007/10/23/thanks-to-readers/</link>
		<comments>http://www.jusupov.com/2007/10/23/thanks-to-readers/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 17:27:17 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/10/23/thanks-to-readers/</guid>
		<description><![CDATA[I&#8217;ve been busy with my work and my family life lately. I apologize for lack of posts. I will resume more postings in near future! Meanwhile, I would like to thank my readers who come to check if I have anything new to share   so I pick the last 5 readers from MyBlog [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been busy with my work and my family life lately. I apologize for lack of posts. I will resume more postings in near future! Meanwhile, I would like to thank my readers who come to check if I have anything new to share <img src='http://www.jusupov.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  so I pick the last 5 readers from MyBlog widget. Here they are:</p>
<p>1. Ades &#8211; Abdylas from <a href="http://www.adesblog.com" target="_blank">AdesBlog</a>. A close friend of mine, always there to help and support me. His blog covers tips for bloggers, making money online, web2.0, SEO, web things and stuff like that. Did I mention that his blog  is one of the very few bloggers who have PR7?</p>
<p>2.  Satans &#8211; I don&#8217;t speak Chinese, so I&#8217;m not sure who he is and what is his blog about. But thanks anyway for visiting me! Visit his chinese blog one and two.</p>
<p>3.  88michael &#8211; Michael is the author of three blogs <a href="http://techcentreme.blogspot.com/" target="_blank">http://techcentreme.blogspot.com/</a> , <a href="http://techhelpvideos.wordpress.com/" target="_blank">http://techhelpvideos.wordpress.com/</a> and <a href="http://mmomethods.blogspot.com/" target="_blank">http://mmomethods.blogspot.com</a> on Technology. His blogs cover security, video editing and stuff, also make money online. Thanks!</p>
<p>4. Christopher from <a href="http://www.techchee.com" target="_blank">http://www.techchee.com</a> is ablog where he has got some good advices for those who want to get high tech gadgets.</p>
<p>5. Calvyn from <a href="http://www.icalvyn.com" target="_blank">iCalvyn </a>is an IT Officer in hotel industries. His personal blog covers his experience in IT as well as making money online.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/10/23/thanks-to-readers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Whois information for domain microsoft.com</title>
		<link>http://www.jusupov.com/2007/08/13/whois-information-for-domain-microsoftcom/</link>
		<comments>http://www.jusupov.com/2007/08/13/whois-information-for-domain-microsoftcom/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 07:43:04 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[M$]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/08/13/whois-information-for-domain-microsoftcom/</guid>
		<description><![CDATA[Last week I made transfer from  ABOUT DOMAIN DOT COM SOLUTIONS PVT. LTD. to Godaddy. Today I wanted to check if the transfer is complete. Doing a simple whois query I found out it still pending transfer.
I made some other queries, microsoft.com was one of them. I was surprised to see the outcome. Check out [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I made transfer from  ABOUT DOMAIN DOT COM SOLUTIONS PVT. LTD. to Godaddy. Today I wanted to check if the transfer is complete. Doing a simple whois query I found out it still pending transfer.</p>
<p>I made some other queries, microsoft.com was one of them. I was surprised to see the outcome. Check out the whois information for Microsoft domain!</p>
<p>arstan@blacky:~$ whois microsoft.com</p>
<p>Whois Server Version 2.0</p>
<p>Domain names in the .com and .net domains can now be registered<br />
with many different competing registrars. Go to http://www.internic.net<br />
for detailed information.<span id="more-197"></span></p>
<p>Server Name: MICROSOFT.COM.ZZZZZZ.MORE.DETAILS.AT.WWW.BEYONDWHOIS.COM<br />
IP Address: 203.36.226.2<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.ZZZZZ.GET.LAID.AT.WWW.SWINGINGCOMMUNITY.COM<br />
IP Address: 69.41.185.194<br />
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM<br />
Whois Server: whois.itsyourdomain.com<br />
Referral URL: http://www.itsyourdomain.com</p>
<p>Server Name: MICROSOFT.COM.ZZZOMBIED.AND.HACKED.BY.WWW.WEB-HACK.COM<br />
IP Address: 217.107.217.167<br />
Registrar: ONLINENIC, INC.<br />
Whois Server: whois.35.com<br />
Referral URL: http://www.OnlineNIC.com</p>
<p>Server Name: MICROSOFT.COM.ZZZ.IS.0WNED.AND.HAX0RED.BY.SUB7.NET<br />
IP Address: 207.44.240.96<br />
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM<br />
Whois Server: whois.itsyourdomain.com<br />
Referral URL: http://www.itsyourdomain.com</p>
<p>Server Name: MICROSOFT.COM.WILL.LIVE.FOREVER.BECOUSE.UNIXSUCKS.COM<br />
IP Address: 185.3.4.7<br />
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE<br />
Whois Server: whois.melbourneit.com<br />
Referral URL: http://www.melbourneit.com</p>
<p>Server Name: MICROSOFT.COM.WILL.BE.SLAPPED.IN.THE.FACE.BY.MY.BLUE.VEINED.SPANNER.NET<br />
IP Address: 216.127.80.46<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.WILL.BE.BEATEN.WITH.MY.SPANNER.NET<br />
IP Address: 216.127.80.46<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.WAREZ.AT.TOPLIST.GULLI.COM<br />
IP Address: 80.190.192.33<br />
Registrar: KEY-SYSTEMS GMBH<br />
Whois Server: whois.rrpproxy.net<br />
Referral URL: http://www.key-systems.net</p>
<p>Server Name: MICROSOFT.COM.TOTALLY.SUCKS.S3U.NET<br />
IP Address: 207.208.13.22<br />
Registrar: ENOM, INC.<br />
Whois Server: whois.enom.com<br />
Referral URL: http://www.enom.com</p>
<p>Server Name: MICROSOFT.COM.SMELLS.SIMPLECODES.COM<br />
IP Address: 207.44.234.34<br />
Registrar: GODADDY.COM, INC.<br />
Whois Server: whois.godaddy.com<br />
Referral URL: http://registrar.godaddy.com</p>
<p>Server Name: MICROSOFT.COM.SHOULD.GIVE.UP.BECAUSE.LINUXISGOD.COM<br />
IP Address: 65.160.248.13<br />
Registrar: GKG.NET, INC.<br />
Whois Server: whois.gkg.net<br />
Referral URL: http://www.gkg.net</p>
<p>Server Name: MICROSOFT.COM.RAWKZ.MUH.WERLD.MENTALFLOSS.CA<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.OHMYGODITBURNS.COM<br />
IP Address: 216.158.63.6<br />
Registrar: DOTSTER, INC.<br />
Whois Server: whois.dotster.com<br />
Referral URL: http://www.dotster.com</p>
<p>Server Name: MICROSOFT.COM.MORE.INFO.AT.WWW.BEYONDWHOIS.COM<br />
IP Address: 203.36.226.2<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.LOVES.ME.KOSMAL.NET<br />
IP Address: 65.75.198.123<br />
Registrar: GODADDY.COM, INC.<br />
Whois Server: whois.godaddy.com<br />
Referral URL: http://registrar.godaddy.com</p>
<p>Server Name: MICROSOFT.COM.LIVES.AT.SHAUNEWING.COM<br />
IP Address: 216.40.250.172<br />
Registrar: ENOM, INC.<br />
Whois Server: whois.enom.com<br />
Referral URL: http://www.enom.com</p>
<p>Server Name: MICROSOFT.COM.IS.NOT.YEPPA.ORG<br />
Registrar: OVH<br />
Whois Server: whois.ovh.com<br />
Referral URL: http://www.ovh.com</p>
<p>Server Name: MICROSOFT.COM.IS.NOT.HOSTED.BY.ACTIVEDOMAINDNS.NET<br />
IP Address: 217.148.161.5<br />
Registrar: ENOM, INC.<br />
Whois Server: whois.enom.com<br />
Referral URL: http://www.enom.com</p>
<p>Server Name: MICROSOFT.COM.IS.NOT.AS.COOL.AS.SIMPLECODES.COM<br />
IP Address: 207.44.234.232<br />
Registrar: GODADDY.COM, INC.<br />
Whois Server: whois.godaddy.com<br />
Referral URL: http://registrar.godaddy.com</p>
<p>Server Name: MICROSOFT.COM.IS.IN.BED.WITH.CURTYV.COM<br />
IP Address: 216.55.187.193<br />
Registrar: ABACUS AMERICA, INC. DBA NAMES4EVER<br />
Whois Server: whois.names4ever.com<br />
Referral URL: http://www.names4ever.com</p>
<p>Server Name: MICROSOFT.COM.IS.HOSTED.ON.PROFITHOSTING.NET<br />
IP Address: 66.49.213.213<br />
Registrar: COMPUTER SERVICES LANGENBACH GMBH DBA JOKER.COM<br />
Whois Server: whois.joker.com<br />
Referral URL: http://www.joker.com</p>
<p>Server Name: MICROSOFT.COM.IS.GOD.BECOUSE.UNIXSUCKS.COM<br />
IP Address: 161.16.56.24<br />
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE<br />
Whois Server: whois.melbourneit.com<br />
Referral URL: http://www.melbourneit.com</p>
<p>Server Name: MICROSOFT.COM.IS.A.SUBSITE.OF.SWEETCOUPLE.NET<br />
IP Address: 208.109.8.2<br />
Registrar: GODADDY.COM, INC.<br />
Whois Server: whois.godaddy.com<br />
Referral URL: http://registrar.godaddy.com</p>
<p>Server Name: MICROSOFT.COM.IS.A.STEAMING.HEAP.OF.FUCKING-BULLSHIT.NET<br />
IP Address: 63.99.165.11<br />
Registrar: THE NAME IT CORPORATION DBA NAMESERVICES.NET<br />
Whois Server: whois.aitdomains.com<br />
Referral URL: http://www.aitdomains.com</p>
<p>Server Name: MICROSOFT.COM.IS.A.MESS.TIMPORTER.CO.UK<br />
Registrar: MELBOURNE IT, LTD. D/B/A INTERNET NAMES WORLDWIDE<br />
Whois Server: whois.melbourneit.com<br />
Referral URL: http://www.melbourneit.com</p>
<p>Server Name: MICROSOFT.COM.HAS.ITS.OWN.CRACKLAB.COM<br />
IP Address: 209.26.95.44<br />
Registrar: DOTSTER, INC.<br />
Whois Server: whois.dotster.com<br />
Referral URL: http://www.dotster.com</p>
<p>Server Name: MICROSOFT.COM.HAS.A.PRESENT.COMING.FROM.HUGHESMISSILES.COM<br />
IP Address: 66.154.11.27<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.FILLS.ME.WITH.BELLIGERENCE.NET<br />
IP Address: 130.58.82.232<br />
Registrar: CRONON AG BERLIN, NIEDERLASSUNG REGENSBURG<br />
Whois Server: whois.tmagnic.net<br />
Referral URL: http://nsi-robo.tmag.de</p>
<p>Server Name: MICROSOFT.COM.DRINKS.LISTERINE.NET<br />
IP Address: 66.33.206.206<br />
Registrar: SPOT DOMAIN LLC DBA DOMAINSITE.COM<br />
Whois Server: whois.domainsite.com<br />
Referral URL: http://www.domainsite.com</p>
<p>Server Name: MICROSOFT.COM.CAN.GO.FUCK.ITSELF.AT.SECZY.COM<br />
IP Address: 209.187.114.147<br />
Registrar: INNERWISE, INC. D/B/A ITSYOURDOMAIN.COM<br />
Whois Server: whois.itsyourdomain.com<br />
Referral URL: http://www.itsyourdomain.com</p>
<p>Server Name: MICROSOFT.COM.ARE.GODDAMN.PIGFUCKERS.NET.NS-NOT-IN-SERVICE.COM<br />
IP Address: 216.127.80.46<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net</p>
<p>Server Name: MICROSOFT.COM.AND.MINDSUCK.BOTH.SUCK.HUGE.ONES.AT.EXEGETE.NET<br />
IP Address: 63.241.136.53<br />
Registrar: DOTSTER, INC.<br />
Whois Server: whois.dotster.com<br />
Referral URL: http://www.dotster.com</p>
<p>Domain Name: MICROSOFT.COM<br />
Registrar: TUCOWS INC.<br />
Whois Server: whois.tucows.com<br />
Referral URL: http://domainhelp.opensrs.net<br />
Name Server: NS1.MSFT.NET<br />
Name Server: NS2.MSFT.NET<br />
Name Server: NS3.MSFT.NET<br />
Name Server: NS4.MSFT.NET<br />
Name Server: NS5.MSFT.NET<br />
Status: clientDeleteProhibited<br />
Status: clientTransferProhibited<br />
Status: clientUpdateProhibited<br />
Updated Date: 10-oct-2006<br />
Creation Date: 02-may-1991<br />
Expiration Date: 03-may-2014</p>
<p>&gt;&gt;&gt; Last update of whois database: Mon, 13 Aug 2007 07:38:28 UTC &lt;&lt;&lt;</p>
<p>NOTICE: The expiration date displayed in this record is the date the<br />
registrar&#8217;s sponsorship of the domain name registration in the registry is<br />
currently set to expire. This date does not necessarily reflect the expiration<br />
date of the domain name registrant&#8217;s agreement with the sponsoring<br />
registrar.  Users may consult the sponsoring registrar&#8217;s Whois database to<br />
view the registrar&#8217;s reported date of expiration for this registration.</p>
<p>TERMS OF USE: You are not authorized to access or query our Whois<br />
database through the use of electronic processes that are high-volume and<br />
automated except as reasonably necessary to register domain names or<br />
modify existing registrations; the Data in VeriSign Global Registry<br />
Services&#8217; (&#8220;VeriSign&#8221;) Whois database is provided by VeriSign for<br />
information purposes only, and to assist persons in obtaining information<br />
about or related to a domain name registration record. VeriSign does not<br />
guarantee its accuracy. By submitting a Whois query, you agree to abide<br />
by the following terms of use: You agree that you may use this Data only<br />
for lawful purposes and that under no circumstances will you use this Data<br />
to: (1) allow, enable, or otherwise support the transmission of mass<br />
unsolicited, commercial advertising or solicitations via e-mail, telephone,<br />
or facsimile; or (2) enable high volume, automated, electronic processes<br />
that apply to VeriSign (or its computer systems). The compilation,<br />
repackaging, dissemination or other use of this Data is expressly<br />
prohibited without the prior written consent of VeriSign. You agree not to<br />
use electronic processes that are automated and high-volume to access or<br />
query the Whois database except as reasonably necessary to register<br />
domain names or modify existing registrations. VeriSign reserves the right<br />
to restrict your access to the Whois database in its sole discretion to ensure<br />
operational stability.  VeriSign may restrict or terminate your access to the<br />
Whois database for failure to abide by these terms of use. VeriSign<br />
reserves the right to modify these terms at any time.</p>
<p>The Registry database contains ONLY .COM, .NET, .EDU domains and<br />
Registrars.<br />
Registrant:<br />
Microsoft Corporation<br />
One Microsoft Way<br />
Redmond, WA 98052<br />
US</p>
<p>Domain name: MICROSOFT.COM</p>
<p>Administrative Contact:<br />
Administrator, Domain  domains@microsoft.com<br />
One Microsoft Way<br />
Redmond, WA 98052<br />
US<br />
+1.4258828080<br />
Technical Contact:<br />
Hostmaster, MSN  msnhst@microsoft.com<br />
One Microsoft Way<br />
Redmond, WA 98052<br />
US<br />
+1.4258828080</p>
<p>Registration Service Provider:<br />
DBMS VeriSign, dbms-support@verisign.com<br />
800-579-2848 x4<br />
Please contact DBMS VeriSign for domain updates, DNS/Nameserver<br />
changes, and general domain support questions.</p>
<p>Registrar of Record: TUCOWS, INC.<br />
Record last updated on 01-Feb-2007.<br />
Record expires on 03-May-2014.<br />
Record created on 02-May-1991.</p>
<p>Domain servers in listed order:<br />
NS1.MSFT.NET<br />
NS2.MSFT.NET<br />
NS3.MSFT.NET<br />
NS4.MSFT.NET<br />
NS5.MSFT.NET</p>
<p>Domain status: clientDeleteProhibited<br />
clientTransferProhibited<br />
clientUpdateProhibited</p>
<p>The Data in the Tucows Registrar WHOIS database is provided to you by Tucows<br />
for information purposes only, and may be used to assist you in obtaining<br />
information about or related to a domain name&#8217;s registration record.</p>
<p>Tucows makes this information available &#8220;as is,&#8221; and does not guarantee its<br />
accuracy.</p>
<p>By submitting a WHOIS query, you agree that you will use this data only for<br />
lawful purposes and that, under no circumstances will you use this data to:<br />
a) allow, enable, or otherwise support the transmission by e-mail,<br />
telephone, or facsimile of mass, unsolicited, commercial advertising or<br />
solicitations to entities other than the data recipient&#8217;s own existing<br />
customers; or (b) enable high volume, automated, electronic processes that<br />
send queries or data to the systems of any Registry Operator or<br />
ICANN-Accredited registrar, except as reasonably necessary to register<br />
domain names or modify existing registrations.</p>
<p>The compilation, repackaging, dissemination or other use of this Data is<br />
expressly prohibited without the prior written consent of Tucows.</p>
<p>Tucows reserves the right to terminate your access to the Tucows WHOIS<br />
database in its sole discretion, including without limitation, for excessive<br />
querying of the WHOIS database or for failure to otherwise abide by this<br />
policy.</p>
<p>Tucows reserves the right to modify these terms at any time.</p>
<p>By submitting this query, you agree to abide by these terms.</p>
<p>NOTE: THE WHOIS DATABASE IS A CONTACT DATABASE ONLY.  LACK OF A DOMAIN<br />
RECORD DOES NOT SIGNIFY DOMAIN AVAILABILITY.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/08/13/whois-information-for-domain-microsoftcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you read blogs via RSS?</title>
		<link>http://www.jusupov.com/2007/07/28/do-you-read-blogs-via-rss/</link>
		<comments>http://www.jusupov.com/2007/07/28/do-you-read-blogs-via-rss/#comments</comments>
		<pubDate>Sat, 28 Jul 2007 04:03:00 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/07/28/do-you-read-blogs-via-rss/</guid>
		<description><![CDATA[Personally I tried using RSS readers and follow up with the news and blogs via RSS. For me, I couldn&#8217;t keep up with RSS subscription, some of the reasons include what Mani from Blogging Tips has blogged.
Here&#8217;s the list of RSS readers I tried using:

Google Reader
Liferea
SharpReader
Opera
Thunderbird

If you are reading blog via RSS, you lose the [...]]]></description>
			<content:encoded><![CDATA[<p>Personally I tried using RSS readers and follow up with the news and blogs via RSS. For me, I couldn&#8217;t keep up with RSS subscription, some of the reasons include what Mani from <a href="http://www.bloggingtips.com" title="Blogging Tips" target="_blank">Blogging Tips</a> has blogged.</p>
<p>Here&#8217;s the list of RSS readers I tried using:</p>
<ul>
<li>Google Reader</li>
<li>Liferea</li>
<li>SharpReader</li>
<li>Opera</li>
<li>Thunderbird</li>
</ul>
<p>If you are reading blog via RSS, you lose the personal touch/feeling that the author has put into his blog. I believe blog is popular because of this personality unlike news portals. So when you are reading blog posts via RSS you kinda miss that thing.</p>
<p>Although, I agree that follow up with 50 or more blogs on a daily basis is a tough thing, I think partially RSS readers would help a lot. But again, if you are reading blog posts from RSS &#8211; get out of the standard RSS layout and further more go online and leave comments on the posts!</p>
<p><strong>Update:</strong><br />
My appologies to <strong>Kevin</strong> and <strong>Mani</strong> from <strong>Blogging Tips</strong>, I had no bad intention.</p>
<p>Personally, Blogging Tips is one of my top reading blog. I respect Kevin and other authors&#8217; contributions and I do learn a lot from them. Thank you for keeping up a great blog!</p>
<p>And I am really sorry for my unacceptable mistake. I will try to be more careful next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/07/28/do-you-read-blogs-via-rss/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Are my posts better than Microsofts</title>
		<link>http://www.jusupov.com/2007/07/26/are-my-posts-better-than-microsofts/</link>
		<comments>http://www.jusupov.com/2007/07/26/are-my-posts-better-than-microsofts/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 10:16:38 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/07/26/are-my-posts-are-better-then-microsofts/</guid>
		<description><![CDATA[I&#8217;m a happy user of 103bees so far, it has some advantages and disadvantages but that&#8217;s a topic for a separate post.
Using 103bees I found out that some of my posts are ranked pretty awesome by Google. For example if you search for how to setup an office infrastructure my blog will be the first [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a happy user of <a href="http://www.jusupov.com/2007/04/25/replacement-for-google-analytics-103bees/" target="_blank">103bees</a> so far, it has some advantages and disadvantages but that&#8217;s a topic for a separate post.</p>
<p>Using 103bees I found out that some of my posts are ranked pretty awesome by <a href="http://www.google.com" title="Google.com" target="_blank">Google</a>. For example if you search for <a href="http://www.google.com.my/search?q=how+to+setup+an+office+infrastructure&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" title="How to setup an office infrastructure" target="_blank">how to setup an office infrastructure</a> my blog will be the first that shows up. Second search result is from <a href="http://www.microsoft.com/technet/solutionaccelerators/branch/boisv1/BOIS-5SolutionBuildGuide_2.mspx" target="_blank">Microsoft website</a>.</p>
<p>I must admit that <a href="http://www.wordpress.org" title="Wordpress" target="_blank">Wordpress</a> rocks! Way to go!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/07/26/are-my-posts-better-than-microsofts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merchant account for a website and stores</title>
		<link>http://www.jusupov.com/2007/07/17/merchant-account-for-a-website-and-stores/</link>
		<comments>http://www.jusupov.com/2007/07/17/merchant-account-for-a-website-and-stores/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 03:03:26 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/07/17/merchant-account-for-a-website-and-stores/</guid>
		<description><![CDATA[I&#8217;ve been looking for a merchant account to accept credit cards online. I have found this http://www.cardservicesales.com
First Data Independent Sales, Inc. offers not only online merchant account but also services for the following business types:

E-Commerce
Restaurant
Retail
Wireless

The application is very easy, you can apply it online. If you have questions and doubts you can browse through their [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been looking for a merchant account to accept credit cards online. I have found this <a href="http://www.cardservicesales.com" title="merchant account" target="_blank">http://www.cardservicesales.com</a></p>
<p>First Data Independent Sales, Inc. offers not only online merchant account but also services for the following business types:</p>
<ul>
<li>E-Commerce</li>
<li>Restaurant</li>
<li>Retail</li>
<li>Wireless</li>
</ul>
<p>The application is very easy, you can apply it online. If you have questions and doubts you can browse through their website or ultimately call their number (866) 889-5909.<span id="more-180"></span></p>
<p>They also have other free services as setting up your shopping card, gateway software, reprogramming, shipping and 24/7 support. I believe supporting merchant accounts is very crucial, you are selling software/service/product and everything goes ok and at the end you can&#8217;t charge the customer&#8217;s credit card. This is the last thing you would want to face. So again support is important.</p>
<p>What caught my attention is the wireless merchant account, this is very flexible! Imagine you can promote your products and services touring the country and you don&#8217;t have to worry setting up POS terminals, phone lines etc etc&#8230;</p>
<p>The bad news is, online pre application is for US based businesses only. At least that&#8217;s what it says on their website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/07/17/merchant-account-for-a-website-and-stores/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How I solved modem freeze and got better Internet connection</title>
		<link>http://www.jusupov.com/2007/07/09/how-i-solved-modem-freeze-and-got-better-internet-connection/</link>
		<comments>http://www.jusupov.com/2007/07/09/how-i-solved-modem-freeze-and-got-better-internet-connection/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 09:30:03 +0000</pubDate>
		<dc:creator>Arstan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://www.jusupov.com/2007/07/09/how-i-solved-modem-freeze-and-got-better-internet-connection/</guid>
		<description><![CDATA[Here&#8217;s the traffic graph taken from my place. From the screenshots you can see that Tuesday has slightly less traffic then the other days of the week.
As for the month, the period around week 27 has the most traffic.
May has the highest peak in the year graph.
We have got around 60 staff, half of it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/arstan_jusupov/sets/72157600727876868/" title="Internet as in graphs" target="_blank"><img src="http://www.jusupov.com/wp-content/uploads/2007/07/thubnail.jpg" alt="Internet Graph" align="left" border="0" /></a>Here&#8217;s the traffic graph taken from my place. From the screenshots you can see that Tuesday has slightly less traffic then the other days of the week.</p>
<p>As for the month, the period around week 27 has the most traffic.</p>
<p>May has the highest peak in the year graph.</p>
<p>We have got around 60 staff, half of it have laptops and travelling and/or on the client site. They do VPN a lot, connect to our internal webmail, submit bugs to our bugzilla and do other stuff while they are away from the office.<span id="more-171"></span></p>
<p>The other half has desktop workstations and surf a lot.</p>
<p>Previously, I used to have problems with Aztec ADSL modems. After a day or so it would just freeze and I had to go take out the power cable by hand and connect back. This was irritating since some of the staff would come early and find no internet connection in the office. The problem was solved by buying Linksys ADSL modem and setting up <a href="http://www.endian.it" title="Endian Firewall" target="_blank">Endian Firewall</a> to dial PPPoE to my ISP.</p>
<p>After some time, I enabled squid proxy that comes in a box with the firewall. It helped me a lot from preventing duplicate downloads from the Internet and thus saving my bandwidth.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jusupov.com/2007/07/09/how-i-solved-modem-freeze-and-got-better-internet-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
