<?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>block.boesch.be &#187; internet</title>
	<atom:link href="http://block.boesch.be/index.php/category/computer/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://block.boesch.be</link>
	<description></description>
	<lastBuildDate>Tue, 04 Oct 2011 09:28:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Verfügbarkeit Facebook</title>
		<link>http://block.boesch.be/index.php/2010/09/24/verfugbarkeit-facebook/</link>
		<comments>http://block.boesch.be/index.php/2010/09/24/verfugbarkeit-facebook/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 07:26:28 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[planet-hsr]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=762</guid>
		<description><![CDATA[Ist Facebook für 2.5 h nicht erreichbar, schafft es diese Neuigkeit gleich in die Zeitung. Die Abhängigkeit ist gross und die Ausfallszeit scheint lange.
Klar, es hat niemand ein Anrecht auf die Verfügbarkeit von Facebook. Im Geschäftsalltag werden vielfach Verträge für kritische Dienste mit prozentualen Verfügbarkeiten abgeschlossen. Im Grunde genommen hat man das beim ADSL auch. [...]]]></description>
			<content:encoded><![CDATA[<p>Ist Facebook für 2.5 h nicht erreichbar, schafft es diese Neuigkeit gleich in die Zeitung. Die Abhängigkeit ist gross und die Ausfallszeit scheint lange.</p>
<p>Klar, es hat niemand ein Anrecht auf die Verfügbarkeit von Facebook. Im Geschäftsalltag werden vielfach Verträge für kritische Dienste mit prozentualen Verfügbarkeiten abgeschlossen. Im Grunde genommen hat man das beim ADSL auch. Die meistens garantierte Verfügbarkeit &#8220;Best Effort&#8221; ist eine Übersetzung nicht wert.</p>
<p>Betrachtet man eine Verfügbarkeit von 99.9% scheint das hoch. Aufs ganze Jahr wird aber eine Ausfallszeit von fast 9 Stunden toleriert. Einen Arbeitstag ohne Email oder ERP? Kaum vorstellbar.</p>
<p>Zurück zu Facebook: Nimmt man an, dass in diesen 2.5 h 50 Millionen Besucher je 10 Rappen an Werbeeinnahmen generiert hätten, dann hat Facebook 5 Millionen Franken in den Sand gesetzt. Und das wäre nur ein Faktor, vielleicht weitaus schlimmer, aber nicht bezifferbar ist der Imageschaden.</p>
<p>Hochverfügbarkeit ist eine komplexe und teure Angelegenheit. Grund genug ab nächster Woche der Sache beruflich nachzugehen. </p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2010/09/24/verfugbarkeit-facebook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Offline Wikipedia and unicode support</title>
		<link>http://block.boesch.be/index.php/2010/01/26/offline-wikipedia-and-unicode-support/</link>
		<comments>http://block.boesch.be/index.php/2010/01/26/offline-wikipedia-and-unicode-support/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 08:39:39 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=515</guid>
		<description><![CDATA[There is an excellent tutorial which describes the procedure to get an offline version of wikipedia. The description can be found here Building a (fast) Wikipedia offline reader (download the all in one file, plus the mediawiki_sa.tar.7z and un7zip it, run the Makefile). The big wikipedia file can be downloaded from here Wikipedia database download
It [...]]]></description>
			<content:encoded><![CDATA[<p>There is an excellent tutorial which describes the procedure to get an offline version of wikipedia. The description can be found here <a href="http://users.softlab.ntua.gr/~ttsiod/buildWikipediaOffline.html">Building a (fast) Wikipedia offline reader</a> (download the all in one file, plus the mediawiki_sa.tar.7z and un7zip it, run the Makefile). The big wikipedia file can be downloaded from here <a href="http://en.wikipedia.org/wiki/Wikipedia_database">Wikipedia database download</a></p>
<p>It works pretty straightforward.</p>
<p>The problem which I faced was with the typical German umlauts like ä,ö,ü. If you enter Pfäffikon (my hometown) than you get a nice exception. Of course there is a solution for this problem (have a look for the modified views.py file on the first mentioned site). But because of the lack of internet I solved the problem by myself.</p>
<p>Here the short explanation:<br />
The script receives the HTTP Data in unicode but uses it with the default encoding of Python. The default encoding can be displayed by printing sys.getdefaultencoding(). On my Debian machine it was ascii. So the script tries to change the Umlauts from unicode to ascii, which can&#8217;t work. </p>
<p>Two solutions:<br />
Either you add two lines to the file (/etc/python2.5/sitecustomize.py) and set your default encoding to UTF-8<br />
<code>import sys<br />
sys.setdefaultencoding('utf-8')</code></p>
<p>or </p>
<p>you do the following in the views.py file:<br />
After line 7 (<code>def article(request, article):</code>)<br />
add<br />
<code>article = article.encode('utf-8')</code><br />
and<br />
replace the line 71 (<code>searchData = request.GET['data']</code>)<br />
with the following line<br />
<code>searchData = request.GET['data'].encode('utf-8')</code></p>
<p>Now the offline Wikipedia reader should handle umlauts properly</p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2010/01/26/offline-wikipedia-and-unicode-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Skype mit alsamixer auf einem T60</title>
		<link>http://block.boesch.be/index.php/2009/09/21/skype-mit-alsamixer-auf-einem-t60/</link>
		<comments>http://block.boesch.be/index.php/2009/09/21/skype-mit-alsamixer-auf-einem-t60/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 12:28:03 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=501</guid>
		<description><![CDATA[Alsamixer ist nicht leicht zu bedienen und damit das Mikrofon über Skype funktioniert muss einiges eingestellt werden.
Bei mir hat es mit diesen Einstellungen funktioniert.
alsamixer in der Konsole aufrufen
Pfeiltaste links, bis zum Mic auf 60 stellen
M drücken, so dass Mic eingeschalten ist
Wechseln zu Mic Boost auf 33 einschalten
Mit Tabulator in Reiter Capture wechseln
Mic auswählen und Space [...]]]></description>
			<content:encoded><![CDATA[<p>Alsamixer ist nicht leicht zu bedienen und damit das Mikrofon über Skype funktioniert muss einiges eingestellt werden.</p>
<p>Bei mir hat es mit diesen Einstellungen funktioniert.</p>
<li><em>alsamixer</em> in der Konsole aufrufen</li>
<li>Pfeiltaste links, bis zum Mic auf 60 stellen</li>
<li>M drücken, so dass Mic eingeschalten ist</li>
<li>Wechseln zu Mic Boost auf 33 einschalten</li>
<li>Mit Tabulator in Reiter Capture wechseln</li>
<li>Mic auswählen und Space drücken (es erscheint rot L R CAPTUR)</li>
<li>Capture auswählen und Space drücken (es erscheint rot L R CAPTUR)</li>
<li>Capture auf 47 stellen</li>
<li>Wechseln nach Digital und auf 70 stellen</li>
<p>Mit diesen Schritten hat bei mir die Konfiguration funktioniert. Die Soundqualität ist noch nicht die beste, da muss man ein bisschen mit den Parametern spielen.</p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2009/09/21/skype-mit-alsamixer-auf-einem-t60/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>imapsync</title>
		<link>http://block.boesch.be/index.php/2009/07/27/imapsync/</link>
		<comments>http://block.boesch.be/index.php/2009/07/27/imapsync/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 18:12:42 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[planet-hsr]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=456</guid>
		<description><![CDATA[Die Zeit kommt näher und ich verlasse diesen Kontinent. Das bringt einige Umstellungen in meiner Serverlandschaft mit sich. Mein Mail- und Webserver, der in der Waschküche vor sich hinwerkelt und an einem minderwertigen ADSL-Anschluss hängt, hat ausgedient. Es wird alles zu einem Schweizer Provider gezügelt. 
Für den Mailaccount ist das Tool imapsync ein Traum. Es [...]]]></description>
			<content:encoded><![CDATA[<p>Die Zeit kommt näher und ich verlasse diesen Kontinent. Das bringt einige Umstellungen in meiner Serverlandschaft mit sich. Mein Mail- und Webserver, der in der Waschküche vor sich hinwerkelt und an einem minderwertigen ADSL-Anschluss hängt, hat ausgedient. Es wird alles zu einem Schweizer Provider gezügelt. </p>
<p>Für den Mailaccount ist das Tool imapsync ein Traum. Es bietet vielfältige Möglichkeiten, um Mails zwischen zwei Konten zu synchronisieren.</p>
<p>Nach 5 Stunden Synchronisation waren alle Mails auf dem neuen Account. Irgendwann in den nächsten Wochen wird dann definitiv umgestellt und in der Waschküche kehrt Ruhe ein.</p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2009/07/27/imapsync/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zoneedit down?</title>
		<link>http://block.boesch.be/index.php/2009/03/02/zoneedit-down/</link>
		<comments>http://block.boesch.be/index.php/2009/03/02/zoneedit-down/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 16:06:42 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[planet-hsr]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=326</guid>
		<description><![CDATA[Seit heute Morge komme ich nicht mehr von aussen auf meine Server. Nun bin ich zu Hause und suche den Grund. Meine Domain betreibe ich über Zoneedit, was eigentlich ziemlich gut geklappt hat.
Die Situation ist nun folgende: Ich kann meine dynamische IP bei Zoneedit eintragen, bzw. eintragen lassen (mit ddclient). Im Webinterface zeigt es die [...]]]></description>
			<content:encoded><![CDATA[<p>Seit heute Morge komme ich nicht mehr von aussen auf meine Server. Nun bin ich zu Hause und suche den Grund. Meine Domain betreibe ich über Zoneedit, was eigentlich ziemlich gut geklappt hat.</p>
<p>Die Situation ist nun folgende: Ich kann meine dynamische IP bei Zoneedit eintragen, bzw. eintragen lassen (mit ddclient). Im Webinterface zeigt es die eingetragene IP an. Die DNS Server, welche für meine Domain zuständig sind, stellen sich dumm. Sie beantworten die gestellten Requests nicht mit der eingetragenen IP Adresse, sondern mit irgendeiner anderen.</p>
<p>Was kann ich tun? Nichts.</p>
<p>Warten vielleicht und mein Zimmer aufräumen <img src='http://block.boesch.be/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Wenn Du diesen Eintrag liest, dann funktioniert es bereits wieder <img src='http://block.boesch.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  oder du hältst dich unerlaubterweise in meinem Netzwerk auf <img src='http://block.boesch.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2009/03/02/zoneedit-down/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SMTP Relay Checker</title>
		<link>http://block.boesch.be/index.php/2009/01/04/smtp-relay-checker/</link>
		<comments>http://block.boesch.be/index.php/2009/01/04/smtp-relay-checker/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 19:06:16 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=278</guid>
		<description><![CDATA[Unter http://www.rbl.jp/svcheck.php findet man einen Test, welcher den mitgegebenen Server auf Mailrelayfunktionen überprüft.
]]></description>
			<content:encoded><![CDATA[<p>Unter <a href="http://www.rbl.jp/svcheck.php">http://www.rbl.jp/svcheck.php</a> findet man einen Test, welcher den mitgegebenen Server auf Mailrelayfunktionen überprüft.</p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2009/01/04/smtp-relay-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kapo ZH Suche = Kuhbild</title>
		<link>http://block.boesch.be/index.php/2008/12/30/kapo-zh-suche-kuhbild/</link>
		<comments>http://block.boesch.be/index.php/2008/12/30/kapo-zh-suche-kuhbild/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 20:09:32 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[black]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[planet-hsr]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=275</guid>
		<description><![CDATA[Der 25. Chaos Communication Congress ist durch und die cheiben Hacker haben es auch auf die Kantonspolizei Zürich abgesehen.
Dem Suchfeld kann man scheinbar beliebige Bilder übergeben.
Das Beispiel unter dieser URL:25C3
Und meine Spielerei hier:
Kuh
oder
Affe
Viel Spass  
]]></description>
			<content:encoded><![CDATA[<p>Der 25. Chaos Communication Congress ist durch und die cheiben Hacker haben es auch auf die Kantonspolizei Zürich abgesehen.<br />
Dem Suchfeld kann man scheinbar beliebige Bilder übergeben.<br />
Das Beispiel unter dieser URL:<a href="http://www.kapo.zh.ch/internet/ds/kapo/de/search.html?search=%22%3E%3Cimg%20src=http://events.ccc.de/congress/2008/wiki/images/6/67/25C3-logo.png%3E">25C3</a><br />
Und meine Spielerei hier:<br />
<a href="http://www.kapo.zh.ch/internet/ds/kapo/de/search.html?search=%22%3E%3Cimg%20src=http://www.rund-um-schulmilch.at/fileadmin/_/ama/kuhgeheimnis/kuh_geht_w.jpg%3E">Kuh</a><br />
oder<br />
<a href="http://www.kapo.zh.ch/internet/ds/kapo/de/search.html?search=%22%3E%3Cimg%20src=http://www.visiantis.com/images/ecards/visi/tiere/affe_brille.jpg%3E">Affe</a></p>
<p>Viel Spass <img src='http://block.boesch.be/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2008/12/30/kapo-zh-suche-kuhbild/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DNS Sackmesser</title>
		<link>http://block.boesch.be/index.php/2008/12/02/dns-sackmesser/</link>
		<comments>http://block.boesch.be/index.php/2008/12/02/dns-sackmesser/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 20:06:50 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://block.boesch.be/?p=241</guid>
		<description><![CDATA[http://www.dnsminer.com/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dnsminer.com/">http://www.dnsminer.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2008/12/02/dns-sackmesser/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ddclient und Zoneedit</title>
		<link>http://block.boesch.be/index.php/2008/06/03/ddclient-und-zoneedit/</link>
		<comments>http://block.boesch.be/index.php/2008/06/03/ddclient-und-zoneedit/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 15:32:22 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://block.boesch.be/index.php/2008/06/03/ddclient-und-zoneedit/</guid>
		<description><![CDATA[Mitten in den Ferien lag mein Email ab. Wieso? Die Antwort und Lösung findet man hier: http://www.held.org.il/blog/?p=63
]]></description>
			<content:encoded><![CDATA[<p>Mitten in den Ferien lag mein Email ab. Wieso? Die Antwort und Lösung findet man hier: <a href="http://www.held.org.il/blog/?p=63">http://www.held.org.il/blog/?p=63</a></p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2008/06/03/ddclient-und-zoneedit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Webcalendar with Lightning and Webdav</title>
		<link>http://block.boesch.be/index.php/2008/04/10/webcalendar-with-lightning-and-webdav/</link>
		<comments>http://block.boesch.be/index.php/2008/04/10/webcalendar-with-lightning-and-webdav/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 15:39:35 +0000</pubDate>
		<dc:creator>alexander</dc:creator>
				<category><![CDATA[computer]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://block.boesch.be/index.php/2008/04/10/webcalendar-with-lightning-and-webdav/</guid>
		<description><![CDATA[My motivation for this how to is to leave the google calendar. This because I want to reduce the data which I spend to google.
Preconditions
Working webdav server
ics File of your google or whatever calendar
Install phpicalendar
First of all we install phpicalendar to view the calendars in the webbrowser.
The steps:
- Download
- Extract
- copy the phpicalendar directory into [...]]]></description>
			<content:encoded><![CDATA[<p>My motivation for this how to is to leave the google calendar. This because I want to reduce the data which I spend to google.</p>
<p><strong>Preconditions</strong><br />
Working webdav server<br />
ics File of your google or whatever calendar</p>
<p><strong>Install phpicalendar</strong><br />
First of all we install phpicalendar to view the calendars in the webbrowser.<br />
The steps:<br />
- Download<br />
- Extract<br />
- copy the phpicalendar directory into your webdav directory of the webserver<br />
- The directory structure should look like this:</p>
<p>http://www.server.com/webdav/</p>
<p>	http://www.server.com/webdav/calendar <= all phpicalendar stuff<br />
	http://www.server.com/webdav/calendar/calendars/ <= space for your calendars<br />
- rename the configuration file to config.inc.php</p>
<p><strong>Create a calendar in Lightning</strong><br />
Do a right click below the Calendar in Lightning and choose New Calendar<br />
The new Calendar is on the Network<br />
Next<br />
Format iCalendar (ICS)<br />
Location http://www.server.com/webdav/calendar/calendars/newcal.ics (for exampel)<br />
Next<br />
Name and Color &#8230; whatever you want<br />
Next<br />
Finish</p>
<p>Do a right click on the new created calendar and choose Publish Calendar. You need permission to write on your webdav server.<br />
Publishing URL: same URL as above<br />
Click on Publish<br />
After a few seconds the new calendar is created on your server<br />
Close the window</p>
<p>Now copy your backup ics into your calendars directory on the webdav server. Name the file exactly as the new created (for example newcal.ics). You can reload your calendar in lightning (left click on the calendar -> Reload Remote Calendars). The events from your backup ics should appear.</p>
<p>When you create a new event, this event should be automatically uploaded to your webdav server. May be, there are some problems with the permissions (in this case, check if the webserver has rights to write the calendar file).</p>
<p><strong>Nice Features</strong><br />
If you want to read your calendars offline, there is a check box in the properties of each calendar. You can check this, but be aware, that this feature is still experimental.</p>
<p>When your tasks are attached to a calendar you have already uploaded, the tasks are visible in phpicalendar. Are your tasks in a own calendar, just do the steps above.</p>
<p>After this how to you can definitely say goodbye to the google calendar.</p>
]]></content:encoded>
			<wfw:commentRss>http://block.boesch.be/index.php/2008/04/10/webcalendar-with-lightning-and-webdav/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

