<?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>YouTalkTech.com</title>
	<atom:link href="http://youtalktech.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://youtalktech.com</link>
	<description>gadgets, gizmos and other tech stuff</description>
	<lastBuildDate>Thu, 14 Apr 2011 14:14:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Squid3 Patch &#8211; Normalize Accept-Encoding Header</title>
		<link>http://youtalktech.com/2011/04/08/squid3-patch-normalize-accept-encoding-header/</link>
		<comments>http://youtalktech.com/2011/04/08/squid3-patch-normalize-accept-encoding-header/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 12:01:49 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[accelerator]]></category>
		<category><![CDATA[accept-encoding]]></category>
		<category><![CDATA[accept-encoding header]]></category>
		<category><![CDATA[accept-encoding http header]]></category>
		<category><![CDATA[http accelerator]]></category>
		<category><![CDATA[http headers]]></category>
		<category><![CDATA[normalize accept-encoding]]></category>
		<category><![CDATA[normalize http header]]></category>
		<category><![CDATA[normalize http headers]]></category>
		<category><![CDATA[normalizer headers]]></category>
		<category><![CDATA[normalizer http headers]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[reverse proxy]]></category>
		<category><![CDATA[squid]]></category>
		<category><![CDATA[squid accept-encoding]]></category>
		<category><![CDATA[squid gzip]]></category>
		<category><![CDATA[squid gzip deflate]]></category>
		<category><![CDATA[squid http header]]></category>
		<category><![CDATA[squid normalize headers]]></category>
		<category><![CDATA[squid3]]></category>
		<category><![CDATA[surrogate control]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=270</guid>
		<description><![CDATA[If you don&#8217;t strip Accept-Encoding, you might want to normalize this important Http Header to make sure your cache doesn&#8217;t get flooded with multiple identical copies. Why? Squid takes the...]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t strip Accept-Encoding, you might want to normalize this important Http Header to make sure your <strong>cache doesn&#8217;t get flooded with multiple identical copies</strong>.</p>
<p>Why? Squid takes the Accept-Encoding header serious. Especially, if the backend sets a Vary header like Vary: Accept-Encoding.  This is fine if two requestors send headers which cause the Backend System to respond differently, like &#8220;deflate&#8221; and &#8220;gzip&#8221;.</p>
<p>In this case, you want Squid to keep the two variations of Responses within its Cache. What you do not want is to keep identical responses cached multiple times like for &#8220;gzip,deflate&#8221; and &#8220;gzip, deflate&#8221; (keep an eye on the space after the comma). By default Squid does treat such variants as separate encodings and therefore store an identical copy of your Backend&#8217;s Response in its Cache.</p>
<p>With this problem being the major impact, there is another downside: Your backend has to serve all this variations which is totally unnecessary!</p>
<p>This code change allows Squid 3 to normalize the Accept-Encoding Header and keeps a maximum variation of 3 in its store (no encoding, gzip and deflate).</p>
<p>File: client_side_request.cc of Squid version 3.2.0.6</p>
<pre class="brush:cpp">static void
clientInterpretRequestHeaders(ClientHttpRequest * http)
{
    ...

    // *** NORMALIZE ACCEPT-ENCODING HEADER ***

    if (req_hdr-&gt;has(HDR_ACCEPT_ENCODING)) {
        String aeh = req_hdr-&gt;getStrOrList(HDR_ACCEPT_ENCODING);
        req_hdr-&gt;delById(HDR_ACCEPT_ENCODING);

        if (aeh.find("gzip") != String::npos) {
            req_hdr-&gt;addEntry(new HttpHeaderEntry(HDR_ACCEPT_ENCODING, NULL, "gzip"));
        } else if (aeh.find("deflate") != String::npos) {
            req_hdr-&gt;addEntry(new HttpHeaderEntry(HDR_ACCEPT_ENCODING, NULL, "deflate"));
        }

        aeh.clean();
    }

    // *** NORMALIZE ACCEPT-ENCODING HEADER ***

 if (req_hdr-&gt;has(HDR_AUTHORIZATION))
        request-&gt;flags.auth = 1;
 ...</pre>
<p>Continue to this blog-post in case you are interested in patching Squid Version 2.7: <a href="http://letsgetdugg.com/2009/12/06/squid-headers-normalization-patch/">http://letsgetdugg.com/2009/12/06/squid-headers-normalization-patch/</a></p>
<p>Happy Caching! ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2011/04/08/squid3-patch-normalize-accept-encoding-header/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>online internet service and website monitoring and check comparison</title>
		<link>http://youtalktech.com/2010/10/14/online-internet-service-and-website-monitoring-and-check-comparison/</link>
		<comments>http://youtalktech.com/2010/10/14/online-internet-service-and-website-monitoring-and-check-comparison/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 11:12:43 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[1stwarning]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[alerta]]></category>
		<category><![CDATA[alertfox]]></category>
		<category><![CDATA[alertmefirst]]></category>
		<category><![CDATA[api notifications]]></category>
		<category><![CDATA[atwach]]></category>
		<category><![CDATA[availability analysis]]></category>
		<category><![CDATA[availability reporting]]></category>
		<category><![CDATA[availability reports]]></category>
		<category><![CDATA[cacti]]></category>
		<category><![CDATA[certificate validation]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[checking]]></category>
		<category><![CDATA[checks]]></category>
		<category><![CDATA[dns a]]></category>
		<category><![CDATA[dns blackhole list]]></category>
		<category><![CDATA[dns mx]]></category>
		<category><![CDATA[dnsbl]]></category>
		<category><![CDATA[dotcom-monitor]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[downtime alerts]]></category>
		<category><![CDATA[downtime notifications]]></category>
		<category><![CDATA[downtime reporting]]></category>
		<category><![CDATA[downtime reports]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftps]]></category>
		<category><![CDATA[global monitor]]></category>
		<category><![CDATA[global website monitoring]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[hp openview]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[http content check]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[https content check]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[imaps]]></category>
		<category><![CDATA[internetseer]]></category>
		<category><![CDATA[latency]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[monitoring api]]></category>
		<category><![CDATA[monitoring continents]]></category>
		<category><![CDATA[monitoring globally]]></category>
		<category><![CDATA[multiple location monitor]]></category>
		<category><![CDATA[multiple location monitoring]]></category>
		<category><![CDATA[multiple locations monitoring]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[nessus]]></category>
		<category><![CDATA[netwhistle]]></category>
		<category><![CDATA[network monitoring]]></category>
		<category><![CDATA[nmap]]></category>
		<category><![CDATA[nntp]]></category>
		<category><![CDATA[notification]]></category>
		<category><![CDATA[outage]]></category>
		<category><![CDATA[outage alerts]]></category>
		<category><![CDATA[outage notification]]></category>
		<category><![CDATA[outage reports]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance issue]]></category>
		<category><![CDATA[performance monitoring]]></category>
		<category><![CDATA[performance reporting]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[pingalink]]></category>
		<category><![CDATA[pingdom]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[pop3s]]></category>
		<category><![CDATA[red alert]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[service check]]></category>
		<category><![CDATA[service checking]]></category>
		<category><![CDATA[service monitoring]]></category>
		<category><![CDATA[serviceuptime]]></category>
		<category><![CDATA[siterecon]]></category>
		<category><![CDATA[siteuptime]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[smtps]]></category>
		<category><![CDATA[snmp]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssl certificate validation]]></category>
		<category><![CDATA[stmp]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[udp]]></category>
		<category><![CDATA[uptrends]]></category>
		<category><![CDATA[watchmouse]]></category>
		<category><![CDATA[webservice alerts]]></category>
		<category><![CDATA[webservice api]]></category>
		<category><![CDATA[webservice notifications]]></category>
		<category><![CDATA[website check]]></category>
		<category><![CDATA[website checking]]></category>
		<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[websitepulse]]></category>
		<category><![CDATA[worldwide monitoring]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=228</guid>
		<description><![CDATA[I need a monitoring service which is constantly checking the services of mine which I offer to my clients. I want to be the first who knows about an outage...]]></description>
			<content:encoded><![CDATA[<p>I need a monitoring service which is constantly checking the services of mine which I offer to my clients. I want to be the first who knows about an outage or a problem as I absolutely hate it to be notified by one of my clients! As it turns out, it is quite a challenge to find the right service provider for this. Therefore, i decided to compile the facts I found and issue a post about this topic!</p>
<p>I will not go down the road for self running monitoring services like nagios or cacti and so on. I&#8217;ve been there, there are good and bad things about all of these tools but at the end of the day or are bothering too much with details and configurations false alerts and flapping states of services and so on&#8230;it&#8217;s really hard to keep the configuration of these utils up to date and you are the only one who can change it due to the lack of fancy web-configuration interfaces and reporting and so on. So please bare with me, this is NOT about those possibilities! Maybe someone else could come up with a post or a comparision of such tools!?</p>
<p><strong>I wanted to go for a nice and fancy online monitoring tool.</strong> <strong>Something which is easy to configure and maintain, browser based configurations and reporting as well as email and sms notifications out of the box!</strong></p>
<p><strong>First of all, there is website checking and there is service monitoring.</strong> If you want to get informed as soon as a smtp service stops, your ftp server goes down or if you even have some services operating on non-standard ports, you need to look for a service monitoring. If you just want a website check to make sure that your website is running and responding with whatever content, you might want to go for website monitoring only which basically checks just if your website can be (down-)loaded. Depending on your services, you might want to monitor certain DNS entries, check the validity of your SSL Certificates, perform a content comparison of the content of a specific website and maybe even check whether your mail exchanger is listed on any DNS Blackhole List!</p>
<p><strong>Second, you might be interested in multiple locations</strong> (ideally, spread over all continents) that check the availability and response times of your services or website, if you have visitors from other corners of the world. If you have regional/local visitors or consumers only, you probably should look for a local/regional monitoring service instead of a global service provider. Don&#8217;t get overwhelmed by the amount of monitoring locations offered though! Not the number of locations is important but the coverage and reliability. With 3-5 locations (one per continent &#8211; North America, South America, Europe, Afrika?, Asia/Pacific, Austriala) you should be more than happy! Having 10+ locations all at the same place does not add any value (but even costs sometimes)!</p>
<p><strong>Third</strong>, do you want to be <strong>informed as soon as possible</strong> if something goes wrong or do you just want to know whether your hosting company had an outage you did not recognize by yourself? If you have money involved and an outage means loss to you, then you surely want your staff to be notified asap to fix the issue. This means you want your service to be monitored with an interval as short as possible (let&#8217;s say every minute). Most of the monitoring service providers will charge you more the more often you want your services to be monitored!</p>
<p><strong>Forth, the supported channels of alerting and notifications.</strong> While I could not find a provider which is not supporting email alerts ;-), SMS is rather expensive or not supported!</p>
<p><strong>Last</strong>, there are different reporting capabilities you might want to consider while evaluating. <strong>Website availability or performance reports</strong> as well as the history of service outages are important things which could help you prove your customers or your boss that you achieved your <strong>availability targets</strong> (99,98%) and so on! Is <strong>export</strong> of your desired format possible to keep historical data? <strong>How long is performance data kept </strong>and available to you?<strong> Do you like the look of the reports and graphs?</strong></p>
<p>I listed the <strong>cheapest http check</strong> I could find, the <strong>most frequent http check</strong> plus a <strong>real world scenario</strong>. The real world scenario I came up with consists of the following monitoring requirements which i thought is realistic and would be provided by most of the monitoring solutions!<br />
<strong> Real World Scenario</strong>: 3 Servers(Hosts/IPs), each running 3 Services (1 x http, 1 x https ,1 x ftp if available &#8211; if not available 3 x http) and monitoring from 3 locations (if available &#8211; if not available from as many as available). Regarding the SMS notifications, i judged the capability to send SMS worldwide not only regional and not via email@whateverprovider as not all providers support this, and it can be achieved by the email functionality itself.</p>
<p>By the way: I am not affiliated with any of the providers compared below and i have absolutely no knowledge about their reliability or customer service whatsoever! I just used the informations I found on their websites to file this comparison table! Please use the comment section below to share your thoughts!!!</p>
<p>So let&#8217;s take a look at the monitoring or checking capabilities first!</p>
<table>
<tbody>
<tr>
<th rowspan="2" width="150">Service Provider</th>
<th colspan="8" align="center">monitoring</p>
<p>capabilities</th>
</tr>
<tr>
<th>ping</th>
<th>http</p>
<p>https</th>
<th>content</p>
<p>check</th>
<th>validate ssl</p>
<p>certificates</th>
<th>tcp</th>
<th>udp</th>
<th>dns</th>
<th>snmp</th>
</tr>
<tr>
<td><a href="http://100pulse.com/">100pulse.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.1stwarning.com/" target="_blank">1stwarning.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://alertbot.com/" target="_blank">alertbot.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.alertfox.com/" target="_blank">alertfox.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://www.alertra.com/">alertra.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.alertmefirst.com/" target="_blank">alertmefirst.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.atwatch.com/" target="_blank">atwatch.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://awaremonitoring.com/">awaremonitoring.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://binarycanary.com/">binarycanary.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">some</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.dotcom-monitor.com/" target="_blank">dotcom-monitor.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://host-tracker.com/">host-tracker.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://www.hyperspin.com/">hyperspin.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.periscopeit.co.uk/" target="_blank">periscopeit.co.uk</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">ftp</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://pingalink.com/">pingalink.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.pingdom.com/" target="_blank">pingdom.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">?</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://redalert.com/">redalert.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.serviceuptime.com/" target="_blank">serviceuptime.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://site24x7.com/">site24x7.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.siterecon.com/" target="_blank">siterecon.com</a></td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.siteuptime.com/" target="_blank">siteuptime.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.uptrends.com/" target="_blank">uptrends.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.watchmouse.com/" target="_blank">watchmouse.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.websitepulse.com/" target="_blank">websitepulse.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">?</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://www.wormly.com/">wormly.com</a></td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #ff6600;">some</td>
<td style="color: #e00000;">no</td>
</tr>
</tbody>
</table>
<p>Let me add some remarks regarding the comparison table:</p>
<ul>
<li>In case of &#8220;some&#8221; within the dns column &#8211; this means, a basic hostname/ip lookup is performed, but no real dns queries like CNAME, SOA, A, MX, etc. sometimes a domain expiry date is checked as well.</li>
<li>In case of &#8220;some&#8221; within the tcp column &#8211; this means, some static ports are available for checking like FTP, SMTP, IMAP, etc. but no custom ports can be defined. &#8220;ftp&#8221; means that obviously only FTP is supported</li>
<li>In case of &#8220;some&#8221; within the content check column &#8211; that means, that just one single word or other limited comparison is supported. In case of &#8220;?&#8221; &#8211; I just couldn&#8217;t find an answer on the providers website!</li>
</ul>
<p>Now, let&#8217;s take a look on the amount of locations and the notification/alerting channels supported and the SMS costs!</p>
<table>
<tbody>
<tr>
<th rowspan="2" width="150">Service Provider</th>
<th rowspan="2">monitoring</p>
<p>geo</p>
<p>locations</th>
<th colspan="4" align="center">Supported Notification Channels</th>
</tr>
<tr>
<th>email</th>
<th>sms</p>
<p>(EUR)</th>
<th>web</p>
<p>request</th>
<th>rss</p>
<p>feed</th>
</tr>
<tr>
<td><a href="http://100pulse.com/">100pulse.com</a></td>
<td style="color: #e00000;">1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.1stwarning.com/" target="_blank">1stwarning.com</a></td>
<td style="color: #e00000;">2</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://alertbot.com/" target="_blank">alertbot.com</a></td>
<td>5</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.alertfox.com/" target="_blank">alertfox.com</a></td>
<td>3</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://www.alertra.com/">alertra.com</a></td>
<td style="color: #e00000;">12</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.alertmefirst.com/" target="_blank">alertmefirst.com</a></td>
<td style="color: #e00000;">1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.atwatch.com/" target="_blank">atwatch.com</a></td>
<td>1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://awaremonitoring.com/">awaremonitoring.com</a></td>
<td>1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #ff6600;">some (?)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://binarycanary.com/">binarycanary.com</a></td>
<td>4</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.18)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.dotcom-monitor.com/" target="_blank">dotcom-monitor.com</a></td>
<td>13</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.11)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://host-tracker.com/">host-tracker.com</a></td>
<td>143</td>
<td style="color: #e00000;">?</td>
<td style="color: #ff6600;">some (?)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://www.hyperspin.com/">hyperspin.com</a></td>
<td>20</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.periscopeit.co.uk/" target="_blank">periscopeit.co.uk</a></td>
<td>5</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.11)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://pingalink.com/">pingalink.com</a></td>
<td>4</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.17)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.pingdom.com/" target="_blank">pingdom.com</a></td>
<td>6</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://redalert.com/">redalert.com</a></td>
<td style="color: #e00000;">1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.57)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.serviceuptime.com/" target="_blank">serviceuptime.com</a></td>
<td>10</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.11)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a href="http://site24x7.com/">site24x7.com</a></td>
<td>29</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.siterecon.com/" target="_blank">siterecon.com</a></td>
<td style="color: #e00000;">1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.siteuptime.com/" target="_blank">siteuptime.com</a></td>
<td>5</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.14)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.uptrends.com/" target="_blank">uptrends.com</a></td>
<td>42</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.35)</td>
<td style="color: #e00000;">no</td>
<td style="color: #00b000;">yes</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.watchmouse.com/" target="_blank">watchmouse.com</a></td>
<td>51</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (?)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.websitepulse.com/" target="_blank">websitepulse.com</a></td>
<td>42</td>
<td style="color: #00b000;">yes</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
<tr>
<td><a href="http://www.wormly.com/">wormly.com</a></td>
<td style="color: #e00000;">1?</td>
<td style="color: #00b000;">yes</td>
<td style="color: #00b000;">yes (0.13)</td>
<td style="color: #e00000;">no</td>
<td style="color: #e00000;">no</td>
</tr>
</tbody>
</table>
<p>Remarks:</p>
<ul>
<li>In case of &#8220;some&#8221; within the sms column &#8211; target countries not clear or unclear offer!</li>
</ul>
<p>Last, the pricing!</p>
<table>
<tbody>
<tr>
<th rowspan="2" width="150">Service Provider</th>
<th colspan="2" align="center">cheapest</p>
<p>check</th>
<th colspan="2" align="center">fastest</p>
<p>check</th>
<th colspan="2" align="center">real</p>
<p>world</p>
<p>scenario</th>
<th rowspan="2">Trial</p>
<p>(days)</th>
</tr>
<tr>
<th>cost</p>
<p>(EUR)</th>
<th> monitoring</p>
<p>intervall</th>
<th>cost</p>
<p>(EUR)</th>
<th> monitoring</p>
<p>intervall</th>
<th>cost</p>
<p>(EUR)</th>
<th> monitoring</p>
<p>intervall</th>
</tr>
<tr>
<td><a href="http://100pulse.com/">100pulse.com</a></td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">5 minutes+</td>
<td>
<div>5.68</div>
</td>
<td style="color: #e00000;">5 minutes+</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.1stwarning.com/" target="_blank">1stwarning.com</a></td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">3 hours+</td>
<td>
<div>71.59</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>
<div>214.77</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>30</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://alertbot.com/" target="_blank">alertbot.com</a></td>
<td>
<div>1.40</div>
</td>
<td style="color: #e00000;">1 hour</td>
<td>
<div>27.23</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>54.44</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>14</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.alertfox.com/" target="_blank">alertfox.com</a></td>
<td>
<div>7.15</div>
</td>
<td style="color: #e00000;">2 hours</td>
<td>
<div>142.70</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>142.70</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>30</td>
</tr>
<tr>
<td><a href="http://www.alertra.com/">alertra.com</a></td>
<td>
<div>0.68</div>
</td>
<td style="color: #e00000;">1 hour</td>
<td>
<div>43.04</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>456.30</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>30</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.alertmefirst.com/" target="_blank">alertmefirst.com</a></td>
<td>
<div>9.68</div>
</td>
<td style="color: #e00000;">30 minutes</td>
<td>
<div>63.48</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>
<div>1058.60</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>30</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.atwatch.com/" target="_blank">atwatch.com</a></td>
<td>
<div>9.32</div>
</td>
<td style="color: #e00000;">30 minutes</td>
<td>
<div>24.39</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td colspan="2">
<div>n/a: no ftp check</div>
</td>
<td>14</td>
</tr>
<tr>
<td><a href="http://awaremonitoring.com/">awaremonitoring.com</a></td>
<td>
<div>22.73</div>
</td>
<td style="color: #e00000;">10 minutes</td>
<td>
<div>45.45</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td colspan="2">
<div>n/a: no ftp check</div>
</td>
<td>15</td>
</tr>
<tr>
<td><a href="http://binarycanary.com/">binarycanary.com</a></td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>15</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.dotcom-monitor.com/" target="_blank">dotcom-monitor.com</a></td>
<td>
<div>7.17</div>
</td>
<td style="color: #e00000;">15 minutes</td>
<td>
<div>31.57</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>251.10</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>30</td>
</tr>
<tr class="odd">
<td><a href="http://host-tracker.com/">host-tracker.com</a></td>
<td>
<div>3.58</div>
</td>
<td style="color: #e00000;">10 minutes</td>
<td>
<div>21.51</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td colspan="2">
<div>n/a: no ftp check</div>
</td>
<td>30</td>
</tr>
<tr class="odd">
<td><a href="http://www.hyperspin.com/">hyperspin.com</a></td>
<td>
<div>7.17</div>
</td>
<td style="color: #e00000;">15 minutes</td>
<td>
<div>8.61</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>65.85</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td></td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.periscopeit.co.uk/" target="_blank">periscopeit.co.uk</a></td>
<td>
<div>9.08</div>
</td>
<td style="color: #e00000;">15 minutes</td>
<td>
<div>20.42</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>
<div>183.82</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>30</td>
</tr>
<tr class="odd">
<td><a href="http://pingalink.com/">pingalink.com</a></td>
<td>
<div>15.70</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>15.70</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>141.25</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td></td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.pingdom.com/" target="_blank">pingdom.com</a></td>
<td>
<div>7.12</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>7.12</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>28.58</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>30</td>
</tr>
<tr>
<td><a href="http://redalert.com/">redalert.com</a></td>
<td>
<div>14.27</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>14.27</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>104.15</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>30</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.serviceuptime.com/" target="_blank">serviceuptime.com</a></td>
<td>
<div>3.54</div>
</td>
<td style="color: #e00000;">3 minutes</td>
<td>
<div>37.89</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>113.69</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td style="color: #e00000;"></td>
</tr>
<tr class="odd">
<td><a href="http://site24x7.com/">site24x7.com</a></td>
<td>
<div>0.71</div>
</td>
<td style="color: #e00000;">30 minutes</td>
<td>
<div>8.52</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>114.97</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>15</td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.siterecon.com/" target="_blank">siterecon.com</a></td>
<td>
<div>7.06</div>
</td>
<td style="color: #e00000;">15 minutes</td>
<td>
<div>35.45</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>
<div>319.36</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>14</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.siteuptime.com/" target="_blank">siteuptime.com</a></td>
<td>
<div>3.55</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>7.10</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td>
<div>43.30</div>
</td>
<td style="color: #e00000;">2 minutes</td>
<td style="color: #e00000;"></td>
</tr>
<tr class="odd">
<td><a rel="nofollow" href="http://www.uptrends.com/" target="_blank">uptrends.com</a></td>
<td>
<div>23.95</div>
</td>
<td style="color: #e00000;">10 minutes</td>
<td>
<div>45.97</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>122.95</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>30</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.watchmouse.com/" target="_blank">watchmouse.com</a></td>
<td>
<div>21.26</div>
</td>
<td style="color: #e00000;">5 minutes</td>
<td>
<div>319.43</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>1064.49</div>
</td>
<td style="color: #e00000;">1+5 minutes</td>
<td>30</td>
</tr>
<tr>
<td><a rel="nofollow" href="http://www.websitepulse.com/" target="_blank">websitepulse.com</a></td>
<td>
<div>0.71</div>
</td>
<td style="color: #e00000;">1 hour</td>
<td>
<div>13.47</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>225.28</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>30</td>
</tr>
<tr>
<td><a href="http://www.wormly.com/">wormly.com</a></td>
<td>
<div>13.47</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>13.47</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>
<div>27.64</div>
</td>
<td style="color: #e00000;">1 minute</td>
<td>14</td>
</tr>
</tbody>
</table>
<p>Remarks:</p>
<ul>
<li>A free service is not a trial to me and therefore I did not list such!</li>
</ul>
<p>Please leave feedback, if you know any more online internet website or service monitoring providers which I did not consider or with any other feedback or information which is missing! Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/10/14/online-internet-service-and-website-monitoring-and-check-comparison/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DropBox down for hours!</title>
		<link>http://youtalktech.com/2010/10/06/dropbox-down-for-hours/</link>
		<comments>http://youtalktech.com/2010/10/06/dropbox-down-for-hours/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 07:36:20 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[dropbox client offline]]></category>
		<category><![CDATA[dropbox unable to connect]]></category>
		<category><![CDATA[dropbox unable to register]]></category>
		<category><![CDATA[dropbox website down]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[internal server error]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[outage]]></category>
		<category><![CDATA[server error]]></category>
		<category><![CDATA[truecrypt]]></category>
		<category><![CDATA[zuckerberg]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=221</guid>
		<description><![CDATA[On 5th of October 2010 &#8211; exactly the time when i decided to go for it (18:00-22:00 GMT) &#8211; dropbox had a massive outage of nearly all services. At least...]]></description>
			<content:encoded><![CDATA[<p>On 5th of October 2010 &#8211; exactly the time when i decided to go for it (18:00-22:00 GMT) &#8211; dropbox had a massive outage of nearly all services. At least in my area. I found out that &#8220;my&#8221; dropbox servers are located in russia and there is no latency. So i was able to download the client, bud when i registered, i received an error (registration failed). Nonetheless, i got a warm welcome email in my inbox! ;-)</p>
<p>From then on it went crazy. I accidentally wanted to know about dropbox as a company and clicked on &#8220;Our Team&#8221; on dropbox.com &#8211; bang!!!<br />
&#8220;Error (5xx) &#8211; Something went wring. Don&#8217;t worry, your files are still safe and Dropboxers have been notified. Check out our Help Center or forums for help. Or maybe you should try heading home.&#8221;<br />
<a href="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_5xx.jpg"><img src="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_5xx.jpg" alt="" title="dropbox_5xx" width="561" height="162" class="alignnone size-full wp-image-223" /></a><br />
still safe? lol!</p>
<p>The dropboy client is annoying me with a &#8220;Reconnect Now&#8221; button &#8211; of course i am not offline but they are. So i cannot login or register.</p>
<p>I googled a bit on the net and i found a link to a dropbox status page: http://status.dropbox.com/<br />
Awesome!</p>
<p>At first, some broken image links appeared and it&#8217;s being stated that the web is running normaly &#8211; yeah, sure, check error 5xx above! ;-)<br />
<a href="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_down_broken_images.jpg"><img src="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_down_broken_images.jpg" alt="" title="dropbox_down_broken_images" width="623" height="495" class="alignnone size-full wp-image-225" /></a></p>
<p>Some minutes later, the images appeared finally, and also the web is stated as being down correctly!<br />
<a href="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_down.jpg"><img src="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_down.jpg" alt="" title="dropbox_down" width="622" height="495" class="alignnone size-full wp-image-224" /></a></p>
<p>But then &#8211; there was the &#8220;500 Internal Server Error&#8221; and nothing was working anymore! :-(<br />
<a href="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_status_500.jpg"><img src="http://youtalktech.com/wp-content/uploads/2010/10/dropbox_status_500.jpg" alt="" title="dropbox_status_500" width="622" height="494" class="alignnone size-full wp-image-222" /></a></p>
<p>So honestly, I am not sure about dropbox&#8230;just because it happend exactly during my registration. Something was warning me! I will use TrueCrypt in combination with dropbox to secure my files for starters&#8230;Not that Zuckerberg buys all my data and posts it on Facebook! :-))</p>
<p>OK, everybody makes mistakes, that&#8217;s ok! Systems go crazy and everything can go down. No big deal. I even like the status page a lot! That&#8217;s a cool feature for sure! The dropbox ops seem to be nice guys and after the site went available again, one could even read, that they really are aware of the problem and they&#8217;re working on it&#8230;A couple of hours are a lot if you need something urgently though!</p>
<p>So I will try my luck today again and if they have issues again, I think I will go for my own SparkeShare!</p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/10/06/dropbox-down-for-hours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Simple Thin Line animated with jQuery and CSS</title>
		<link>http://youtalktech.com/2010/10/05/a-simple-thin-line-animated-with-jquery-and-css/</link>
		<comments>http://youtalktech.com/2010/10/05/a-simple-thin-line-animated-with-jquery-and-css/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 14:06:29 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=162</guid>
		<description><![CDATA[If you need a Solution to display an animated Line (e.g. to visualize a Countdown) don&#8217;t search for jQuery Plugins like timer360. It&#8217;s easier to do it yourself. Our finished...]]></description>
			<content:encoded><![CDATA[<p>If you need a Solution to display an animated Line (e.g. to visualize a Countdown) don&#8217;t search for jQuery Plugins like <a href="http://github.com/tschmidt/timer360">timer360</a>. It&#8217;s easier to do it yourself.</p>
<p>Our finished Animation looks like:<br />

<div style="width: 100px; background-color: #F0F0F0">
<div id="thinLine" style="background-color: #000000; width: 100px; height: 1px; margin-top: 10px; margin-bottom: 20px;"></div>
</div>

<script type="text/javascript">
function ProcessThinLine(tick, delay) {
    if (tick == 60)
        tick = 0;
    tick = tick + 1;
    var currentPosition = (100 / delay) * tick;
    jQuery("#thinLine").width(100 - Math.round(currentPosition));
    window.setTimeout("ProcessThinLine(" + tick+ "," + delay + ");", 1000);
}

 jQuery(document).ready(function() {
  ProcessThinLine(0, 60);
 });
</script>
</p>
<p><strong>Step 1: The Container which holds the Line</strong></p>
<pre class="brush:xml">&lt;div
  id="thinLine"
  style="background-color: #000000; width: 100px; height: 1px;"&gt;
&lt;/div&gt;</pre>
<p><strong>Step 2: Let&#8217;s Draw the Animation</strong></p>
<pre class="brush:js">function ProcessThinLine(tick, delay) {
 tick= tick+ 1;

 var currentPosition = (100 / delay) * tick;
 $("#thinLine").width(100 - Math.round(currentPosition)); // 100 -&gt; div Width

 window.setTimeout("ProcessThinLine(" + tick+ "," + delay + ");", 1000);
}</pre>
<p><strong>Step 3: Initialize the Animation to run 5 Minutes<br />
</strong></p>
<pre class="brush:js">&lt;script type="text/javascript"&gt;
 $(document).ready(function() {
  ProcessThinLine(0, 5 * 60);
 });
&lt;/script&gt;</pre>
<p><strong>Done</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/10/05/a-simple-thin-line-animated-with-jquery-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xmarks Service ends &#8211; Lessons learned and next Steps</title>
		<link>http://youtalktech.com/2010/09/29/xmarks-service-ends-lessons-learned-and-next-steps/</link>
		<comments>http://youtalktech.com/2010/09/29/xmarks-service-ends-lessons-learned-and-next-steps/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 21:34:00 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[synchronization]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=144</guid>
		<description><![CDATA[Xmarks will be shutting down it&#8217;s free browser synchronization services on January 10, 2011. A short email with a huge impact. Before we are searching for a new (free) Sync...]]></description>
			<content:encoded><![CDATA[<p><strong>Xmarks will be shutting down it&#8217;s free browser synchronization services on January 10, 2011.<br />
</strong>A short email with a huge impact.</p>
<p>Before we are searching for a new (free) Sync Service we need to think about 3 Topics:</p>
<ul>
<li>Privacy</li>
<li>Availability</li>
<li>Multiple Browsers on Multiple Machines and Multiple OS</li>
</ul>
<p>Built in Solutions like <a href="http://www.mozilla.com/en-US/firefox/sync/">Firefox Sync</a>, <a href="http://www.google.com/support/chrome/bin/answer.py?answer=165139">Chrome Sync</a>, <a href="http://explore.live.com/windows-live-devices-and-sync-program-settings-ui">Windows Live Sync</a> or <a href="http://www.apple.com/mobileme/">Mobile Me</a> will store all Bookmarks in their Data Centers.<br />
We can talk about Encryption and Downtimes of these Servers but at the end of the Day, Mozilla, Google, Microsoft or Apple will have all your Bookmarks.<br />
And it&#8217;s also not possible to Sync across multiple Browsers.</p>
<p>One Solution is to use <a href="https://www.dropbox.com/">DropBox</a> with an Bookmark Synchronization Browser Plugin.<br />
DropBox is available for Windows, Mac OS and Linux and it&#8217;s &#8220;integrated&#8221; in your local File System.<br />
So if DropBox is offline you can&#8217;t sync &#8211; but you can access your Data.<br />
<em><br />
Availability</em>,<em> Multiple Machines and Multiple OS</em> are solved Requirements. <em>Privacy</em> will be forced by  using <a href="http://www.google.com/#q=dropbox+truecrypt">TrueCrypt with DropBox</a> or the Browser Plugin is capable to Encrypt the exported file or you simple trust DropBox.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/8426/">SyncPlaces</a> is a Firefox Plugin to Synchronize Bookmarks.<br />
To get it working with DropBox select <em>File</em> as <em>Connection Protocol</em> and enter your DropBox Path as <em>JSON</em> Output.</p>
<p><a href="http://youtalktech.com/wp-content/uploads/2010/09/SyncPlaces.png"><img class="alignnone size-full wp-image-152" title="SyncPlaces" src="http://youtalktech.com/wp-content/uploads/2010/09/SyncPlaces.png" alt="SyncPlaces with DropBox" width="499" height="436" /></a></p>
<p>This DropBox / Browser Plugin Solution has one Disadvantage.<br />
There is currently no &#8220;Local File System&#8221; Sync Plugin for all Browsers available.</p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/09/29/xmarks-service-ends-lessons-learned-and-next-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert H.264/MKV Files to iPhone/iPad without Re-Encoding</title>
		<link>http://youtalktech.com/2010/09/29/convert-h-264mkv-files-to-iphoneipad-without-re-encoding/</link>
		<comments>http://youtalktech.com/2010/09/29/convert-h-264mkv-files-to-iphoneipad-without-re-encoding/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 15:36:25 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[CellPhones]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[h.264]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[mpeg4]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=121</guid>
		<description><![CDATA[H.264 (Mpeg4) Videos are mainly stored in a Container called MKV. But iPhones, iPads and other Devices can&#8217;t play this Container Format &#8211; but they can play H.264. One way...]]></description>
			<content:encoded><![CDATA[<p>H.264 (Mpeg4) Videos are mainly stored in a Container called MKV.<br />
But iPhones, iPads and other Devices can&#8217;t play this Container Format &#8211; but they can play H.264.</p>
<p>One way is to Encode your complete H.264 Video with a MKV Container to an H.264 Video with a MP4 Container.<br />
But why to Re-Encode an H.264 Video to an H.264 Video only to change the Container Format?</p>
<p>The better Solution is to Pass Thru the Video and Audio Stream and only change the Container.</p>
<p><strong>Option 1:</strong> The <a href="http://code.google.com/p/subler/">Subler</a> can do this for you.</p>
<p>Simply create a new File, add your Videos and <em>Save As</em> .m4v</p>
<p><a href="http://youtalktech.com/wp-content/uploads/2010/09/Subler.png"><img class="alignnone size-medium wp-image-138" title="Subler" src="http://youtalktech.com/wp-content/uploads/2010/09/Subler-600x322.png" alt="Subler H.264 Pass Through" width="600" height="322" /></a></p>
<p><strong>Option 2:</strong> The <a href="http://www.emmgunn.com/mokgvm2dvd/mokgvmhome.html">MKVTool </a>can do this for you.</p>
<p>Simply select the Pass Thru Options and your 1080p Video has a new MP4 Container in Seconds.</p>
<p><a href="http://youtalktech.com/wp-content/uploads/2010/09/MKVTool.png"><img class="alignnone size-medium wp-image-132" title="MKVTool" src="http://youtalktech.com/wp-content/uploads/2010/09/MKVTool-600x381.png" alt="MKV Tool Pass Through" width="600" height="381" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/09/29/convert-h-264mkv-files-to-iphoneipad-without-re-encoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apple&#8217;s upcoming stroke: iphone 4G</title>
		<link>http://youtalktech.com/2010/04/30/apples-upcoming-stroke-iphone-4g/</link>
		<comments>http://youtalktech.com/2010/04/30/apples-upcoming-stroke-iphone-4g/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 16:04:50 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[CellPhones]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[4g]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple iphone 4g]]></category>
		<category><![CDATA[engadget]]></category>
		<category><![CDATA[found]]></category>
		<category><![CDATA[gizmodo]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone 4g]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[rumor]]></category>
		<category><![CDATA[rumors]]></category>
		<category><![CDATA[stolen]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=115</guid>
		<description><![CDATA[what the hell are all the manufacturers doing? while apple issues a new generation of it&#8217;s revolutionary iphone every single year, others like nokia are not even trying to come...]]></description>
			<content:encoded><![CDATA[<p>what the hell are all the manufacturers doing? while apple issues a new generation of it&#8217;s revolutionary iphone every single year, others like nokia are not even trying to come up with a competetive device. at least it seams so. two days ago i had a chance to get my fingers on a sony-ericsson hd handset. what a crap! i wasn&#8217;t even able to scroll through the menu without opening all the submenus and then got stuck within them. bloody hell &#8211; they can make mobiles which play music or at least have better cameras, but who wants to have a good camera combined with a device one barely can control?</p>
<p>so, again &#8211; it&#8217;s apple who seems to release the forth generation of the popular iphone. this year, they were not able to keep this a very big secret&#8230;</p>
<p>last week the internet was flooded with a ton of exclusive leaks about apple&#8217;s new iphone 4g handset expected this june. this was all thanks to gizmodo, a us based technology news site who purchased the prototype handset from somebody who found it in a bar in san francisco a few weeks ago. read the full story here: <a href="http://gizmodo.com/5520438/how-apple-lost-the-next-iphone">http://gizmodo.com/5520438/how-apple-lost-the-next-iphone</a></p>
<div id="attachment_117" class="wp-caption alignnone" style="width: 610px"><a href="http://youtalktech.com/wp-content/uploads/2010/04/apple-iphone-4g-closeup.jpg"><img class="size-medium wp-image-117" title="apple iphone 4g closeup" src="http://youtalktech.com/wp-content/uploads/2010/04/apple-iphone-4g-closeup-600x414.jpg" alt="apple iphone 4g closeup" width="600" height="414" /></a><p class="wp-caption-text">apple iphone 4g closeup</p></div>
<p>original article: <a href="http://gizmodo.com/5520164/this-is-apples-next-iphone">http://gizmodo.com/5520164/this-is-apples-next-iphone</a></p>
<p>nowadays, apple tries to get them into a lot of trouble &#8211; they claim that selling a stolen device is not allowed and so forth&#8230;let&#8217;s see&#8230;</p>
<p>previous rumor mockups (very nice lookin&#8217; though):</p>
<div id="attachment_116" class="wp-caption alignnone" style="width: 610px"><a href="http://youtalktech.com/wp-content/uploads/2010/04/rumor-mockup-iphone-4g.jpg"><img class="size-medium wp-image-116" title="rumor mockup apple iphone 4g" src="http://youtalktech.com/wp-content/uploads/2010/04/rumor-mockup-iphone-4g-600x479.jpg" alt="rumor mockup apple iphone 4g" width="600" height="479" /></a><p class="wp-caption-text">rumor mockup apple iphone 4g</p></div>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/04/30/apples-upcoming-stroke-iphone-4g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress xml google maps plugin</title>
		<link>http://youtalktech.com/2010/02/10/wordpress-xml-google-maps-plugin/</link>
		<comments>http://youtalktech.com/2010/02/10/wordpress-xml-google-maps-plugin/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 12:02:42 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[geo tag]]></category>
		<category><![CDATA[geotag]]></category>
		<category><![CDATA[geotagger]]></category>
		<category><![CDATA[geotagging]]></category>
		<category><![CDATA[kateus]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress google maps]]></category>
		<category><![CDATA[wordpress google maps plugin]]></category>
		<category><![CDATA[wordpress google plugin]]></category>
		<category><![CDATA[wordpress maps plugin]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress plugin google maps]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress xml google maps]]></category>
		<category><![CDATA[wordpress xml google maps plugin]]></category>
		<category><![CDATA[wordpress xml maps plugin]]></category>
		<category><![CDATA[xml google maps plugin]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=16</guid>
		<description><![CDATA[some guys are tracking their routes with their navigation systems, as most of them offer this feature. you ride the route and the device is logging the actual way you...]]></description>
			<content:encoded><![CDATA[<p>some guys are tracking their routes with their navigation systems, as most of them offer this feature. you ride the route and the device is logging the actual way you drive. via usb it&#8217;s easy to read out the log directly or import the recorded track in some software and export the logs from there. ending up in some xml,kml or gpx file (hopefully)!</p>
<p>tested with garmin 775T successfully!</p>
<p>if you want to embed gps data into wordpress, there is a beautiful easy way to do this! check out the wordpress plugin at <a href="http://www.matusz.ch/blog/projekte/xml-google-maps-wordpress-plugin-en/">xml google maps</a>!</p>
<p>use this wordpress plugin to visualize gpx data from a gps tracker including speed data and altitude information! parse kml files automatically and display the track  / route data on a google map &#8211; it just looks brilliant!</p>
<p>find some examples on the author&#8217;s page: <a href="http://www.matusz.ch/blog/projekte/xml-google-maps-wordpress-plugin-en/samples/">www.matusz.ch</a></p>
<p>so far, so good! but: there is more! geotagging devices became affordable these days &#8211; to hook up a gps tracker to a digital camera (there is even cameras with built in gps &#8211; nikon P6000 i guess), enriches the pictures with the location information! cool right? why not persist this info forever directly in the picture &#8211; after years, one might not be able to remember where a picture was taken!</p>
<p>btw: playing around with decoupled (from the cam) gps loggers or trackers is a mess! the synchronization of gps data and pictures requires a syncing software and works by matching timestamps &#8211; not exact, not real-time, not recommended!</p>
<p>now, photographer might want to display the photos (if geotagged) on a google map &#8211; why else geo tag it, right? and here it coems: there is an integration of xml google maps plugin with another wordpress plugin available: nextgen gallery! and this is really awesome &#8211; just upload pictures with gps info to wordpress nextgen gallery and find this on your blog:</p>
<div id="attachment_113" class="wp-caption alignnone" style="width: 610px"><a href="http://youtalktech.com/wp-content/uploads/2010/02/wordpress_xml_google_maps_plugin_nextgen_integration.jpg"><img class="size-medium wp-image-113" title="wordpress xml google maps plugin nextgen integration" src="http://youtalktech.com/wp-content/uploads/2010/02/wordpress_xml_google_maps_plugin_nextgen_integration-600x361.jpg" alt="wordpress xml google maps plugin nextgen integration" width="600" height="361" /></a><p class="wp-caption-text">wordpress xml google maps plugin nextgen integration</p></div>
<p>example of nextgen integration with geotagged pictures: <a href="http://kateus.com/2009/12/28/28-12-2009-singapore/">kateus</a></p>
<p>wordpress xml google maps plugin home: <a href="http://wordpress.org/extend/plugins/xml-google-maps/">wordpress.org</a></p>
<p>read on:<br />
<a href="http://blog.econsultant.com/wordpress-plugin-xml-google-maps-easily-insert-google-maps">blog.econsultant.com</a><br />
<a href="http://www.bestwpthemez.com/wordpress/plugins-xml-google-maps-223/">www.bestwpthemez.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/02/10/wordpress-xml-google-maps-plugin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>iphone 3.1.2 baseband (firmware) 05.11.07 jailbreak and unlock tutorial</title>
		<link>http://youtalktech.com/2010/02/06/iphone-3-1-2-baseband-firmware-05-11-07-jailbreak-and-unlock-tutorial/</link>
		<comments>http://youtalktech.com/2010/02/06/iphone-3-1-2-baseband-firmware-05-11-07-jailbreak-and-unlock-tutorial/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:46:30 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[CellPhones]]></category>
		<category><![CDATA[04.26.08]]></category>
		<category><![CDATA[05.11.07]]></category>
		<category><![CDATA[3.1.2]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[baseband]]></category>
		<category><![CDATA[baseband downgrade]]></category>
		<category><![CDATA[baseband unlock]]></category>
		<category><![CDATA[blackra1n]]></category>
		<category><![CDATA[blackra1n RC3]]></category>
		<category><![CDATA[blackrain]]></category>
		<category><![CDATA[dev team]]></category>
		<category><![CDATA[downgrade]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[firmware 3.1.2 download]]></category>
		<category><![CDATA[firmware download]]></category>
		<category><![CDATA[firmware download links]]></category>
		<category><![CDATA[firmware downloads]]></category>
		<category><![CDATA[fuzzyband]]></category>
		<category><![CDATA[geohot]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone dev team]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[RC3]]></category>
		<category><![CDATA[sim lock]]></category>
		<category><![CDATA[simlock]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ultrasn0w]]></category>
		<category><![CDATA[ultrasnow]]></category>
		<category><![CDATA[un-lock]]></category>
		<category><![CDATA[unlock]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=100</guid>
		<description><![CDATA[there is just too many informations and blog posts out there about this topic! here is the case: the iphone: apple iphone 3g 16gb white (bought 2008) with sim-lock (to...]]></description>
			<content:encoded><![CDATA[<p>there is just too many informations and blog posts out there about this topic!</p>
<p>here is the case:</p>
<p>the iphone:<br />
apple iphone 3g 16gb white (bought 2008) with sim-lock (to one provider) was never jailbreaked or unlocked and always updated. latest firmware: 3.1.2 and baseband 05.11.07.</p>
<p>the goal:<br />
just unlock it! so it&#8217;s more worth when selling, jailbreak yes or no, does not matter actually!</p>
<p>i looked around and found blackra1n.com and so much informations about this (baseband downgrade to 04.26.08 necessary with fuzzyband and much more outdated nonesense&#8230;)</p>
<p>here is how it works:</p>
<ol>
<li>plug in your iphone to your pc or mac (and close itunes and/or other popping applications)</li>
<li>download blackra1n from blackra1n.com</li>
<li>run blackra1n</li>
<li>click &#8220;make it ra1n&#8221;</li>
<li>after your iphone rebooted, open the blackra1n app on your iphone</li>
<li>click Cydia (it should become the green check) and click install</li>
<li>after your iphone rebooted, open the blackra1n app on your iphone</li>
<li>click sn0w (it should become the green check) and click install</li>
</ol>
<p>this is it. period. insert any sim card and have fun using your iphone and feel free installing other cydia or rock applications!</p>
<p>bottom line:<br />
blackra1n RC3 dows it all for you &#8211; no need for downgrades or other stuff!</p>
<p>a screenshot of blackra1n RC3:</p>
<div id="attachment_103" class="wp-caption alignnone" style="width: 282px"><a href="http://youtalktech.com/wp-content/uploads/2010/02/blackra1nRC3.png"><img class="size-full wp-image-103" title="blackra1n RC3 iphone screenshot" src="http://youtalktech.com/wp-content/uploads/2010/02/blackra1nRC3.png" alt="blackra1n RC3 iphone screenshot" width="272" height="408" /></a><p class="wp-caption-text">blackra1n RC3 iphone screenshot</p></div>
<p>firmware download links for 3.1.2:</p>
<ul>
<li><a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7268.20091008.32pNe/iPhone1,1_3.1.2_7D11_Restore.ipsw">iPhone 3.1.2 download</a> (<strong>iPhone1,1_3.1.2_7D11_Restore.ipsw</strong>, 241 MB)</li>
<li><a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7265.20091008.Xsd32/iPhone1,2_3.1.2_7D11_Restore.ipsw">iPhone 3G 3.1.2 download</a> (<strong>iPhone1,2_3.1.2_7D11_Restore.ipsw</strong>, 242 MB)</li>
<li><a href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-7270.20091008.phn32/iPhone2,1_3.1.2_7D11_Restore.ipsw">iPhone 3GS 3.1.2 download</a> (<strong>iPhone2,1_3.1.2_7D11_Restore.ipsw</strong>, 306 MB)</li>
</ul>
<p>read more:<br />
<a href="http://iphonejtag.blogspot.com/2009/11/blacksn0w-is-live.html">iphonejtag.blogspot.com</a><br />
<a href="http://www.technonix.com/2009/11/unlock-and-jailbreak-iphone-3-1-2-baseband-05-11-07-using-blacksn0w-or-blacksnow/">www.technonix.com</a><br />
<a href="http://www.ihackintosh.com/2009/11/jailbreak-unlock-iphone-3g-3gs-3-1-2-with-blackra1n/">www.ihackintosh.com<br />
</a><a href="http://www.redmondpie.com/unlock-iphone-3.1.2-firmware-with-blacksn0w-9140082/">www.redmondpie.com</a><br />
<a href="http://www.technobuzz.net/unlock-iphone-3-1-2-baseband-05-11-07-with-blacksn0w/">www.technobuzz.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/02/06/iphone-3-1-2-baseband-firmware-05-11-07-jailbreak-and-unlock-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cable salad 2.0: bluelounge&#8217;s cablebox</title>
		<link>http://youtalktech.com/2010/02/01/cable-salad-2-0-bluelounges-cablebox/</link>
		<comments>http://youtalktech.com/2010/02/01/cable-salad-2-0-bluelounges-cablebox/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 08:02:12 +0000</pubDate>
		<dc:creator>transferrin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[bluelounge]]></category>
		<category><![CDATA[cable]]></category>
		<category><![CDATA[cablebox]]></category>
		<category><![CDATA[cables]]></category>

		<guid isPermaLink="false">http://youtalktech.com/?p=93</guid>
		<description><![CDATA[hide your cables, your knots, your power supplies and your bunch of splitters! ok, to be honest, this is a not rocket science. it is just another overpriced thingy &#8211;...]]></description>
			<content:encoded><![CDATA[<p>hide your cables, your knots, your power supplies and your bunch of splitters!</p>
<p>ok, to be honest, this is a not rocket science. it is just another overpriced thingy &#8211; for the geeks inside us a must have. but it is kewl. it&#8217;s nice looking and it is doing its job. got one from a japanese store (loft) in bangkok for about 20 euros. pretty expensive. but if you do not like this &#8211; just go ahead, build your own box! the idea is simple and old. there are even already a couple of solutions out there, a few of them only integrated in a workdesk which is not that flexible!</p>
<p>in fact &#8211; some people might need a little kick in the ass to re-assemble their cable hell. after dedicating 45 minutes (unplug all that crap, which has beeing extended over the last 2 years, clean that stuff, coil up the unneeded lengths of cables and even remove obsolete devices (3!!), apply the new cablebox) you end up with something definitely better looking than before!</p>
<p>check out the <a href="http://www.bluelounge.com/cablebox.php">cablebox </a>to get rid of your cable salad!</p>
<div id="attachment_95" class="wp-caption alignnone" style="width: 610px"><a href="http://youtalktech.com/wp-content/uploads/2010/02/bluelounge_cablebox.jpg"><img class="size-medium wp-image-95" title="bluelounge cablebox" src="http://youtalktech.com/wp-content/uploads/2010/02/bluelounge_cablebox-600x258.jpg" alt="bluelounge cablebox" width="600" height="258" /></a><p class="wp-caption-text">bluelounge cablebox</p></div>
]]></content:encoded>
			<wfw:commentRss>http://youtalktech.com/2010/02/01/cable-salad-2-0-bluelounges-cablebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Object Caching 1332/1648 objects using memcached

Served from: youtalktech.com @ 2012-05-20 11:52:16 -->
