<?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"
	>

<channel>
	<title>Loki.yggdrasill.info</title>
	<atom:link href="http://loki.yggdrasill.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://loki.yggdrasill.info</link>
	<description>Lokis Blog</description>
	<pubDate>Fri, 30 Jan 2009 11:46:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Mail for Trash</title>
		<link>http://loki.yggdrasill.info/2008/04/23/mail-for-trash/</link>
		<comments>http://loki.yggdrasill.info/2008/04/23/mail-for-trash/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 15:31:45 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/?p=47</guid>
		<description><![CDATA[Sometimes it can be useful to have a mail you can enter in forms which is yours for only a few minutes
http://10minutemail.com]]></description>
			<content:encoded><![CDATA[<p>Sometimes it can be useful to have a mail you can enter in forms which is yours for only a few minutes</p>
<p><a href='http://10minutemail.com' target="_blank">http://10minutemail.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2008/04/23/mail-for-trash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GPGP for Win and others</title>
		<link>http://loki.yggdrasill.info/2008/04/23/gpgp-for-win-and-others/</link>
		<comments>http://loki.yggdrasill.info/2008/04/23/gpgp-for-win-and-others/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 15:14:58 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/?p=48</guid>
		<description><![CDATA[Here you can found a package for Windows encryption
http://www.gpg4win.org
Or encrypt the whole disk?
http://www.truecrypt.org/]]></description>
			<content:encoded><![CDATA[<p>Here you can found a package for Windows encryption</p>
<p><a href='http://www.gpg4win.org' target="_blank">http://www.gpg4win.org</a></p>
<p>Or encrypt the whole disk?</p>
<p><a href='http://www.truecrypt.org/' target="_blank">http://www.truecrypt.org/</a></p>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2008/04/23/gpgp-for-win-and-others/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Own Javadoc Tags</title>
		<link>http://loki.yggdrasill.info/2007/08/03/own-javadoc-tags/</link>
		<comments>http://loki.yggdrasill.info/2007/08/03/own-javadoc-tags/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 19:20:09 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[development]]></category>

		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2007/08/03/own-javadoc-tags/</guid>
		<description><![CDATA[To apply your own javadoc tags, you need only a actual JDK and specially the interface com.sun.tools.doclets.Taglet. Implement this and add a method register like the following:

public static void register(Map tagletMap) {
CustomTag tag = new CustomTag();
Taglet t = (Taglet) tagletMap.get(tag.getName());
if (t != null) {
tagletMap.remove(tag.getName());
}
tagletMap.put(tag.getName(), tag);
}
then you can pack your new taglet class to an jar [...]]]></description>
			<content:encoded><![CDATA[<p>To apply your own javadoc tags, you need only a actual JDK and specially the interface <code>com.sun.tools.doclets.Taglet</code>. Implement this and add a method <code>register</code> like the following:<br />
<code><br />
public static void register(Map tagletMap) {<br />
CustomTag tag = new CustomTag();<br />
Taglet t = (Taglet) tagletMap.get(tag.getName());<br />
if (t != null) {<br />
tagletMap.remove(tag.getName());<br />
}<br />
tagletMap.put(tag.getName(), tag);<br />
}</code></p>
<p>then you can pack your new taglet class to an jar and try this parameters on javadoc execution <code>-taglet CustomTag -tagletpath /path/to/tagletExt.jar</code> in this example I use no package for the CustomTag class, so the taglet is CustomTag without package prefix</p>
<p>See also for more:</p>
<ul>
<li>Javadoc <a href='http://java.sun.com/javase/6/docs/jdk/api/javadoc/taglet/com/sun/tools/doclets/Taglet.html' target="_blank">java.sun.com/javase/6/doc...tools/doclets/Taglet.html</a></li>
<li>Taglet Overview <a href='http://java.sun.com/javase/6/docs/technotes/guides/javadoc/taglet/overview.html' target="_blank">java.sun.com/javase/6/doc...adoc/taglet/overview.html</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2007/08/03/own-javadoc-tags/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Funny Windows Tools</title>
		<link>http://loki.yggdrasill.info/2007/05/02/funny-windows-tools/</link>
		<comments>http://loki.yggdrasill.info/2007/05/02/funny-windows-tools/#comments</comments>
		<pubDate>Wed, 02 May 2007 11:04:25 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2007/05/02/funny-windows-tools/</guid>
		<description><![CDATA[Today my colleague shows me some funny diagnostic tools from MS, like process and thread observer or net monitors &#8230; may be interesting &#8230;

microsoft.com/technet/sysinternals/default.mspx
]]></description>
			<content:encoded><![CDATA[<p>Today my <span>colleague shows me some funny diagnostic tools from MS, like process and thread observer or net monitors &#8230; may be interesting &#8230;</span></p>
<ul>
<li><span><a href='http://www.microsoft.com/technet/sysinternals/default.mspx' target="_blank">microsoft.com/technet/sysinternals/default.mspx</a></span></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2007/05/02/funny-windows-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Setting up SVN</title>
		<link>http://loki.yggdrasill.info/2007/03/03/setting-up-svn/</link>
		<comments>http://loki.yggdrasill.info/2007/03/03/setting-up-svn/#comments</comments>
		<pubDate>Sat, 03 Mar 2007 19:36:02 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2007/03/03/setting-up-svn/</guid>
		<description><![CDATA[Based on the tutorial from http://svn.spears.at here the short version for my personal usage:

 download an install

actual version of SVN from subversion.tigris.org/ser...tDocumentList?folderID=91
Version 2.0.x of Apache Server http://httpd.apache.org/download.cgi


create reposetory folders

$ mkdir project1
$ svnadmin create project1
$ vi subversion.conf
$ vi svn-acl
restart apache



for more details see the original on http://svn.spears.at]]></description>
			<content:encoded><![CDATA[<p>Based on the tutorial from <a href='http://svn.spears.at' target="_blank">http://svn.spears.at</a> here the short version for my personal usage:</p>
<ol>
<li> download an install
<ol>
<li>actual version of SVN from <a href='http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91' target="_blank">subversion.tigris.org/ser...tDocumentList?folderID=91</a></li>
<li>Version <strong>2.0.x</strong> of Apache Server <a href='http://httpd.apache.org/download.cgi' target="_blank">http://httpd.apache.org/download.cgi</a></li>
</ol>
</li>
<li>create reposetory folders
<ol>
<li>$ mkdir project1</li>
<li>$ svnadmin create project1</li>
<li>$ vi subversion.conf</li>
<li>$ vi svn-acl</li>
<li>restart apache</li>
</ol>
</li>
</ol>
<p>for more details see the original on <a href='http://svn.spears.at' target="_blank">http://svn.spears.at</a></p>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2007/03/03/setting-up-svn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>futile hyperlink</title>
		<link>http://loki.yggdrasill.info/2006/11/17/sinnlose-links/</link>
		<comments>http://loki.yggdrasill.info/2006/11/17/sinnlose-links/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 11:05:50 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2006/11/17/sinnlose-links/</guid>
		<description><![CDATA[
http://www.director-online.de/
]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.director-online.de/" target="_blank" target="_blank"><a href='http://www.director-online.de/' target="_blank">http://www.director-online.de/</a></a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2006/11/17/sinnlose-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox RC1: Search like vi</title>
		<link>http://loki.yggdrasill.info/2006/09/29/firefox-rc1-search-like-vi/</link>
		<comments>http://loki.yggdrasill.info/2006/09/29/firefox-rc1-search-like-vi/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 01:31:04 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2006/09/29/firefox-rc1-search-like-vi/</guid>
		<description><![CDATA[Now it is possible to open the search bar with SHIFT + 7&#8230; vi users will be happy  And use SHIFT + ALT + &#8230; for website related shortcuts, like ALT + S to save -> ALT + SHIFT + S]]></description>
			<content:encoded><![CDATA[<p>Now it is possible to open the search bar with SHIFT + 7&#8230; vi users will be happy <img src='http://loki.yggdrasill.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> And use SHIFT + ALT + &#8230; for website related shortcuts, like ALT + S to save -> ALT + SHIFT + S</p>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2006/09/29/firefox-rc1-search-like-vi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mediawiki Random Extension</title>
		<link>http://loki.yggdrasill.info/2006/09/25/mediawiki-random-extension/</link>
		<comments>http://loki.yggdrasill.info/2006/09/25/mediawiki-random-extension/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 14:43:09 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[development]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2006/09/25/mediawiki-random-extension/</guid>
		<description><![CDATA[Finaly I have finished a new Mediawiki extension for Random content intigration, for more details read the infromation page]]></description>
			<content:encoded><![CDATA[<p>Finaly I have finished a new Mediawiki extension for Random content intigration, for more details read the <a href="http://loki.yggdrasill.info/randomarea/" target="_blank" target="_blank">infromation page</a></p>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2006/09/25/mediawiki-random-extension/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Shortcuts in FF</title>
		<link>http://loki.yggdrasill.info/2006/07/10/search-shortcuts-in-ff/</link>
		<comments>http://loki.yggdrasill.info/2006/07/10/search-shortcuts-in-ff/#comments</comments>
		<pubDate>Mon, 10 Jul 2006 20:30:44 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2006/07/10/search-shortcuts-in-ff/</guid>
		<description><![CDATA[Firefox and other Mozzila based browsers supports the feature to define a shortcut for searches. Like, you type in the adress field (shortcut: STRG + L ) : &#8220;g wood&#8221; and it will preform a search to &#8220;wood&#8221; on google. If you say, that is what I need for my own searches, it is very [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox and other Mozzila based browsers supports the feature to define a shortcut for searches. Like, you type in the adress field (shortcut: STRG + L ) : &#8220;g wood&#8221; and it will preform a search to &#8220;wood&#8221; on google. If you say, that is what I need for my own searches, it is very easy. Find out the search string, like &#8220;http://www.yourDomain.com/search/Wood&#8221; and replace the word you are searching for with &#8220;<strong>%s</strong>&#8220;, create a new Link on the Quickserachfolder (e.g.  &#8220;http://www.yourDomain.com/search/<strong>%s</strong>&#8221; ) and set a Keyword like &#8220;yd&#8221; for &#8220;yourDomain&#8221; and now you can preform short search querys like &#8220;yd house&#8221; or &#8220;yd winter&#8221;</p>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2006/07/10/search-shortcuts-in-ff/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ergonomics &#038; Userinterfaces</title>
		<link>http://loki.yggdrasill.info/2006/07/10/ergonomics-userinterfaces/</link>
		<comments>http://loki.yggdrasill.info/2006/07/10/ergonomics-userinterfaces/#comments</comments>
		<pubDate>Mon, 10 Jul 2006 20:27:01 +0000</pubDate>
		<dc:creator>Loki</dc:creator>
		
		<category><![CDATA[UNI]]></category>

		<guid isPermaLink="false">http://loki.yggdrasill.info/2006/07/10/ergonomics-userinterfaces/</guid>
		<description><![CDATA[Here a short link collection for ergonomics and userinterfaces in german:

http://www.sozialnetz.de/ca/ph/het/
BildscharbV - Einzelnorm
http://kommdesign.de/texte/din.htm
user.meduni-graz.at/andre...rteilung_Lernsoftware.pdf
]]></description>
			<content:encoded><![CDATA[<p>Here a short link collection for ergonomics and userinterfaces in german:</p>
<ul>
<li><a href='http://www.sozialnetz.de/ca/ph/het/' target="_blank">http://www.sozialnetz.de/ca/ph/het/</a></li>
<li><a href="http://www.gesetze-im-internet.de/bildscharbv/anhang_8.html" target="_blank" target="_blank">BildscharbV - Einzelnorm</a></li>
<li><a href='http://kommdesign.de/texte/din.htm' target="_blank">http://kommdesign.de/texte/din.htm</a></li>
<li><a href='http://user.meduni-graz.at/andreas.holzinger/holzinger%20de/papers%20de/Beurteilung_Lernsoftware.pdf' target="_blank">user.meduni-graz.at/andre...rteilung_Lernsoftware.pdf</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://loki.yggdrasill.info/2006/07/10/ergonomics-userinterfaces/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

