<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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>Calamari Corner</title>
	<link>http://calamaricorner.com</link>
	<description>...where the food's delicious (when I don't cook it), sh*t happens and you still have to clean the crap!</description>
	<pubDate>Thu, 20 Dec 2007 14:22:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>How-to: Getting Pass Your Company/School&#8217;s Firewall</title>
		<link>http://calamaricorner.com/article/how-to-getting-pass-your-companyschools-firewall/</link>
		<comments>http://calamaricorner.com/article/how-to-getting-pass-your-companyschools-firewall/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 06:13:42 +0000</pubDate>
		<dc:creator>Hagen</dc:creator>
		
		<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://calamaricorner.com/article/how-to-getting-pass-your-companyschools-firewall/</guid>
		<description><![CDATA[All work but no play will definitely make John a dull boy. Sometimes you are just tired of work and want to let off some steam by surfing the lighter side of the internet. However, you might not be able to do that in your company or school.
Depending on the system administrator, your access to [...]]]></description>
			<content:encoded><![CDATA[<p>All work but no play will definitely make John a dull boy. Sometimes you are just tired of work and want to let off some steam by surfing the lighter side of the internet. However, you might not be able to do that in your company or school.</p>
<p>Depending on the system administrator, your access to your internet may only allow you to access work-related only sites. Today, we&#8217;ll discuss a technique that will bypass such restrictions and let you browse with an ease of mind.</p>
<p>It&#8217;s called Secure Shell (SSH) or Tunnelling.  This method replicates a direct tunnel route from your home pc to your work/school pc. The technique itself is securely encrypted, so no one, except you knows what kind of activity is been done within. You can use it to browse your private emails, surf the internet, and/or sFTP.</p>
<p><strong>First, we need some programs for the setup.</strong></p>
<ol>
<li><a href="http://www.freesshd.com/" title="FreeSSHd - Freeware Secure Shell (SSH) Software" target="_blank" onclick="javascript:urchinTracker('/outbound/article/http://www.freesshd.com/');"><strong>FreeSSHd</strong></a> -  Allows you to make a secure remote connection to a windows PC and setup SSH tunnels, allowing other services to connect to your PC securely.</li>
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" title="Freeware SSH Client for Windows" onclick="javascript:urchinTracker('/outbound/article/http://www.chiark.greenend.org.uk/~sgtatham/putty/');"><strong>PuTTY</strong></a> - Putty is a Free SSH client for windows. We need this to connect to the SSH server on the remote PC. It will also allow us to transfer files between the two PC&#8217;s.</li>
</ol>
<p><strong>Installing the SSH Server</strong></p>
<p>You will need to install and configure the FreeSSHd in your home computer so that you are able to tunnel your way from work/school. Download the program at their <a href="http://www.freesshd.com/" title="FreeSSHd - Freeware Secure Shell (SSH) Software" onclick="javascript:urchinTracker('/outbound/article/http://www.freesshd.com/');">official website</a> and install it. When it asked for you if you want to run the program as a windows service, click yes.</p>
<p>Once installed, bring up the configuration screen and start setting up the server.</p>
<ol>
<li>Click on the SSH tab and enter the port number. You can set it to any port you like, but most standard institution will have port 443 open. This port is for encrypted data transfer such as SSL. So this will give you some cover. Try not to set it for port 22, where most http transfers takes place.
<p><a href="http://calamaricorner.com/wp-content/uploads/2007/12/freesshd-setting01.jpg" title="FreeSSHd - SSH Port Settings" ><img src="http://calamaricorner.com/wp-content/uploads/2007/12/freesshd-setting01.jpg" alt="FreeSSHd - SSH Port Settings" border="0" /></a></li>
<li>Next, creating the user for you to login with. Click on the Users tab and &#8220;add&#8221; a user. Enter the desired username and password. I suggest using the <em>&#8220;Password Stored as SHA1 Hash&#8221;</em> option for your password.
<p><a href="http://calamaricorner.com/wp-content/uploads/2007/12/freesshd-setting02.jpg" title="FreeSSHd - SSH User Settings" ><img src="http://calamaricorner.com/wp-content/uploads/2007/12/freesshd-setting02.jpg" alt="FreeSSHd - SSH User Settings" border="0" /></a></li>
<li>Lastly, enable the tunnel access. Click on the Tunneling tab and check the boxes as followed:<br />
<a href="http://calamaricorner.com/wp-content/uploads/2007/12/freesshd-setting03.jpg" title="FreeSSHd - SSH Tunnel Settings"><br />
<img src="http://calamaricorner.com/wp-content/uploads/2007/12/freesshd-setting03.jpg" alt="FreeSSHd - SSH Tunnel Settings" border="0" /></a></li>
</ol>
<p>Apply your changes and restart your SSH service. You should be able to tunnel now. What&#8217;s left is to download your <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" title="Freeware SSH Client for Windows" target="_blank" onclick="javascript:urchinTracker('/outbound/article/http://www.chiark.greenend.org.uk/~sgtatham/putty/');">PuTTY</a> program and configure it to connect to your home server.</p>
<p>You can either configure it using a BAT file or from the GUI. Either way works equally fine. I prefer using a BAT file. If you decide to create a BAT file, here&#8217;s the syntax for it.</p>
<p><font color="#ff6600">putty -D 8080 -P <strong>&lt;port#&gt;</strong> -ssh <strong>&lt;Home IP Address&gt;</strong></font></p>
<p>Edit the values in bold. <strong>&lt;port#&gt;</strong> indicates the port number you have set previously in the FreeSSHd, while <strong>&lt;Home IP Address&gt;</strong> is your home computer&#8217;s IP. Save the file as<em> &#8220;&lt;filename&gt;.bat&#8221;</em>, without the quotes.</p>
<p>Run the BAT file. Accept the servers public key and login using the credentials of the user you set up earlier. If all has gone well you will see a command line prompt similar to what you see on windows.</p>
<p><strong>Almost there.</strong> You will have to set your browser to route using your tunnel access. If you are using Firefox, open up your network connection option tab and do the following:</p>
<p><a href="http://calamaricorner.com/wp-content/uploads/2007/12/putty-firefox-setting.jpg" title="Firefox Tunnel Access" ><img src="http://calamaricorner.com/wp-content/uploads/2007/12/putty-firefox-setting.jpg" alt="Firefox Tunnel Access" border="0" /></a></p>
<p><strong>Internet Explorer users</strong> - It&#8217;s basically the similar thing. Just on a different option area. You should know where it is.</p>
<p>That&#8217;s it! You can officially browse the internet with full access.</p>
]]></content:encoded>
			<wfw:commentRss>http://calamaricorner.com/article/how-to-getting-pass-your-companyschools-firewall/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why most Hosting Companies have Slow Servers</title>
		<link>http://calamaricorner.com/article/why-most-hosting-companies-have-slow-servers/</link>
		<comments>http://calamaricorner.com/article/why-most-hosting-companies-have-slow-servers/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 08:04:44 +0000</pubDate>
		<dc:creator>Hagen</dc:creator>
		
		<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://calamaricorner.com/wordpress/?p=20</guid>
		<description><![CDATA[Browsing through a number of blogs and web-hosting forums the other day and I found numerous horror stories from users regarding their hosts. It’s not that these stories are uncommon or never heard of, but recently they have been getting more and more. Most will complain about the level of customer service that these hosts [...]]]></description>
			<content:encoded><![CDATA[<p>Browsing through a number of blogs and web-hosting forums the other day and I found numerous horror stories from users regarding their hosts. It’s not that these stories are uncommon or never heard of, but recently they have been getting more and more. Most will complain about the level of customer service that these hosts provide is unacceptable, while others rant on about the features promised are not the same upon sign-up. The more I read these stories, the clearer the pattern. All of them are related to just mostly a single issue – server stability.</p>
<p><strong>So what’s the fuss about?</strong><br />
Most of us would want to be hosted inside power servers, where access times are fast, with lots of resources and there is not a single downtime. Yet, many complain about their hosts not delivering that standard. Why is that so?</p>
<p>Web hosting is a volume business. Hosting companies put between 500 to 1,000 websites on a single server, and it is not uncommon to see over 1,000 on these UNIX machines. Yet, this number is considered mild in terms of volume and is not considered overselling yet. A server hardly crashed even with all domains accessed at once.</p>
<p><strong>The problems lies in the server-scripting each of these websites are running.</strong></p>
<p>A single script running is not a problem. Ten is still good. Twenty and it slows down a bit; acceptable. On the other hand, try a thousand scripts running all at once (provided that each domain has only one script), and your server grinds to a halt. Adding insults to injury, you have programs written by many programmers with varying levels of skill. You may be an excellent programmer, but your well-written, streamlined code is competing against many poorly written, inefficient programs, and these poorly written programs eats up a lot of resources.</p>
<p>You have to understand that hosting companies are companies in their basic form too. Most just lack a brick and mortar place that you can visit. With that, they do have costs to cover, employees to pay, and profits to be earned. And in a highly competitive market for web hosting today, most web hosting companies almost always scrimp on back-end servers. They lease cheap servers which may have no quality assurance or performance monitoring. Since the hardware is usually remotely stored in a data centre somewhere, it’s very hard to fix problems at times, resulting in long downtimes.</p>
<p><strong>What you should do to avoid such a mess?</strong><br />
No matter what server configuration your host promises you are on, and how it can improve your site’s performance, it can only go so far. You can’t push a diesel engine to run like an Indy race car, period.</p>
<p>The closes thing to a fast server comes is in form of a dedicated server or colocation, where there’s only an individual having all the resources to oneself. It’s a wise choice for big companies and busy websites generating thousands to millions of traffic daily. However, such options can be very costly for most of us. Start up businesses can’t possibly pay $300 - $800 monthly just to maintain a website that only generates a handful of traffic.</p>
<p>A viable solution for us to get a hosting account that does not break our bank account, yet still provides reliable and stable servers is for hosting companies to limit the number of domains and users in a single server or cluster. Such a practice is costly for smaller companies.</p>
<p>At the end of the day, we have to ask ourselves this question. What’s the price of paying a little more each month to have your website running perfectly than having to deal with the constant headaches of downtime ever one day or so? Balancing needs and wants is hard, but if we are able to do that, we can get definitely get the ideal host.</p>
]]></content:encoded>
			<wfw:commentRss>http://calamaricorner.com/article/why-most-hosting-companies-have-slow-servers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why do You need Customer Support?</title>
		<link>http://calamaricorner.com/article/why-you-need-customer-support/</link>
		<comments>http://calamaricorner.com/article/why-you-need-customer-support/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 08:38:49 +0000</pubDate>
		<dc:creator>Hagen</dc:creator>
		
		<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://calamaricorner.com/wordpress/?p=19</guid>
		<description><![CDATA[As the market segment gets more and more saturated, most webhosting companies in the industry will compete for your attention with ever increasingly bigger and better offers such as,
…5X extra bandwidth…”, or “…Terabyte storage space…” 
As file size gets bigger by the minute, especially with videos, it is only logical that you will need all [...]]]></description>
			<content:encoded><![CDATA[<p>As the market segment gets more and more saturated, most webhosting companies in the industry will compete for your attention with ever increasingly bigger and better offers such as,</p>
<p><em>…5X extra bandwidth…”</em>, or <em>“…Terabyte storage space…” </em></p>
<p>As file size gets bigger by the minute, especially with videos, it is only logical that you will need all the resources you can get. For a couple of bucks, it’s indeed hard to resist these offers. However, what you may not have known is that, to cover such a low price, these bargain hosts will cramp up as many users as they possibly can to maximize their Return-of-Investments (&#8221;ROI&#8221;).</p>
<p>Overselling isn’t necessarily a bad thing. Just like the every sword has two-sides, overselling has its up and down sides. The really good thing about overselling is that we, as consumers, get to buy an affordable hosting package. Then again, it does indeed over-stretch the server’s life quite a bit. With the constant access to the server, 24/7, 365-days, it is only time when the server will crash. The server crashing isn’t the big issue here; it’s what comes after that.</p>
<p><strong>Insufficient Resources</strong><br />
Due to the fact that they are bargain hosts, they may not have enough resources to employ extra staff to handle customer support, especially in a crisis moment. If you are not running a business site, it’s still ok for you to have your website down for the time being. However, business relying on their sites to profit is going to lose a significant portion of their revenue due to the downtime.</p>
<p>Your live chat attempt might be redirected to a “please create a ticket” page, because they are short-handedly handling the already numerous chats before you. Its ok you might think. Just create a ticket and wait for them to reply. Even if your tickets are replied, it may take quite a while before you get any response. The reason is because your ticket is among the hundreds in queue daily. You might already be losing a lot by then and not even their uptime guarantee will cover for it.<br />
All these will only add stress for you. What seems to be a bargain at the beginning can end up costing more than it should.</p>
<p><strong>Time is Money</strong><br />
For most small businesses, maintaining a website is a tedious task. There are so many things to manage and sometimes, time is not on your side – and time is money. Why do you have to wait around? Wouldn’t you rather spend your time doing something constructive than waiting for your host for hours at a time, just for an email reply?</p>
<p>That is why getting a host that provides excellent customer support is extremely vital. Not just customer support, but support that is friendly and prioritizes you as a valued customer. Even if nothing ever happens at your host like the scenario above, you are still going to need your hosts’ immediate assistance with certain issues such as billing, domain, database or scripting errors.</p>
<p>With a business website, it doesn’t hurt for you to shop for a host that doesn’t sell itself on price. Resources are important too, but in reality, you won’t even use more than 40% of what is allotted to you. Even if you need extras, you can buy more for just a few dollars monthly. However, very few hosts will truly value you as a customer and take care of you like as if you are a friend.</p>
]]></content:encoded>
			<wfw:commentRss>http://calamaricorner.com/article/why-you-need-customer-support/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Calculate Bandwidth Usage?</title>
		<link>http://calamaricorner.com/article/how-to-calculate-bandwidth-usage/</link>
		<comments>http://calamaricorner.com/article/how-to-calculate-bandwidth-usage/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 02:53:10 +0000</pubDate>
		<dc:creator>Hagen</dc:creator>
		
		<category><![CDATA[Article]]></category>

		<guid isPermaLink="false">http://calamaricorner.com/wordpress/?p=18</guid>
		<description><![CDATA[If you ever host a website, you would have thought of this sometime, somewhere along the route. If you are a web-hosting reseller, you will definitely think of this more than you will ever want to remember. So how exactly do we calculate bandwidth usage?
There are two common approaches to calculating bandwidth costs:
In a normal [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever host a website, you would have thought of this sometime, somewhere along the route. If you are a web-hosting reseller, you will definitely think of this more than you will ever want to remember. So how exactly do we calculate bandwidth usage?</p>
<p><strong>There are two common approaches to calculating bandwidth costs:</strong><br />
In a normal situation, bandwidth is typically measured per GB (gigabytes) of data transferred. However, large web-hosting companies who have their own servers and colocate them in a data-centre will usually calculate by per Mbps (megabits per second) sustained - the method in which colocation data-centres bill you. Web data, by nature, is a bursty medium. Figuring in GB of data transferred makes it much harder to account for bursts. The Mbps method makes it easier to charge for bursts.</p>
<p><strong>Calculating the Gigabytes</strong><br />
First things&#8217; first. Find out the total GB of data a single T1 connection can transfer, assuming that there&#8217;s no overhead or packet loss. (If you have stats for your packet loss or overhead, just subtract the overhead from the amount of data that can be transferred and continue with the equation.)</p>
<p>A T1 transmits data at 1.536 Mbps. To translate that to Bytes per second you divide by 8 (since there are 8 bits in every byte), and you find that a T1 can transfer data at 192 KBps. Multiply that by 60 seconds in a minute, times 60 minutes in an hour, and you will find that a T1 can transfer 691.2 MB of data per hour, or 6.589 GB per day. Assuming that your web traffic is evenly spread over a day(which in most hosting situations it isn&#8217;t, of course) your cost per GB of data transferred—given T1 costs of $2000/month—is just over $4.</p>
<p><strong>The Mathematics:</strong></p>
<ul>
<li>1.536 Mbps /8 = 192KBps</li>
<li>192 KBps * 60 seconds/minute = 11.52 MB/minute</li>
<li>11.52 MBps * 60 minutes/hour = 691.2 MB/hour</li>
<li>691.2 MB/hour * 24 hours/day = 16.589 GB/day</li>
<li>16.589 GB/day * 30 days/month =497.67 GB/month</li>
<li>Hence, Monthly cost/GB = $2000 / 497.67 GB = $4.02/GB of data transferred.</li>
</ul>
<p><strong>But, there&#8217;s still more&#8230;</strong><br />
In most cases, you will have peak times of web page viewing. If you have a steep curve, you need to keep this in mind and adjust your cost calculations appropriately. For example, most of your traffic were concentrated in a peak period of 4 hours, then,</p>
<ul>
<li>691.2 MB/hour x 4 peak hours/day =2.765 GB/peak period/day</li>
<li>2.765 GB/peak period x 30 days = 82.944 GB/Month</li>
<li>Monthly cost = $2000 / 82.944 GB = $24/GB of peak charges.</li>
</ul>
<p><strong>Mbps costing</strong><br />
Commonly, Mbps is usually calculated by the 95th percentile rule. Meaning, every month, all of the samples are pulled and ordered from highest to lowest. The top 5 percent of readings are then discarded, and the customer is billed based on the next highest reading.</p>
<p>The Mbps costing is usually done with a committed rate and a burst rate. The burst rate is usually a $20-25 increase over the committed rate. If your T1 costs $2000/month including local loop (always include loop charges), then your Mbps cost is $1,302.08/month. So, how do you make money? By oversubscribing your pipes. With oversubscription, you are betting that even though someone is committing to 1 Mbps, they will not use the full 1 Mbps continuously. The typical oversubscription rate is 4 times, which—using our arbitrary numbers—makes your cost per Mbps $325.50/month.</p>
<p><strong>As such:</strong></p>
<ul>
<li>$2,000 / 1.536 Mbps = $1,302.08/Mbps monthly</li>
<li>$1,302.08 / 4x oversubscription rate = $325.50/Mbps monthly (oversubscribed)</li>
</ul>
<p>I hope that clears up some confusion on why some hosting companies can offer you cheap bandwidth charges while others just won&#8217;t even consider lowering theirs.</p>
]]></content:encoded>
			<wfw:commentRss>http://calamaricorner.com/article/how-to-calculate-bandwidth-usage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Local Spice Andaliman</title>
		<link>http://calamaricorner.com/crap/local-spice-andaliman/</link>
		<comments>http://calamaricorner.com/crap/local-spice-andaliman/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 07:16:49 +0000</pubDate>
		<dc:creator>Hagen</dc:creator>
		
		<category><![CDATA[Just Me Crappin']]></category>

		<guid isPermaLink="false">http://calamaricorner.com/wordpress/?p=16</guid>
		<description><![CDATA[I&#8217;m craving for some solid Sichuan Ma La Tofu dishes for the past 2-days now. The thing is, it&#8217;s hard to get such unique ingredients from where I live.
I ended up Googling various websites for that slim hope that I would not have to buy it hundreds of miles away from here. To my surprise, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://calamaricorner.com/crap/local-spice-andaliman/sichuan-pepper/" rel="attachment wp-att-21" title="Sichuan Pepper" ><img src="http://calamaricorner.com/wp-content/uploads/2007/11/sichuan_pepper.jpg" alt="Sichuan Pepper" align="right" /></a>I&#8217;m craving for some solid <em>Sichuan Ma La Tofu</em> dishes for the past 2-days now. The thing is, it&#8217;s hard to get such unique ingredients from where I live.</p>
<p>I ended up Googling various websites for that slim hope that I would not have to buy it hundreds of miles away from here. To my surprise, there are many variants to the plant family. Known as a member of the genus <em>Zanthoxylum</em>, there&#8217;s a similar one here in Indonesia.</p>
<p>Called <strong>Andaliman</strong> (<em>Z. Acanthopodium</em>), its native to North Sumatra, where they used it for preserving food and chilli paste.</p>
<p><strong>First Experience</strong><br />
First tasted it 3 years back, when my sister-in-law came from China for a visit. She cooked a soup-based dish that is red-hot, almost resembling curry, except that it had black seeds all over it. Not used to having seeds in my soups, I foolishly asked what they were doing in the soup. My brother told me, &#8220;Just try it.&#8221; Without thinking twice, I tried and I could feel numbness everywhere; from the tip to the back of my tongue.</p>
<p>Accurately, <a href="http://http://en.wikipedia.org/wiki/Sichuan_pepper" title="Sichuan Pepper" target="_blank" onclick="javascript:urchinTracker('/outbound/article/http://http://en.wikipedia.org/wiki/Sichuan_pepper');">wikipedia</a> describes the ma la seeds as,</p>
<p><em>&#8220;&#8230;has a unique aroma and flavour that is not hot or pungent like black or white pepper, or chili peppers, but has slight lemony overtones and creates in the mouth a kind of tingly numbness (caused by its 3% of hydroxy-alpha-sanshool) that sets the stage for these hot spices&#8230;&#8221;</em></p>
<p>Seeing that all hopes is not lost in the quest for my ma la tofu, I will set out to the nearest supermarket to source out for andaliman. <img src='http://calamaricorner.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://calamaricorner.com/crap/local-spice-andaliman/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
