
<?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>Research and Destroy &#187; Web</title>
	<atom:link href="http://research-and-destroy.de/blog/cat/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://research-and-destroy.de/blog</link>
	<description>... using advanced technology</description>
	<lastBuildDate>Sun, 18 Dec 2011 22:38:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>The Google StreetView incident</title>
		<link>http://research-and-destroy.de/blog/2010/10/27/the-google-streetview-incident/</link>
		<comments>http://research-and-destroy.de/blog/2010/10/27/the-google-streetview-incident/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 15:06:51 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/?p=347</guid>
		<description><![CDATA[As almost everybody knows by now, Google has recorded d [...]]]></description>
			<content:encoded><![CDATA[<p>As almost everybody knows by now, Google has recorded data from unprotected WIFI networks everywhere (<a href="http://www.fr-online.de/digital/street-view--e-mails-und-passwoerter-gespeichert/-/1472406/4773232/-/index.html" title="Frankfurter Rundschau">Frankfurter Rundschau</a>, <a href="http://www.reuters.com/article/idUSTRE69L4KW20101022" title="reuters.com">Reuters</a>). They wanted to record some stuff to get additional accuracy when determining the location of mobile devices in cities. This is pretty useful in large cities where only a few GPS satellites are visible to the device. They claim to have recorded some data by accident, due to a software error. This data includes emails, passwords and lots of other personal data. This is a bad thing, I suppose.</p>
<p>The press writes a lot about this topic, and especially here in germany this release quite a storm of outrage about the evil internet company which wants to know everything about us. Even the german minister of consumer protection, <a href="http://de.wikipedia.org/wiki/Ilse_Aigner" title="Ilse Aigner on de.wikipedia.org">Ilse Aigner (german)</a>, got involved. She already has a colorful history with Mark Zuckerberg about privacy issues concerning <a href="http://www.facebook.com">facebook.com</a> where she threatened the world she will delete here profile there if nothing happens.</p>
<p>My opinion to all this stuff is: If you leave your network visible, or don&#8217;t use encryption, it&#8217;s your own fault! <em>EVERYBODY</em> could walk down the street with a laptop and record traffic of unencrypted networks. So why harass Google about it if people are simply too lazy to even care about their information? Sure, a scan for SSIDs in the vicinity should have been enough, but so what. Same goes for the insurgence about photographs of the houses for Street View itself. If you don&#8217;t want your house to be seen from the street, build a wall around it, or grow a hedge. I might come by with my 12 megapixel camera and take a photo. Hell, I might even put that photo on the <em>internet</em>!!</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2010/10/27/the-google-streetview-incident/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto implement MySQL&#8217;s OLD_PASSWORD() in Java</title>
		<link>http://research-and-destroy.de/blog/2010/07/23/howto-implement-mysqls-old_password-in-java/</link>
		<comments>http://research-and-destroy.de/blog/2010/07/23/howto-implement-mysqls-old_password-in-java/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 19:30:12 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[legacy]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[OLD_PASSWORD]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/?p=200</guid>
		<description><![CDATA[Like most Software Engineers I don't have the luxury to [...]]]></description>
			<content:encoded><![CDATA[<p>Like most Software Engineers I don&#8217;t have the luxury to start with an <em>greenfield strategy</em>. Most times we know a good and viable solution to a problem, but cannot implement it due to restrictions which come with legacy systems and stuff out of our control. </p>
<p>Recently I had to migrate Newsletter subscribers to a newly created subscription system which uses an <a href="http://www.oracle.com/us/products/database/index.html" title="Oracle Databases">Oracle Database</a> (I would have preferred <a href="http://www.postgresql.org/" title="PostgreSQL">PostgreSQL</a>) rather than a <a href="http://www.mysql.com/" title="MySQL database">MySQL</a>, as the old system does.</p>
<p>Programmers are lazy, and as expected the developers of the old system used the <code><a href="http://dev.mysql.com/doc/refman/5.1/en/encryption-functions.html#function_old-password" title="OLD_PASSWORD in the MySQL Reference Manual">OLD_PASSWORD(str)</a></code> function from the database available to hash the password entered by the user. This is a very convenient way to protect the users&#8217; login credentials, but rather bad when migrating to another system which has different or none implementations of this functionality. So what do we do? The options are:</p>
<ul>
<li>Send every user a new password. Bad, we don&#8217;t want to harass them with our technical issues.</li>
<li>Force them to set a new password when they log in the next time. <em>See above</em></li>
<li>Try to find a solution to validate the password against the old password hash.</li>
</ul>
<p>As MySQL is widely used and a lot of data migration happens to and from, someone must have been run in this issue already, and most likely there is a solution to this problem in the net. And there is. I found a reimplementation of the <code>OLD_PASSWORD()</code> function in <em>C#</em> at <a href="http://www.yourhelpcenter.de/2009/06/mysql-alten-md5-hash-in-c-berechnen-16-stellig/" title="C# implementation of OLD_PASSWORD()">yourhelpcenter.de</a> (attention, german) and together with my coworker Maurice we ported it to Java, resulting in this piece of code:</p>
<p><code>
<pre>public static String mysqlOldPassword(byte[] password) {
        int[] result = new int[2];
        int nr = 1345345333;
        int add = 7;
        int nr2 = 0x12345671;
        int tmp;

        int i;
        for (i = 0; i < password.length; i++) {
            if (password[i] == ' ' || password[i] == '\t')
                continue;

            tmp = (int) password[i];
            nr ^= (((nr &#038; 63) + add) * tmp) + (nr << 8);
            nr2 += (nr2 << 8) ^ nr;
            add += tmp;
        }

        result[0] = nr &#038; ((1 << 31) - 1);
        int val = ((1 << 31) - 1);
        result[1] = nr2 & val;
        String hash = String.format("%08x%08x",result[0],result[1]);
        return hash.toLowerCase();
    }</pre>
<p></code></p>
<p>I give no guarantee this will work in all cases. My IDE complains all over the place about possible integer overflows. The usage of <code>Integer.toHexString()</code>did not work either, as the resulting String is not padded up with zeroes.</p>
<p>Finally, some Unit Tests for the interested user: </p>
<p>
<pre>    @Test
    public void testOldPassword() throws Exception {
        final String expected = "0414ac6137ee1adc";
        byte[] bytes = "fooo".getBytes("UTF8");
        String foo = mysqlOldPassword(bytes);
        assertEquals(expected, foo);
    }

    @Test
    public void testOldPassword2() throws Exception {
        final String expected = "3fa0dce62ba931b5";
        byte[] bytes = "hastewas".getBytes("UTF8");
        String foo = mysqlOldPassword(bytes);
        assertEquals(expected, foo);
    }</pre>
</p>
<p>Have fun with it!</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2010/07/23/howto-implement-mysqls-old_password-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iPad &#8211; OMFG!!! The iPad!!!</title>
		<link>http://research-and-destroy.de/blog/2010/05/01/the-ipad-omfg-the-ipad/</link>
		<comments>http://research-and-destroy.de/blog/2010/05/01/the-ipad-omfg-the-ipad/#comments</comments>
		<pubDate>Sat, 01 May 2010 20:53:36 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iSlate]]></category>
		<category><![CDATA[Tablet Computer]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2010/05/01/the-ipad-omfg-the-ipad/</guid>
		<description><![CDATA[Ok, jeder schreibt und bloggt über dieses komische iPa [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, jeder schreibt und bloggt über dieses komische iPad, das irgendwie alles können soll, oder auch irgendwie nicht. Und jetzt bietet sich mir die verführerische Gelegenheit dieses Ding mal auszuprobieren. Dann kann man ja auch Mal ein paar Absätze drüber schreiben, oder? Also dann:</p>
<p><a href="http://research-and-destroy.de/blog/wp-content/uploads/2010/05/20100427_006.jpg"><img class="alignleft size-large wp-image-171" title="Mit dem iPad auf dem Balkon" src="http://research-and-destroy.de/blog/wp-content/uploads/2010/05/20100427_006-1024x575.jpg" alt="" width="430" height="242" /></a>Als aller erstes fällt mir auf dass der Safari auf dem iPad es nicht hinbekommt den WYSIWYG-Editor von meinem Blog hier richtig darzustellen. Das ist natürlich ziemlich doof wenn man bloggen will, und man nicht einmal den Fokus auf das Eingabefeld setzen kann&#8230; Und die Eingabe im Code-Modus ist genau so schlimm, denn man muss zwischen drei Modi der On-Screen-Tastatur hin- und herspringen um nur ein blödes Paragraph-Element zu öffnen oder zu schließen. Ebenso komisch ist es Umlaute zu tippen: hierzu muss man einfach länger auf dem a bleiben, um ein ä (oder andere Abwandlungen davon) zu bekommen. Für iPhone User ist das natürlich Usus und perfekt, die waren noch nie was anderes gewohnt. Fazit: Die Tastatur ist soweit nicht schlecht, aber effizient mit 10 Fingern erfordert Übung. Zumindest mehr als man an einem Abend rumspielen schafft. Auch wenn die Tastatur auf dem Bildschirm in etwa so breit wie die eines Laptops ist, der Winkel ist meiner Meinung alles andere als bequem und ich kann mir nur mit viel Fantasie vorstellen mit dem Gerät auf dem Schoß lange Emails zu tipppen.</p>
<p>So, nach zwei Absätzen der Pein bin ich jetzt wieder auf die gewohnte Tastatur meines Laptops umgestiegen. Nach den zwei Absätzen auf dem iPad hat sich doch eine gewissen Routine eingestellt. Ich konnte schon halbwegs blind tippen und sogar Umlaute gingen relativ intuitiv. Ebenso das Positionieren des Cursors im Text, wenn man sich vertippt hatte, sowie Copy &amp; Paste. Auch wenn das alles schön und gut ist, und mit längerer Verwendung die Eingabe noch flüssiger geht: die fehlenden Umlaute auf der Tastatur (was natürlich dem Format geschuldet ist) stören den Fluss bei der Eingabe doch erheblich, und der ständige Modi-Wechsel für Ziffern oder Sonderzeichen ebenso. Soviel mal zur Texteingabe.</p>
<p>Mit dem mitgelieferten Safari hatte ich auch meinen Spaß. Wie weiter oben schon erwähnt weigert er sich den WordPress-WYSIWYG Editor benutzbar darzustellen. Selbiges sind mir mit einigen weiteren AJAX-Webseiten aufgefallen. So war es mir unmöglich den Google Reader zu steuern, sowohl in der Mobil- als auch in der Full-Fledged Variante. Auch wenn es solche Anwendungen sicher gute Programme für das iPad gibt sollte ein Browser doch zumindest reine HTML5+AJAX Funktionalitäten unterstützen, was Apple ja in seiner <a href="http://www.apple.com/hotnews/thoughts-on-flash/">öffentlichen Diskussion mit Adobe</a> bezüglich der Unterstützung von Flash auf Apples mobilem Betriebssystem ja als unterstützenswerte Standards angibt. Apple mutiert was sowas angeht tatsächlich zu einem kleinen Goliath.</p>
<p>Die restlichen Navigation ist Apple-typisch absolut intuitiv. Des öfteren habe ich mich über kurze Auswahl-Seiten wie z.B. im iTunes Laden gewundert, um dann festzustellen dass man da auch nach unten scrollen kann. Der Scrollbar (oder eine &#8220;Positionsanzeige&#8221;) wird beim Scrollen (und nur dann!) über dem Inhalt dargestellt. Diese Darstellung kenne ich auch von meinem N900, jedoch wird dort beim Laden der Seite im Browser der Balken immer eingeblendet, wird dann ausgeblendet, aber beim Scrollen auch wieder Sichtbar. Gut, das ist nicht wirklich wichtig, ich bin dieser Unzulänglichkeit aber auf den Leim gegangen.</p>
<div style="float: left; margin: 10px;"><a title="What the iPad really is!" rel="attachment wp-att-162" href="http://research-and-destroy.de/blog/2010/05/01/the-ipad-omfg-the-ipad/what-the-ipad-really-is/"><img src="http://research-and-destroy.de/blog/wp-content/uploads/2010/01/what_the_ipad_really_is.thumbnail.jpg" alt="What the iPad really is!" /></a></div>
<p>So, mal von der Eingabe weg zur Hardware. Unabhängig davon ist das ganze schon ein sehr beeindruckendes Gerät. Absolut sexy Format. Es fühlt sich, ohne jetzt in den Apple-Fanboy-Talk verfallen zu wollen, einfach alles Richtig an. Auch wenn es prinzipiell nur vier aneinander-geklebte iPhones sind&#8230;</p>
<p>Mein Fazit ist demnach: Alles in allem ist das iPad ein <em>typisches</em> Apple Gerät: Hard- und Software sind qualitativ hochwertig, es fühlt sich gut an und erfüllt seinen Zweck. Wie die meisten anderen Apple-Produkte unterliegt das Gerät und die Software natürlich den Apple-Typischen Restriktionen: Nur Software aus dem App-Store von Apple, den Dock-Connector als einzige, proprietäre Schnittstelle. Hiermit haben sich die Apple-Fan-Boys/-Girls ja schon abgefunden. Das heisst: Wenn man ein kleines Surf-Brett für den Balkon oder das Bett, oder ein kleines Gerät für die tägliche Arbeiten wie Mails checken oder kleinere Dokumente schreiben haben will, und natürlich zum Zocken, kann sich die Anschaffung ernsthaft überlegen. Ich bin noch unentschlossen ob ich sowas brauche.</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2010/05/01/the-ipad-omfg-the-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dan The Man!</title>
		<link>http://research-and-destroy.de/blog/2010/04/21/dan-the-man/</link>
		<comments>http://research-and-destroy.de/blog/2010/04/21/dan-the-man/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 10:59:05 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[relationship]]></category>
		<category><![CDATA[videogames]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2010/04/21/dan-the-man/</guid>
		<description><![CDATA[How true ...

 [...]]]></description>
			<content:encoded><![CDATA[<p>How true &#8230;</p>
<p style="text-align: center;"><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/SEVU-YLpM8A&#038;hl=de_DE&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/SEVU-YLpM8A&#038;hl=de_DE&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2010/04/21/dan-the-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Compatibility Fail</title>
		<link>http://research-and-destroy.de/blog/2009/09/12/browser-compatibility-fail/</link>
		<comments>http://research-and-destroy.de/blog/2009/09/12/browser-compatibility-fail/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 12:53:16 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[browser compatibility]]></category>
		<category><![CDATA[epic fail]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2009/09/12/browser-compatibility-fail/</guid>
		<description><![CDATA[I'm known to be a big fan of last.fm. Though I'm no sub [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m known to be a big fan of <a href="http://last.fm/" title="last.fm homepage">last.fm</a>. Though I&#8217;m no subscriber I found a lot of new bands I did not know before.</p>
<p>The more interested I was when I found out about <a href="http://steereo.de/" title="steereo.de homepage">steereo.de</a>, a new and somewhat similar service comming from germany. They, integrated a nice player bar at the bottom of their page, and over all it&#8217;s a pretty <em>funky</em> page. Not, as tidy as last.fm, but it will work.</p>
<p>The most interesting part of this all is: They didn&#8217;t want to let me on their page. I think I use a pretty recent browser for my day-to-day portion of web surfing, but not as new as they want me to: </p>
<div><a href='http://research-and-destroy.de/blog/wp-content/uploads/2009/09/steereo-fail.png' title='Steereo JS Browser compatibility check.'><img src='http://research-and-destroy.de/blog/wp-content/uploads/2009/09/steereo-fail.thumbnail.png' alt='Steereo JS Browser compatibility check.' /></a></div>
<p>As it seems, they just support recent versions IE + FF, but no Safari. I thought we&#8217;ve passed this to implement major browser-dependend tweaks in our pages. As it seems I was wrong.</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2009/09/12/browser-compatibility-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copyright 2.0</title>
		<link>http://research-and-destroy.de/blog/2009/07/08/copyright-20/</link>
		<comments>http://research-and-destroy.de/blog/2009/07/08/copyright-20/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:51:59 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[legal]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2009/07/08/copyright-20/</guid>
		<description><![CDATA[Everyone knows about the recent conviction of the Pirat [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone knows about the recent conviction of the Piratebay-crew. Even if we have to see whether, or how long, it will last. (You know, the <em>probably</em> biased judge&#8230;) </p>
<p>At least this trial might make some of us think about copyright and such things. There is a <strong>hudge</strong> discrepancy between what the crowd does and what the IP organizations want us to do. Once more I think Lawrence Lessig brings it to the point best:</p>
<p><embed src="http://blip.tv/play/lG326zWBolM" type="application/x-shockwave-flash" width="590" height="460" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>In the analog times you had to buy book, a newspaper or a disk to gain access to the story or the song. So, making copies of books or songs was actually hard work back then. Nowadays, creating copies of digital content is easy peasy. In fact, everytime you <em>view</em> a digital content from the web, you actually <em>get a copy</em>. </p>
<p>Bug they will never understand&#8230;</p>
<p>Via <a href="http://www.techdirt.com/" title="Techdirt.">Techdirt.</a></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2009/07/08/copyright-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visualization</title>
		<link>http://research-and-destroy.de/blog/2009/06/09/visualization/</link>
		<comments>http://research-and-destroy.de/blog/2009/06/09/visualization/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 14:15:07 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2009/06/09/visualization/</guid>
		<description><![CDATA[Recently I found the pretty cool package logstalgia on  [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I found the pretty cool package <a href="http://code.google.com/p/logstalgia/" title="Logstalgia on google code">logstalgia</a> on <a href="http://debaday.debian.net/2008/10/05/logstalgia-pong-like-apache-log-viewer/" title="DebianTimes article about logstalgia">Debian Times</a>. It is a nice way to visualize access logs of your favorite http daemon as a pong game, every bullet being a single request, listed by client. You can also get into pause mode and view details to the single requests. But see for yourself: </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/BYYX-h4-dpM&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=es&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/BYYX-h4-dpM&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=es&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Awesome, somehow. Isn&#8217;t it?</p>
<p>Now, Facebook went one step further by displaying all activities in the facebook network on a globe, distinguishing events by colors, and stuff. The project is named Palantir, like the crystal ball from <em>LOTR</em> which Saruman used as means of communication with Sauron. <a href="http://www.facebook.com/video/video.php?v=37403547074&#038;ref=nf" target="new" title="Palantir demo video on facebook.com">See the demo video.</a> Most astonishing: Palantir is implemented using JavaME!</p>
<p>This all looks pretty neat. Facebook users mentioned that <em>Google</em> has something similar to visualize searches for years, and even my old employer <em>CortalConsors</em> visualized all trades with volume and location in the lobby for about 2-3 years! But still, the Facebook Palantir awesome!</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2009/06/09/visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The way</title>
		<link>http://research-and-destroy.de/blog/2008/12/16/121/</link>
		<comments>http://research-and-destroy.de/blog/2008/12/16/121/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 11:11:40 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2008/12/16/121/</guid>
		<description><![CDATA[I just found some interesting slides from the AJAX in A [...]]]></description>
			<content:encoded><![CDATA[<p>I just found some interesting slides from the <a href="http://createordie.de/ajaxinaction/" title="AJAX in Action homepage">AJAX in Action</a> conference. IMO this is where we need to go: </p>
<div style="width:425px;text-align:left" id="__ss_710286"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/wolframkriesing/architectures-for-scaling-ajax-presentation?type=powerpoint" title="Architectures For Scaling Ajax">Architectures For Scaling Ajax</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=architectures-for-scaling-ajax-1225481209211093-9&#038;stripped_title=architectures-for-scaling-ajax-presentation" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=architectures-for-scaling-ajax-1225481209211093-9&#038;stripped_title=architectures-for-scaling-ajax-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View SlideShare <a style="text-decoration:underline;" href="http://www.slideshare.net/wolframkriesing/architectures-for-scaling-ajax-presentation?type=powerpoint" title="View Architectures For Scaling Ajax on SlideShare">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/uxebu">uxebu</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/presentation">presentation</a>)</div>
</div>
<p><img style="visibility:hidden;width:0px;height:0px;" border=0 width=0 height=0 src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyMjk*MjU3MzIyMzkmcHQ9MTIyOTQyNTc2ODE2NCZwPTEwMTkxJmQ9Jmc9MiZ*PSZvPTEyNjIyNmY4ZGEzNjRiZTJiYTdhMjYzMjMwYWFiY2Yw.gif" /></p>
<p>There are more interesting slides on these topics <a href="http://blog.uxebu.com/2008/11/19/slides-from-the-ajax-in-action/" title="uxebu homepage">here at uxebu.com</a>.</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2008/12/16/121/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How real this statement is!</title>
		<link>http://research-and-destroy.de/blog/2008/12/11/how-real-this-statement-is/</link>
		<comments>http://research-and-destroy.de/blog/2008/12/11/how-real-this-statement-is/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 12:54:53 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2008/12/11/how-real-this-statement-is/</guid>
		<description><![CDATA[
Thanks, Jens. [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://research-and-destroy.de/blog/wp-content/uploads/2008/12/bigthree.jpg' alt='The Big Three!' /></p>
<p>Thanks, Jens.</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2008/12/11/how-real-this-statement-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fake MacBooks in circulation</title>
		<link>http://research-and-destroy.de/blog/2008/11/28/fake-macbooks-in-circulation/</link>
		<comments>http://research-and-destroy.de/blog/2008/11/28/fake-macbooks-in-circulation/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 14:04:11 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2008/11/28/fake-macbooks-in-circulation/</guid>
		<description><![CDATA[Some weeks ago Apple introduces its latest line of lapt [...]]]></description>
			<content:encoded><![CDATA[<p>Some weeks ago Apple introduces its latest line of laptop-computers. There are already fakes around. The first sign could be the apple on the lit: some fakes don&#8217;t have the bite in the fruit. Others are better and you will know the difference only by checking all ports on the computer.</p>
<p><a href='http://research-and-destroy.de/blog/wp-content/uploads/2008/11/214973132_3485c31381_o1.jpg' title='Fake MacBook without bite.'><img src='http://research-and-destroy.de/blog/wp-content/uploads/2008/11/214973132_3485c31381_o1.jpg' alt='Fake MacBook without bite.' /></a></p>
<p><a href='http://research-and-destroy.de/blog/wp-content/uploads/2008/11/faelschung.jpg' title='Fake MacBook with bite.'><img src='http://research-and-destroy.de/blog/wp-content/uploads/2008/11/faelschung.jpg' alt='Fake MacBook with bite.' /></a></p>
<p>Via <a href="http://www.maclife.de/index.php?module=pagesetter&#038;func=viewpub&#038;tid=1&#038;pid=10660" title="MacLife article">MacLife</a>, <a href="http://domanske.de/2006/08/gefalschte-macbooks-im-umlauf/" title="domanske.de article">domanske.de</a> and <a href="http://www.apfeltalk.de/forum/attachment.php?attachmentid=8579&#038;d=1155624954" tilte="Apfeltalk Attatchment">Apfeltalk</a>. </p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2008/11/28/fake-macbooks-in-circulation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Klingons in Software Development</title>
		<link>http://research-and-destroy.de/blog/2008/07/02/klingons-in-software-development/</link>
		<comments>http://research-and-destroy.de/blog/2008/07/02/klingons-in-software-development/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 11:46:17 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2008/07/02/klingons-in-software-development/</guid>
		<description><![CDATA[Some Klingon software developers were overheard ... [...]]]></description>
			<content:encoded><![CDATA[<p>Some Klingon software developers were <a href="http://www.klingon.org/resources/klingon_software_team.html" title="Klingon Software Developers overheard">overheard</a> &#8230;</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2008/07/02/klingons-in-software-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Banking?</title>
		<link>http://research-and-destroy.de/blog/2008/06/13/web-20-banking/</link>
		<comments>http://research-and-destroy.de/blog/2008/06/13/web-20-banking/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 13:34:41 +0000</pubDate>
		<dc:creator>makii</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://research-and-destroy.de/blog/2008/06/13/web-20-banking/</guid>
		<description><![CDATA[Being incorporated in a bank (again), I just wonder how [...]]]></description>
			<content:encoded><![CDATA[<p>Being incorporated in a bank <i>(again)</i>, I just wonder how all this web development stuff around me continues to evolve. Working for a financial information website, being taken over by a bank was pretty hard to avoid eventually, but of course might benefit both parties involved.</p>
<p>The more I&#8217;m eager to see what kind of web applications the new guys want to do with their web-banking and -trading applications now they have aquired an internet company. Now with the first wave of integration of the two web sites passed pretty smoothly, and the rebranding and accomodating redesign of the two websites rolled out, we&#8217;re ready for furthermore tasks to accomplish. Let&#8217;s see what comes next.</p>
<p>Interesting in this context is a article by <a href="http://www.finextra.com/fullstory.asp?id=18544">finextra</a> I stubled over at <a href="http://cometdaily.com/2008/06/06/web-20-and-banking/">cometdaily</a>. The article tells about X topics I want to comment A survey by <a href="http://myworklight.com/">WorkLight</a> which questioned 1000 facebook users, </p>
<ul>
<li>whether or not they&#8217;d want or use Web 2.0 widgets or applications for their day-to-day online banking in Facebook or other launchpads</li>
<li>whether they would consider switching to another bank to get such features.</li>
</ul>
<p>The main message is</p>
<blockquote><p>New research has found that around half of Facebook users would use Web 2.0 applications for online banking, while a quarter would even consider switching banks to obtain Web 2.0 services.</p></blockquote>
<p>The <em>switching</em> part is the one my boss would be especially interested in I guess. </p>
<p>The article goes on: </p>
<blockquote><p>Commenting on the survey findings, David Lavenda, VP, marketing and product strategy, Worklight, says: “To lose a quarter of your customers to competitors who have provided secure Web 2.0 banking would bear a significant impact on existing business. This is particularly true at a time when financial services companies are struggling to retain and acquire customers in a market that saturated with new competitors and countless new offerings.”</p></blockquote>
<p>That&#8217;s true. In my experience numbers of new customer are much more interesting to management than the figures of the current customers&#8217; activity. As you gain new customers, a certain percentage will have a fair amount of activity in trading and other products, another just won&#8217;t. These shares, once established, are rather stable. Clearly, the more new ones you get, the more active customers will be there. </p>
<p>Well, despite I like fancy Web 2.0 applications like Google Mail, and I clearly can see the point in gaining a customer base by offering nifty tools,  but integrating my account statement and credit card bills into a portal like Facebook&#8230; Are they insane? Especially facebook is a nice platform for staying in contact with your friends, and doing froody Web 2.0 community stuff, whatever it is. But sharing financial spendings like that in a community, especially in this one sounds like a red rag, doesn&#8217;t it?</p>
<p>But surely there seems to be a market for this. We only have to take a look at Pages like <a href="http://www.wesabe.com/">wesabe</a> or <a href="http://www.mint.com/">mint</a>. Users can sync up somehow their account statements, credit card data and other stuff, get in analyzed, charted and stuff. The feature set sounds really nice, knowing one and for all where all the hard-earned money goes til the end of the month. Tagging spendings at certain locations, getting recommendations where to get this type of commodity cheaper or better elsewhere and discussing financial decisions with peers in the same situation.</p>
<p>Someone should do something like that here in Europe or Germany. It&#8217;ll be hard though, as for one, here in the old world it&#8217;s not so common to buy your take-away coffee or a pack of chewing gum with your credit card, so it&#8217;ll be hard for us to get the kind of complete and detailled listings like shown in the <a href="http://www.wesabe.com/page/tour">wesabe merry-go-round</a>. On the other hand sharing financial data on this level with people I don&#8217;t know &#8230; I don&#8217;t know if there are a lot people here which will accept that easily. On the other hand we share every kind of information on the net: What music do I listen to? Where did I go party last weekend? What&#8217;s the best indian restaurant in town? Why not anticipate where I spend my money from my bills and compare them to the ones of other people?</p>
<p>What do you think?</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://research-and-destroy.de/blog/2008/06/13/web-20-banking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

