<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>...meie igapäevast IT'd anna meile igapäev...</title>
	<atom:link href="http://dukelupus.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dukelupus.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 10:24:44 +0000</lastBuildDate>
	<language>et</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dukelupus.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>...meie igapäevast IT'd anna meile igapäev...</title>
		<link>http://dukelupus.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dukelupus.wordpress.com/osd.xml" title="...meie igapäevast IT&#039;d anna meile igapäev..." />
	<atom:link rel='hub' href='http://dukelupus.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Kogutud teotused 3</title>
		<link>http://dukelupus.wordpress.com/2011/12/20/kogutud-teotused-3/</link>
		<comments>http://dukelupus.wordpress.com/2011/12/20/kogutud-teotused-3/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 09:31:54 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Kogutud teotused]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/?p=1007</guid>
		<description><![CDATA[Seekordsed teotused pärinevad ühest veebiteenusest, mille autor oli suutnud imelihtsa, nii 100..150 rida koodi nõudva funktsionaalsuse vedada pea tuhande rea peale. Mõned briljantsemad näited. Garbage collection on juba kord selline kahtlane asi… kutsume selle igaks juhuks manuaalselt oma teenuse väljakutse lõpus välja ning ootame et GC oma töö ära teeks, siis me võime kindlad olla [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=1007&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Seekordsed teotused pärinevad ühest veebiteenusest, mille autor oli suutnud imelihtsa, nii 100..150 rida koodi nõudva funktsionaalsuse vedada pea tuhande rea peale. Mõned briljantsemad näited.</p>
<p><em>Garbage collection</em> on juba kord selline kahtlane asi… kutsume selle igaks juhuks manuaalselt oma teenuse väljakutse <em>lõpus</em> välja ning ootame et GC oma töö ära teeks, siis me võime kindlad olla et meil on kõik mälust mittevajalik mälust kadunud. Aga oot… kas ta ikka eemaldas mälust <em>kõik</em> mittevajalikud objektid? Teeme seda <em>kaks korda järjest</em>. Nüüd me saame lõpuks tagastada veebiteenuse vastuse, uraa!</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:fd57a4cd-817d-4e10-a53c-5fbaabd4c9f5" class="wlWriterEditableSmartContent">
<pre class="brush: c#;">GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
GC.WaitForPendingFinalizers();</pre>
</div>
<p>Meetod ajutise kataloogi saamiseks:</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:6c5a4898-1026-4b71-9ef2-2741ac803023" class="wlWriterEditableSmartContent">
<pre class="brush: c#;">public string GetTempPath()
{
  //string path = System.Environment.GetEnvironmentVariable("TEMP");
  //if (!path.EndsWith("\\")) path += "\\";
  //return path;
  return "C:\\";
}</pre>
</div>
<p>Seejuures – kuna tegemist oli ju veebiteenusega – siis loomulikult ei olnud IIS’il õigust C:\ kirjutada. Ning kuna seda kataloogi küsis logimine, mis oli wrapitud try… catch blokki, siis <em>ei kirjutatud iial ühtegi logirida</em>. Miks on vaja logi kirjutada <em>ajutisse</em> kataloogi? Miks ei kasutata Path.GetTempPath() meetodit?</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:f32c3428-b7e9-4f15-a8ea-c502c7ff2e88:c7fb7e0d-0857-4cf3-b752-f69f07e33fdb" class="wlWriterEditableSmartContent">
<pre class="brush: c#;">private int RandomNumber(int min, int max)
{
  var random = new Random();
  return random.Next(min, max);
}</pre>
</div>
<p>See RandomNumber() funktsioon iseenesest ei ole WTF. Tõsi, kuivõrd seda kasutati täpselt ühes kohas, siis oleks võinud see olla ka lihtsalt <font face="Lucida Console">new Random().Next(min, max)</font>, kuid see pole veel tragöödia. Kurb on aga see, kuidas seda kasutati – nimelt võeti saadud number ja liideti stringile, et saada unikaalne failinimi. Loomulikult ei kontrollitud ega seda faili juba enne olemas ei ole… Miks kasutada Path.GetRandomFileName() funktsionaalsust, kui ise saab ju kah?</p>
<p>Ning päeva nael, mis on esitamiseks liiga pikk. Kolm igaüks 168 rea pikkust meetodit, kesksed antud veebiteenuse funktsionaalsusele. Lähemal uurimisel selgub, et tegemist on täpselt ühe ja sama meetodiga, mis erineb kettale salvestatava faili laiendi poolest (string). Ning näpuka tõttu copypasteerimisel on esimesel ja kolmandal meetodil sisse jäänud sama laiend. </p>
<p>Miks ei võinud anda seda laiendit sisse meetodi parameetrina? Vastust teab vaid tuul.</p>
<p>Lisaks, umbes kolmkümmend deklareeritud ja sageli ka väärtustatud muutujat, mida ei kasutata. Sealhulgas ka streamid, mis luuakse ja loetakse väärtused sisse, kuid ei kasutata ega suleta. Kasutamata meetodid. Kümmekond konstanti, mida kasutatakse vaid ühes kohas, kui üldse. Mittetöötav logimine üritab kirjutada logifaili potentsiaalselt kümneid megabaite suurt Base64 stringi. If-else-if puud switch…case asemel.</p>
<p>Versioonihalduses olev kood ei ole sama, mis lives kompileeritud dll – ning seejuures loomulikult ei tea keegi, kus see “päris” kood võiks olla. Ilmselt ei jõudnud see kunagi tundmatu “arendaja” masinast kaugemale.</p>
<p>&#8212;</p>
<p>Lisaks veel kommentaar nooremprogrammeerija koodist, hoopis teisest projektist:</p>
<p><font face="Lucida Console">// Note that this implementation has weakness. It does not work correctly</font></p>
<p>See tegelikult ei ole teotus ja muutub arusaadavaks, kui järgmisel real olevat “// if…” kommentaari jätku lugeda. Aga esmapilgul…</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/kogutud-teotused/'>Kogutud teotused</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/1007/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/1007/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/1007/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=1007&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/12/20/kogutud-teotused-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>
	</item>
		<item>
		<title>Revalspordi meeste aurusauna t&#246;&#246;soleku ajad</title>
		<link>http://dukelupus.wordpress.com/2011/11/01/revalspordi-meeste-aurusauna-tsoleku-ajad/</link>
		<comments>http://dukelupus.wordpress.com/2011/11/01/revalspordi-meeste-aurusauna-tsoleku-ajad/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 08:40:13 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Eesti]]></category>
		<category><![CDATA[Revalsport]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/11/01/revalspordi-meeste-aurusauna-tsoleku-ajad/</guid>
		<description><![CDATA[Mingil põhjusel ei suuda Revalsport oma kodulehele riputada saunade töösoleku aegu, kasvõi sellesama Wordi dokumendina mis ülaloleva sildi aluseks on. Iseasi, et meeste aurusaun on minumeelest igal aastal nii kümmekond kuud remondis või lihtsalt mittetöötav. Kui nüüd veel infrapunase ja soome sauna ajad saaks… Filed under: Eesti Tagged: Revalsport<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=1004&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="RevalsportSteamSauna" border="0" alt="RevalsportSteamSauna" src="http://dukelupus.files.wordpress.com/2011/11/revalsportsteamsauna1.jpg?w=620&#038;h=664" width="620" height="664" /></p>
<p>Mingil põhjusel ei suuda Revalsport oma kodulehele riputada saunade töösoleku aegu, kasvõi sellesama Wordi dokumendina mis ülaloleva sildi aluseks on. Iseasi, et meeste aurusaun on minumeelest igal aastal nii kümmekond kuud remondis või lihtsalt mittetöötav.</p>
<p>Kui nüüd veel infrapunase ja soome sauna ajad saaks…</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/eesti/'>Eesti</a> Tagged: <a href='http://dukelupus.wordpress.com/tag/revalsport/'>Revalsport</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/1004/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/1004/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/1004/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/1004/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/1004/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/1004/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/1004/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/1004/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=1004&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/11/01/revalspordi-meeste-aurusauna-tsoleku-ajad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/11/revalsportsteamsauna1.jpg" medium="image">
			<media:title type="html">RevalsportSteamSauna</media:title>
		</media:content>
	</item>
		<item>
		<title>Google oskab l&#245;puks C# otsida</title>
		<link>http://dukelupus.wordpress.com/2011/10/13/google-oskab-lpuks-c-otsida/</link>
		<comments>http://dukelupus.wordpress.com/2011/10/13/google-oskab-lpuks-c-otsida/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 13:03:18 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Infotehnoloogia]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/10/13/google-oskab-lpuks-c-otsida/</guid>
		<description><![CDATA[Ei ole pannud tähele millal, aga Google on lõpuks ometi hakanud toetama #-sümbolit otsingus – ehk saab otsida C♯ ilma et pakutaks tava-C vasteid. Eks oli nagu aeg ka, C♯ on siiski üks “suurest viiest” (nüüd ehk juba “suurest kuuest”). Siiani oli #-tugi üks väheseid põhjuseid, miks Bingi kasutada. Filed under: Infotehnoloogia Tagged: C#, Google<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=1001&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://dukelupus.files.wordpress.com/2011/10/csharpgoogle.png"><img style="display:block;float:none;border-width:0;margin:0 auto 10px;" title="C#" border="0" alt="C#" src="http://dukelupus.files.wordpress.com/2011/10/csharpgoogle_thumb.png?w=620&#038;h=489" width="620" height="489" /></a></p>
<p>Ei ole pannud tähele millal, aga Google on lõpuks ometi hakanud toetama <a href="http://en.wikipedia.org/wiki/Sharp_%28music%29">#</a>-sümbolit otsingus – ehk saab otsida C♯ ilma et pakutaks tava-C vasteid. Eks oli nagu aeg ka, C♯ on siiski üks “<a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html">suurest viiest</a>” (nüüd ehk juba “suurest kuuest”). Siiani oli #-tugi üks väheseid põhjuseid, miks Bingi kasutada. </p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/'>Infotehnoloogia</a> Tagged: <a href='http://dukelupus.wordpress.com/tag/c/'>C#</a>, <a href='http://dukelupus.wordpress.com/tag/google/'>Google</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/1001/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=1001&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/10/13/google-oskab-lpuks-c-otsida/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/10/csharpgoogle_thumb.png" medium="image">
			<media:title type="html">C#</media:title>
		</media:content>
	</item>
		<item>
		<title>Calvados</title>
		<link>http://dukelupus.wordpress.com/2011/09/24/calvados/</link>
		<comments>http://dukelupus.wordpress.com/2011/09/24/calvados/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 19:55:17 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Isiklikud]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/09/24/calvados/</guid>
		<description><![CDATA[Filed under: Isiklikud<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=998&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://dukelupus.files.wordpress.com/2011/09/wpid-imag0472.jpg" /></p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/998/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/998/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/998/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=998&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/09/24/calvados/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/09/wpid-imag0472.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Global exception handler in .NET console programs</title>
		<link>http://dukelupus.wordpress.com/2011/09/23/global-exception-handler-in-net-console-programs/</link>
		<comments>http://dukelupus.wordpress.com/2011/09/23/global-exception-handler-in-net-console-programs/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 08:11:09 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Isiklikud]]></category>
		<category><![CDATA[Programmeerimine]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/09/23/global-exception-handler-in-net-console-programs/</guid>
		<description><![CDATA[Global exception handlers are a Bad Idea(tm)! You should always handle exceptions as close to their place of origin as logically possible. That said, there is one reason to have a global exception handler: logging. We, the programmers, are not superhumans. No matter how many precautions we take, there always is a clever idiot who [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=986&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Global exception handlers are a Bad Idea(tm)! You should always handle exceptions as close to their place of origin as logically possible.</p>
<p>That said, there is one reason to have a global exception handler: logging. </p>
<p>We, the programmers, are not superhumans. No matter how many precautions we take, there always is a clever idiot who finds a way to break our programs in a new and unexpected way. Or, as <a href="http://en.wikipedia.org/wiki/Rick_Cook">Rick Cook</a> put it, “Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.”.</p>
<p>The idiot may be DBA, changing case-insensitive database to case sensitive, “because, y’know, man, case insensitivity is sooo Pascal”. Or client decides to “reconfigure” web server. Or user decides that all those dll files are really a security risk. Or… No matter what. There will be a time when the flying feces will hit the rotating blades. Hard.</p>
<p>And the client will complain that our application does not work, fix it now!!!11!! But everything is working for us just fine…</p>
<p>That is where the global error handler will come to the rescue – namely, we catch a previously uncaught exception and log it. What happens with the program after that is not our concern here.</p>
<p>So, enough blabber, gimme the code.</p>
<div style="font-family:consolas,&#039;font-size:11px;">
<pre style="background:#ffffff;color:#000000;"><span style="color:#800000;font-weight:bold;">static</span> <span style="color:#800000;font-weight:bold;">void</span> Main<span style="color:#808030;">(</span><span style="color:#800000;font-weight:bold;">string</span><span style="color:#808030;">[</span><span style="color:#808030;">]</span> args<span style="color:#808030;">)</span>
<span style="color:#800080;">{</span>
  AppDomain<span style="color:#808030;">.</span>CurrentDomain<span style="color:#808030;">.</span>UnhandledException <span style="color:#808030;">+</span><span style="color:#808030;">=</span> CurrentDomainUnhandledException<span style="color:#800080;">;</span>
  <span style="color:#696969;">//...</span>
  <span style="color:#696969;">//Profit!                     </span>
<span style="color:#800080;">}</span>

<span style="color:#800000;font-weight:bold;">static</span> <span style="color:#800000;font-weight:bold;">void</span> CurrentDomainUnhandledException<span style="color:#808030;">(</span><span style="color:#800000;font-weight:bold;">object</span> sender<span style="color:#808030;">,</span> UnhandledExceptionEventArgs e<span style="color:#808030;">)</span>
<span style="color:#800080;">{</span>
  MyFavouriteLogger<span style="color:#808030;">.</span>LogException<span style="color:#808030;">(</span>e<span style="color:#808030;">.</span>ExceptionObject <span style="color:#800000;font-weight:bold;">as</span> Exception<span style="color:#808030;">,</span> <span style="color:#800000;">&quot;</span><span style="color:#0000e6;">Unhandled exception. Terminating application!</span><span style="color:#800000;">&quot;</span><span style="color:#808030;">)</span><span style="color:#800080;">;</span>
  <span style="color:#696969;">//Exit gracefully with a message and Environment.Exitcode</span>
<span style="color:#800080;">}</span></pre>
</div>
<p>There are several gotcha&#8217;s with AppDomamain.UnhandledException, read about those from <a href="http://msdn.microsoft.com/en-us/library/1ea9wwze%28v=VS.100%29.aspx">MSDN</a>. You can use it with WinForms, but for WinForms there is <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.threadexception.aspx">Application.ThreadException</a> as well.</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>, <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/programmeerimine/'>Programmeerimine</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/986/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=986&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/09/23/global-exception-handler-in-net-console-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>
	</item>
		<item>
		<title>StreamTextViewer</title>
		<link>http://dukelupus.wordpress.com/2011/09/12/streamtextviewer/</link>
		<comments>http://dukelupus.wordpress.com/2011/09/12/streamtextviewer/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 14:38:57 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Isiklikud]]></category>
		<category><![CDATA[Programmeerimine]]></category>

		<guid isPermaLink="false">http://dukelupus.wordpress.com/?p=972</guid>
		<description><![CDATA[Download StreamTextViewer.exe (35KB) Imre&#8217;s recent blog post about reading large text files reminded me about a proof-of-concept prototype I did a while ago &#8211; i.e. opening and viewing large text files in .NET. It is useful when looking at huge log files or XML data dumps &#8211; et.wikipedia data dump is open in the screenshot. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=972&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://dukelupus.files.wordpress.com/2011/09/streamtextviewer.png"><img class="alignright size-medium wp-image-973" title="StreamTextViewer" src="http://dukelupus.files.wordpress.com/2011/09/streamtextviewer.png?w=363&#038;h=205" alt="" width="363" height="205" /></a>Download <a href="http://hot.ee/dukelupus/StreamTextViewer.exe">StreamTextViewer.exe</a> (35KB)</p>
<p><a href="http://vetikavabrikutehnilinetugi.blogspot.com/2011/08/sellest-kuidas-lugeda-vaga-suuri-faile.html">Imre&#8217;s recent blog post about reading large text files</a> reminded me about a proof-of-concept prototype I did a while ago &#8211; i.e. opening and viewing large text files in .NET. It is useful when looking at huge log files or XML data dumps &#8211; et.wikipedia data dump is open in the screenshot. Most &#8220;regular&#8221; programs choke at such files &#8211; for example, it is more or less impossible to open 100+ MB file in otherwise very fast <a href="http://notepad-plus-plus.org/">Notepad++</a>, similarly super-fast <a href="http://www.firstobject.com/dn_editor.htm">firstobject XML editor</a> chokes even on a medium-size database dump.</p>
<p>StreamTextViewer is based on StreamViewer() class, reading the file in chunks. You&#8217;ll need .NET 3.5 use the app.</p>
<p>Remember, this is really just a proof-of-concept prototype and not finished &amp; polished application. Especially navigation is not all that great, also it is missing a multitude of niceties usually found in normal apps.</p>
<p>Features:</p>
<ul>
<li>Opens any size of text file (well, you might get an error if your file is bigger than 9,223,372,036,854,775,807 bytes, that is 9.223 exabytes, or about 100 times the data that exists right now in <em>tha internets</em>. The current NTFS implementation only supports files up to 16 TB, so you are SOL anyway if you have a bigger file :P).</li>
<li>Fast, with a low memory footprint (about 30..40 MB when the file is loaded).</li>
<li>Auto-detects encoding (displayed in the status strip).</li>
<li>Supports any encoding that <a href="http://msdn.microsoft.com/en-us/library/system.text.encoding%28v=VS.90%29.aspx">.NET supports</a>.</li>
<li>Fairly fast search (note: case sensitive!).</li>
<li>Go-to feature: go to specific percent or location of the file.</li>
<li>Supports *nix-style \n line endings.</li>
<li>&#8220;Navigation bar&#8221; on the right, showing current position. You can also move the rectangle or click on the bar to go to a new location.</li>
</ul>
<p>Possible to-do list for the future:</p>
<ul>
<li>Come up with a better name!</li>
<li>Better navigation &#8211; load next chunk automagically when user reaches end of the current one</li>
<li>Search: case insensitive search, regexp</li>
<li>Encoding: allow user to change encoding-on-the-fly</li>
<li>Opening file from the command line, drag and drop</li>
<li>Editing? Search &amp; replace</li>
</ul>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>, <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/programmeerimine/'>Programmeerimine</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/972/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=972&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/09/12/streamtextviewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/09/streamtextviewer.png?w=300" medium="image">
			<media:title type="html">StreamTextViewer</media:title>
		</media:content>
	</item>
		<item>
		<title>Kuldharik (Ramaria aurea)</title>
		<link>http://dukelupus.wordpress.com/2011/09/11/kuldharik-ramaria-aurea/</link>
		<comments>http://dukelupus.wordpress.com/2011/09/11/kuldharik-ramaria-aurea/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 09:41:23 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Loodus]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/09/11/kuldharik-ramaria-aurea/</guid>
		<description><![CDATA[Filed under: Loodus<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=968&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://dukelupus.files.wordpress.com/2011/09/wpid-imag0433.jpg" /></p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/loodus/'>Loodus</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/968/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/968/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/968/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=968&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/09/11/kuldharik-ramaria-aurea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/09/wpid-imag0433.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Päikeseloojang suvepäevadel</title>
		<link>http://dukelupus.wordpress.com/2011/08/20/paikeseloojang-suvepaevadel/</link>
		<comments>http://dukelupus.wordpress.com/2011/08/20/paikeseloojang-suvepaevadel/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 16:55:46 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Isiklikud]]></category>
		<category><![CDATA[Loodus]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/08/20/paikeseloojang-suvepaevadel/</guid>
		<description><![CDATA[Filed under: Isiklikud, Loodus<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=966&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://dukelupus.files.wordpress.com/2011/08/wpid-imag0400.jpg" /></p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>, <a href='http://dukelupus.wordpress.com/category/loodus/'>Loodus</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/966/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/966/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/966/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=966&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/08/20/paikeseloojang-suvepaevadel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/08/wpid-imag0400.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Augustibluus 2011</title>
		<link>http://dukelupus.wordpress.com/2011/08/08/augustibluus-2011/</link>
		<comments>http://dukelupus.wordpress.com/2011/08/08/augustibluus-2011/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 13:41:43 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Muusika]]></category>
		<category><![CDATA[Augustibluus]]></category>
		<category><![CDATA[Haapsalu]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/08/08/augustibluus-2011/</guid>
		<description><![CDATA[Sel aastal sai esmakordselt käidud Augustibluusil Haapsalus. Üldmulje jäi päris kena (hoolimata vähem kui poolest tunnist unest kahe päeva kohta), vaid korralduse ja esinejatevalikuga oli küsitavusi. Säästuprogramm? Esinejatest väga paljud mängisid muusikat, millel ei olnud bluusiga mitte mingit pistmist. Kas nad olid tõesti lihtsalt nii odavad? Ülejäänutest enamik mängis rütmibluusi või bluusrocki – ning puhast [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=964&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://dukelupus.files.wordpress.com/2011/08/imag0316.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 0 10px 10px;" title="IMAG0316" border="0" alt="IMAG0316" align="right" src="http://dukelupus.files.wordpress.com/2011/08/imag0316_thumb.jpg?w=244&#038;h=148" width="244" height="148" /></a> Sel aastal sai esmakordselt käidud Augustibluusil Haapsalus. Üldmulje jäi päris kena (hoolimata vähem kui poolest tunnist unest kahe päeva kohta), vaid korralduse ja esinejatevalikuga oli küsitavusi.</p>
<h4>Säästuprogramm?</h4>
<p>Esinejatest väga paljud mängisid muusikat, millel ei olnud bluusiga mitte mingit pistmist. Kas nad olid tõesti lihtsalt nii odavad? Ülejäänutest enamik mängis rütmibluusi või <a href="http://en.wikipedia.org/wiki/Blues_rock">bluusrocki</a> – ning puhast <a href="http://en.wikipedia.org/wiki/Delta_blues">deltabluusi</a> ei mänginud kahjuks keegi.</p>
<p>Esimese päeva esinejatest jätsid hea mulje Vladimir Rusinov &amp; The Jumping Cats – seda seni, kuni Vladimir ei laulnud. Kahjuks tal lauluhäälega just kõige parem sõbrasuhe ei olnud. Meeldivana jäi meelde <em>Hey Joe</em>, mis minu kõrva järgi oli noot-noodilt Deep Purple versioon.</p>
<p>Fernando Noronha &amp; Black Soul mängis üsna agressiivset bluusrocki, kuid neid oli kuulata täitsa mõnus; Kirk Fletcher jättis alguses üsna hea mulje, kuid kahjuks olid kõik lood omavahel sarnased.</p>
<p>Äärmiselt ebameeldiva mulje jättis, et festivali kavas oleva Taavi Peterson &amp; The Doors tribute kontserdile pääsu eest nõuti lisaraha ka siis, kui festivali pass oli olemas. Täiesti arusaamatu ja nõme liigutus, häbi korraldajatele. Festivali passiga peab saama <em>kõikjale</em>, mis on kavas!</p>
<p><a href="http://dukelupus.files.wordpress.com/2011/08/imag0329.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 10px 10px 0;" title="IMAG0329" border="0" alt="IMAG0329" align="left" src="http://dukelupus.files.wordpress.com/2011/08/imag0329_thumb.jpg?w=244&#038;h=148" width="244" height="148" /></a> Festivali põhilava oli <a href="http://en.wikipedia.org/wiki/Haapsalu_Castle">Haapsalu linnuses</a>. Kontserdipaigana on see fantastiline, just õhkkonna poolest. Lava oleks võinud vahest veidi kõrgem olla, kuivõrd ju amfiteatri tõusu platsil ei ole.</p>
<p>Teise päeva muusikaline osa algas “Selveri laval”. Sõitsime sinna… ja lava ei kusagil. Parkisime siis ja ootasime kuni hakkasid <em>soundcheck</em> kostma.</p>
<p>Selgus, et “Selveri lava” on lihtsalt kaks kõlarit supermarketi sissepääsu juures. Kohas, kus inimesed oma ostudega ringi kõnnivad. Lihtsalt esinejate mõnitamine – eriti, kuna linnuses ei esinenud samal ajal keegi. Linnuses on suur ja väike lava – oleks võinud ju selle ukse kõrval mängimise asemel sinna väiksele lavale panna esinema…</p>
<p><a href="http://dukelupus.files.wordpress.com/2011/08/imag0334.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 0 10px 10px;" title="IMAG0334" border="0" alt="IMAG0334" align="right" src="http://dukelupus.files.wordpress.com/2011/08/imag0334_thumb.jpg?w=244&#038;h=148" width="244" height="148" /></a> Selveri juures jättis üllatavalt meeldiva kogemuse Eesti coveribänd <a href="http://www.tulv.planet.ee/">Tulv</a>. Nad mängisid igihaljaid rockihitte; lauljataril olid ilusad jalad ja veel ilusam hääl. Nemad oleks küll kindlasti võinud linnuses väiksel laval olla, ajatäiteks enam kui piisav.</p>
<p>Teine “Selveri lava” esineja oli <a href="http://www.youtube.com/watch?v=LCmxhIvSkOw">The Tomahawck Brothers</a>. Neile sobis see lava küll ja küll.</p>
<p>Pealava esimene esineja oli Jo’Buddy &amp; Down Home King III, kes küll mängisid bluusitaolist muusikat, kuid ma pole veel iial näinud et <em>live</em>-esinejasse nii külmalt suhtutaks. Kui esinemine lõppes, siis läbis rahvast kollektiivne ohe – lõpuks ometi läbi! Täielik möödapanek korraldajate poolt.</p>
<p><a href="http://www.augustibluus.ee/augustibluus-2011/vaigla-bros/1644">Vaigla Bros feat. Kaire Vilgats &amp; Raivo Tafenau </a>tegid sellist jatsu, mida on kindlasti huvitav mängida… aga surmigav kuulata. Paar lugu olid siiski suht kenad. Kaire Vilgats oleks võinud lood ära õppida.</p>
<p>Päeva ning festivali parim esineja oli USA perebänd (kaks venda ja õde) <a href="http://www.augustibluus.ee/augustibluus-2011/trampled-foot/1641">Trampled Under Foot</a>. Keeruka perenimega “Schnebelen” esinejad olid tasemel, naislaulja/bassisti hääl oli fantastiline. Mängiti nii omaloomingut kui ka bluusiklassikat, samuti Led Zeppelini (ansabli nimi tulebki <a href="http://en.wikipedia.org/wiki/Trampled_Under_Foot">Led Zeppelini loost</a>). Väga nauditav elamus.</p>
<p>Augustibluusi lõpetas lennukiga kohale toodud Tõnis Mägi. Standardne Tõnis Mäe kontsert, ei ole suurt midagi kiita ega laita.</p>
<p>Kokkuvõtteks… veidi pettusin, ilmselt kuna ootused olid kõrgemad kui reaalsus. Korraldajad suudaksid-võiksid paremat tööd teha nii organiseerimise kui ka esinejate poole pealt. Kui kunagi on mõni/mõned huvitavamad esinejad, siis võiks küll uuesti minna, muidu vist ei ole soovi.</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/kultuur/muusika/'>Muusika</a> Tagged: <a href='http://dukelupus.wordpress.com/tag/augustibluus/'>Augustibluus</a>, <a href='http://dukelupus.wordpress.com/tag/haapsalu/'>Haapsalu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/964/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/964/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/964/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/964/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/964/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/964/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/964/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/964/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=964&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/08/08/augustibluus-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/08/imag0316_thumb.jpg" medium="image">
			<media:title type="html">IMAG0316</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/08/imag0329_thumb.jpg" medium="image">
			<media:title type="html">IMAG0329</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/08/imag0334_thumb.jpg" medium="image">
			<media:title type="html">IMAG0334</media:title>
		</media:content>
	</item>
		<item>
		<title>Kah puitmaterjal</title>
		<link>http://dukelupus.wordpress.com/2011/07/30/kah-saematerjal/</link>
		<comments>http://dukelupus.wordpress.com/2011/07/30/kah-saematerjal/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 10:12:36 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Eesti]]></category>
		<category><![CDATA[Isiklikud]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/07/30/kah-saematerjal/</guid>
		<description><![CDATA[Räpastanud, kõver, oksi täis, halvasti saetud, läbimärg. Ja loomulikult roppkallis ning enesestmõistetavalt ainult sularaha eest. Ehitamine Raplamaal. Õnneks on pea kõik kuuri puumaterjal mujalt, vaid latte tuli juurde osta. Filed under: Eesti, Isiklikud<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=955&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" src="http://dukelupus.files.wordpress.com/2011/07/wpid-imag0312.jpg" alt="image" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" src="http://dukelupus.files.wordpress.com/2011/07/wpid-imag0311.jpg" alt="image" /></p>
<p>Räpastanud, kõver, oksi täis, halvasti saetud, läbimärg. Ja loomulikult roppkallis ning enesestmõistetavalt ainult sularaha eest. Ehitamine Raplamaal.</p>
<p>Õnneks on pea kõik kuuri puumaterjal mujalt, vaid latte tuli juurde osta.</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/eesti/'>Eesti</a>, <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/955/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=955&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/07/30/kah-saematerjal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/07/wpid-imag0312.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/07/wpid-imag0311.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Kõrvitsalehed pärast rahet</title>
		<link>http://dukelupus.wordpress.com/2011/07/27/korvitsalehed-parast-rahet/</link>
		<comments>http://dukelupus.wordpress.com/2011/07/27/korvitsalehed-parast-rahet/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 18:44:29 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Isiklikud]]></category>
		<category><![CDATA[Loodus]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/2011/07/27/korvitsalehed-parast-rahet/</guid>
		<description><![CDATA[Filed under: Isiklikud, Loodus<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=952&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://dukelupus.files.wordpress.com/2011/07/wpid-imag0304.jpg" /></p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>, <a href='http://dukelupus.wordpress.com/category/loodus/'>Loodus</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/952/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/952/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=952&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/07/27/korvitsalehed-parast-rahet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/07/wpid-imag0304.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Eesti AdBlocki filtrid</title>
		<link>http://dukelupus.wordpress.com/2011/07/08/eesti-adblocki-filtrid/</link>
		<comments>http://dukelupus.wordpress.com/2011/07/08/eesti-adblocki-filtrid/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 18:52:29 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Eesti]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[AdBlock]]></category>
		<category><![CDATA[filtrid]]></category>

		<guid isPermaLink="false">http://dukelupus.wordpress.com/?p=949</guid>
		<description><![CDATA[..et ma iga kord neid aadresse ei peaks otsima.. http://sepp.offline.ee/temp/AdBlockPlus.txt http://adblock.sander85.com/ Filed under: Eesti, Firefox Tagged: AdBlock, Eesti, filtrid<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=949&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://www.hot.ee/dukelupus/AdBlockPlus.png" alt="" width="172" height="40" />..et ma iga kord neid aadresse ei peaks otsima..</p>
<p><a href="http://sepp.offline.ee/temp/AdBlockPlus.txt">http://sepp.offline.ee/temp/AdBlockPlus.txt</a></p>
<p><a href="http://adblock.sander85.com/">http://adblock.sander85.com/</a></p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/eesti/'>Eesti</a>, <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/firefox/'>Firefox</a> Tagged: <a href='http://dukelupus.wordpress.com/tag/adblock/'>AdBlock</a>, <a href='http://dukelupus.wordpress.com/tag/eesti/'>Eesti</a>, <a href='http://dukelupus.wordpress.com/tag/filtrid/'>filtrid</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/949/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/949/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/949/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=949&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/07/08/eesti-adblocki-filtrid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://www.hot.ee/dukelupus/AdBlockPlus.png" medium="image" />
	</item>
		<item>
		<title>Porgandimahl jääga</title>
		<link>http://dukelupus.wordpress.com/2011/06/29/porgandimahl-jaaga/</link>
		<comments>http://dukelupus.wordpress.com/2011/06/29/porgandimahl-jaaga/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 12:53:00 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Isiklikud]]></category>

		<guid isPermaLink="false">https://dukelupus.wordpress.com/?p=947</guid>
		<description><![CDATA[Ühtlasi mobiililt postitamise test. Filed under: Isiklikud<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=947&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://dukelupus.files.wordpress.com/2011/06/wpid-imag0269.jpg" /></p>
<p>Ühtlasi mobiililt postitamise test.</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/isiklikud/'>Isiklikud</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/947/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/947/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/947/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=947&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/06/29/porgandimahl-jaaga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/06/wpid-imag0269.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET MVC: Simple checkbox extension</title>
		<link>http://dukelupus.wordpress.com/2011/06/27/asp-net-mvc-simple-checkbox-extension/</link>
		<comments>http://dukelupus.wordpress.com/2011/06/27/asp-net-mvc-simple-checkbox-extension/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 10:41:00 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[Checkbox]]></category>

		<guid isPermaLink="false">http://dukelupus.wordpress.com/?p=941</guid>
		<description><![CDATA[As you may or may not have noticed, ASP.NET MVC checkbox implementation is just bad. In addition of regular &#60;input type="checkbox".. it will render secondary hidden input, &#8221; so that an unselected check box will return false&#8221;. This is supposed &#8220;make it easy to bind to view data or model data&#8221;. Considering how forums are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=941&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-931" title="asp.net_.mvc_.logo_.gif" src="http://dukelupus.files.wordpress.com/2011/05/asp-net_-mvc_-logo_.gif" alt="" width="244" height="76" />As you may or may not have noticed, <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.html.inputextensions.checkbox.aspx">ASP.NET MVC checkbox</a> implementation is just <em>bad</em>. In addition of regular <code>&lt;input type="checkbox"</code>.. it will render <em>secondary</em> hidden input, &#8221; so that an unselected check box will return false&#8221;. This is supposed &#8220;make it easy to bind to view data or model data&#8221;. Considering how forums are full of people asking why their checkboxes misbehave, I&#8217;d say it is fairly safe to claim they failed.</p>
<p>I got tired of writing &lt;input type=&#8221;checkbox&#8221; name=&#8221;mycheckbox&#8221; id=&#8221;mycheckbox&#8221; /&gt; every time I needed a &#8220;normal&#8221;, checkbox, so I wrote a set SimpleTextbox extensions for InputExtensions (Html.SimpleTextbox()):</p>
<div class="csharp" style="font-family:monospace;color:#006;border:1px solid #d0d0d0;background-color:#f0f0f0;"><span style="color:#0600FF;font-weight:bold;">public</span> <span style="color:#0600FF;font-weight:bold;">static</span> <span style="color:#6666cc;font-weight:bold;">class</span> SimpleCheckboxHelper <br />
<span style="color:#008000;">&#123;</span><br />
&nbsp; <span style="color:#0600FF;font-weight:bold;">public</span> <span style="color:#0600FF;font-weight:bold;">static</span> MvcHtmlString SimpleCheckbox<span style="color:#008000;">&#040;</span><span style="color:#0600FF;font-weight:bold;">this</span> HtmlHelper helper, <span style="color:#6666cc;font-weight:bold;">string</span> name<span style="color:#008000;">&#041;</span><br />
&nbsp; <span style="color:#008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color:#0600FF;font-weight:bold;">return</span> SimpleCheckbox<span style="color:#008000;">&#040;</span>helper, name, <span style="color:#0600FF;font-weight:bold;">false</span>, <span style="color:#0600FF;font-weight:bold;">null</span><span style="color:#008000;">&#041;</span><span style="color:#008000;">;</span><br />
&nbsp; <span style="color:#008000;">&#125;</span></p>
<p>&nbsp; <span style="color:#0600FF;font-weight:bold;">public</span> <span style="color:#0600FF;font-weight:bold;">static</span> MvcHtmlString SimpleCheckbox<span style="color:#008000;">&#040;</span><span style="color:#0600FF;font-weight:bold;">this</span> HtmlHelper helper, <span style="color:#6666cc;font-weight:bold;">string</span> name, <span style="color:#6666cc;font-weight:bold;">bool</span> @<a style="color:#000060;" href="http://www.google.com/search?q=checked+msdn.microsoft.com"><span style="color:#008000;">checked</span></a><span style="color:#008000;">&#041;</span><br />
&nbsp; <span style="color:#008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color:#0600FF;font-weight:bold;">return</span> SimpleCheckbox<span style="color:#008000;">&#040;</span>helper, name, @<a style="color:#000060;" href="http://www.google.com/search?q=checked+msdn.microsoft.com"><span style="color:#008000;">checked</span></a>, <span style="color:#0600FF;font-weight:bold;">null</span><span style="color:#008000;">&#041;</span><span style="color:#008000;">;</span><br />
&nbsp; <span style="color:#008000;">&#125;</span></p>
<p>&nbsp; <span style="color:#0600FF;font-weight:bold;">public</span> <span style="color:#0600FF;font-weight:bold;">static</span> MvcHtmlString SimpleCheckbox<span style="color:#008000;">&#040;</span><span style="color:#0600FF;font-weight:bold;">this</span> HtmlHelper helper, <span style="color:#6666cc;font-weight:bold;">string</span> name, <span style="color:#6666cc;font-weight:bold;">bool</span> @<a style="color:#000060;" href="http://www.google.com/search?q=checked+msdn.microsoft.com"><span style="color:#008000;">checked</span></a>, <span style="color:#6666cc;font-weight:bold;">object</span> htmlAttributes<span style="color:#008000;">&#041;</span><br />
&nbsp; <span style="color:#008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color:#0600FF;font-weight:bold;">return</span> SimpleCheckbox<span style="color:#008000;">&#040;</span>helper, name, @<a style="color:#000060;" href="http://www.google.com/search?q=checked+msdn.microsoft.com"><span style="color:#008000;">checked</span></a>, <a style="color:#000060;" href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color:#008000;">new</span></a> RouteValueDictionary<span style="color:#008000;">&#040;</span>htmlAttributes<span style="color:#008000;">&#041;</span><span style="color:#008000;">&#041;</span><span style="color:#008000;">;</span><br />
&nbsp; <span style="color:#008000;">&#125;</span></p>
<p>&nbsp; <span style="color:#0600FF;font-weight:bold;">public</span> <span style="color:#0600FF;font-weight:bold;">static</span> MvcHtmlString SimpleCheckbox<span style="color:#008000;">&#040;</span><span style="color:#0600FF;font-weight:bold;">this</span> HtmlHelper helper, <span style="color:#6666cc;font-weight:bold;">string</span> name, <span style="color:#6666cc;font-weight:bold;">bool</span> @<a style="color:#000060;" href="http://www.google.com/search?q=checked+msdn.microsoft.com"><span style="color:#008000;">checked</span></a>, IDictionary<span style="color:#008000;">&lt;</span><span style="color:#6666cc;font-weight:bold;">String</span>, <span style="color:#6666cc;font-weight:bold;">Object</span><span style="color:#008000;">&gt;</span> htmlAttributes<span style="color:#008000;">&#041;</span><br />
&nbsp; <span style="color:#008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color:#6666cc;font-weight:bold;">string</span> attributes <span style="color:#008000;">=</span> <span style="color:#6666cc;font-weight:bold;">string</span><span style="color:#008000;">.</span><span style="color:#0000FF;">Empty</span><span style="color:#008000;">;</span><br />
&nbsp; &nbsp; <span style="color:#0600FF;font-weight:bold;">if</span> <span style="color:#008000;">&#040;</span>htmlAttributes <span style="color:#008000;">!=</span> <span style="color:#0600FF;font-weight:bold;">null</span> <span style="color:#008000;">&amp;&amp;</span> htmlAttributes<span style="color:#008000;">.</span><span style="color:#0000FF;">Count</span> <span style="color:#008000;">&gt;</span> <span style="color:#FF0000;">0</span><span style="color:#008000;">&#041;</span><br />
&nbsp; &nbsp; &nbsp; attributes <span style="color:#008000;">=</span> htmlAttributes<span style="color:#008000;">.</span><span style="color:#0000FF;">Aggregate</span><span style="color:#008000;">&#040;</span>attributes, <span style="color:#008000;">&#040;</span>current, htmlAttribute<span style="color:#008000;">&#041;</span> <span style="color:#008000;">=&gt;</span> current <span style="color:#008000;">+</span> <span style="color:#6666cc;font-weight:bold;">string</span><span style="color:#008000;">.</span><span style="color:#0000FF;">Format</span><span style="color:#008000;">&#040;</span><span style="color:#666666;">&quot; {0}=<span style="color:#008080;font-weight:bold;">\&quot;</span>{1}<span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span>, htmlAttribute<span style="color:#008000;">.</span><span style="color:#0000FF;">Key</span>, htmlAttribute<span style="color:#008000;">.</span><span style="color:#0000FF;">Value</span><span style="color:#008000;">&#041;</span><span style="color:#008000;">&#041;</span><span style="color:#008000;">;</span></p>
<p>&nbsp; &nbsp; var s <span style="color:#008000;">=</span> <span style="color:#6666cc;font-weight:bold;">string</span><span style="color:#008000;">.</span><span style="color:#0000FF;">Format</span><span style="color:#008000;">&#040;</span><span style="color:#666666;">&quot;&lt;input type=<span style="color:#008080;font-weight:bold;">\&quot;</span>checkbox<span style="color:#008080;font-weight:bold;">\&quot;</span> name=<span style="color:#008080;font-weight:bold;">\&quot;</span>{0}<span style="color:#008080;font-weight:bold;">\&quot;</span> id=<span style="color:#008080;font-weight:bold;">\&quot;</span>{0}<span style="color:#008080;font-weight:bold;">\&quot;</span>{1}{2}/&gt;&quot;</span>, name, @<a style="color:#000060;" href="http://www.google.com/search?q=checked+msdn.microsoft.com"><span style="color:#008000;">checked</span></a> <span style="color:#008000;">?</span> <span style="color:#666666;">&quot; checked=<span style="color:#008080;font-weight:bold;">\&quot;</span>checked<span style="color:#008080;font-weight:bold;">\&quot;</span>&quot;</span> <span style="color:#008000;">:</span> <span style="color:#6666cc;font-weight:bold;">string</span><span style="color:#008000;">.</span><span style="color:#0000FF;">Empty</span>, attributes<span style="color:#008000;">&#041;</span><span style="color:#008000;">;</span><br />
&nbsp; &nbsp; <span style="color:#0600FF;font-weight:bold;">return</span> <a style="color:#000060;" href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color:#008000;">new</span></a> MvcHtmlString<span style="color:#008000;">&#040;</span>s<span style="color:#008000;">&#041;</span><span style="color:#008000;">;</span><br />
&nbsp; <span style="color:#008000;">&#125;</span><br />
<span style="color:#008000;">&#125;</span></div>
<p>(code formatted with <a href="http://quickhighlighter.com/code-syntax-highlighter.php">http://quickhighlighter.com/code-syntax-highlighter.php</a>, as I cannot currently use my normal utilities)</p>
<p>Using SimpleCheckbox is same as using normal ASP.NET MVC checkbox:</p>
<ul>
<li>@Html.SimpleCheckbox(&#8220;Active&#8221;) &#8211; renders normal checkbox, not checked.</li>
<li>@Html.SimpleCheckbox(&#8220;Active&#8221;, Model.Active) &#8211; checked if Model.Active is true, unchecked if not.</li>
<li>@Html.SimpleCheckbox(&#8220;Active&#8221;, Model.Active, new { @class = &#8220;mycheckboxclass&#8221; }) &#8211; adds CSS class (or other attributes) to the checkbox.</li>
</ul>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/programmeerimine/asp-net-mvc/'>ASP.NET MVC</a> Tagged: <a href='http://dukelupus.wordpress.com/tag/asp-net-mvc/'>ASP.NET MVC</a>, <a href='http://dukelupus.wordpress.com/tag/checkbox/'>Checkbox</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/941/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/941/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/941/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/941/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/941/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/941/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/941/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/941/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=941&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/06/27/asp-net-mvc-simple-checkbox-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2011/05/asp-net_-mvc_-logo_.gif" medium="image">
			<media:title type="html">asp.net_.mvc_.logo_.gif</media:title>
		</media:content>
	</item>
		<item>
		<title>ITL kutsub ära esindajad Eesti Interneti Sihtasutuse nõukogust</title>
		<link>http://dukelupus.wordpress.com/2011/06/22/itl-kutsub-ara-esindajad-eesti-interneti-sihtasutuse-noukogust/</link>
		<comments>http://dukelupus.wordpress.com/2011/06/22/itl-kutsub-ara-esindajad-eesti-interneti-sihtasutuse-noukogust/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 08:02:47 +0000</pubDate>
		<dc:creator>Sander</dc:creator>
				<category><![CDATA[Eesti]]></category>
		<category><![CDATA[Infotehnoloogia]]></category>

		<guid isPermaLink="false">http://dukelupus.wordpress.com/?p=935</guid>
		<description><![CDATA[Täna hommikul tuli uudis, et Eesti Infotehnoloogia ja Telekommunikatsiooni Liit kutsub oma esindajad ära Eesti Interneti Sihtasutuse nõukogust (Postimees, Delfi). Põhjendustena toodi ära suuresti sama, mida Eesti Interneti Kogukond on juba pea aasta aega rääkinud &#8211; sihtasutus kasutab ära oma monopoolset seisundit, määrates Eesti .ee domeenidele  ühe kalleima hinna Euroopas, seejuures on antud sihtasutuse kulud [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=935&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://dukelupus.files.wordpress.com/2010/05/eestiinternet-logo_.png" alt="Eesti Interneti SA logo" />Täna hommikul tuli uudis, et Eesti Infotehnoloogia ja Telekommunikatsiooni Liit kutsub oma esindajad ära Eesti Interneti Sihtasutuse nõukogust (<a href="http://www.e24.ee/478110/itl-kutsus-esindajad-eesti-interneti-sihtasutuse-noukogust-tagasi/">Postimees</a>, <a href="http://majandus.delfi.ee/news/uudised/itl-loobus-osalemast-eesti-interneti-sihtasutuse-noukogus.d?id=48261011">Delfi</a>).</p>
<p>Põhjendustena toodi ära suuresti sama, mida <a title="MTÜ Eesti Interneti Kogukond" href="http://kogukond.org/" rel="home">Eesti Interneti Kogukond</a> on juba pea aasta aega rääkinud &#8211; sihtasutus kasutab ära oma monopoolset seisundit, määrates Eesti .ee domeenidele  ühe kalleima hinna Euroopas, seejuures on antud sihtasutuse kulud üpriski ebaselged &#8211; et mitte öelda hämarad. Rääkimata täielikust infosulust &#8211; EIS keeldub tunnustamast isegi avaliku teabe seadust (<a href="http://www.andmemasin.eu/wp-content/uploads/2011/03/AKI-_Eesti_interneti_sihtasutus_peab_l%C3%A4htuma_avaliku_teabe_seadusest.pdf" target="_blank">pdf</a>).</p>
<p>Lisaks paistab et juhatus ei kuulanud ka nõukogu, soovides viimast näha pigem kummitemplina, mitte oma tegevuse suunajana. Nõukogu ei saanud isegi selgitusi domeenide tasumäära kujunemise kohta!</p>
<p>Mis saab edasi?</p>
<p>Loodetavasti ei õnnestu ETL&#8217;i esindajate avaldust mati alla lükata, nagu &#8220;suvalise&#8221; Kogukonna arvamusi. ETL on siiski EIS&#8217;i asutajaliige ja suht auväärsete liikmetega organisatsioon. Tahaks loota, et sihtasutuse juhatus (Marek-Andres Kauts ja  Jaak Lippmaa) astub ise tagasi. Sihtasutuse palgaliste töötajate arv langetatakse reaalselt vajaliku tasemeni (juhataja, sekretär, kaks serveriadminni) &#8211; kes kõik palgatakse avalike konkurssidega, mitte ei võeta kosmeetikust nõunikke Lõuna-Ameerika reisidele&#8230;</p>
<p>Ehk hakkab EIS&#8217;i finantstegevusega tegelema Finantsinspektsioon &#8211; ja vajadusel ka majanduspolitsei. Viimasel juhul peaks ka kogu selle käki kokkukeeraja &#8211; majandusminister Juhan Parts &#8211; kindlasti tagasi astuma.</p>
<p>Samas, rong on suuresti juba läinud. pri.ee on samahästi kui surnud, hauast tagasi seda ei too, ükskõik kui palju kretiinset &#8220;materjal on ju serverites alles&#8221; väidet ei korrataks. Paljud .ee domeenid on kadunud või kolinud .com ja .eu peale. Poole aasta pealt ilmselt domeeni hinda ka ei muudeta. Ehk saab miinimumina vähemalt avalikkus probleemist teadlikumaks.</p>
<p>Elame, näeme.</p>
<br />Filed under: <a href='http://dukelupus.wordpress.com/category/eesti/'>Eesti</a>, <a href='http://dukelupus.wordpress.com/category/infotehnoloogia/'>Infotehnoloogia</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dukelupus.wordpress.com/935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dukelupus.wordpress.com/935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dukelupus.wordpress.com/935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dukelupus.wordpress.com/935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dukelupus.wordpress.com/935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dukelupus.wordpress.com/935/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dukelupus.wordpress.com/935/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dukelupus.wordpress.com/935/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dukelupus.wordpress.com&amp;blog=627611&amp;post=935&amp;subd=dukelupus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dukelupus.wordpress.com/2011/06/22/itl-kutsub-ara-esindajad-eesti-interneti-sihtasutuse-noukogust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/312b17ed683479208431a90bf95dde9c?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">DukeLupus</media:title>
		</media:content>

		<media:content url="http://dukelupus.files.wordpress.com/2010/05/eestiinternet-logo_.png" medium="image">
			<media:title type="html">Eesti Interneti SA logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
