Loki.yggdrasill.info


Mail for Trash

Posted in General by Loki on the April 23rd, 2008

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

GPGP for Win and others

Posted in General by Loki on the April 23rd, 2008

Here you can found a package for Windows encryption

http://www.gpg4win.org

Or encrypt the whole disk?

http://www.truecrypt.org/

Own Javadoc Tags

Posted in development, java by Loki on the August 3rd, 2007

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 and try this parameters on javadoc execution -taglet CustomTag -tagletpath /path/to/tagletExt.jar in this example I use no package for the CustomTag class, so the taglet is CustomTag without package prefix

See also for more:

Funny Windows Tools

Posted in General by Loki on the May 2nd, 2007

Today my colleague shows me some funny diagnostic tools from MS, like process and thread observer or net monitors … may be interesting …

Setting up SVN

Posted in General by Loki on the March 3rd, 2007

Based on the tutorial from http://svn.spears.at here the short version for my personal usage:

  1. download an install
    1. actual version of SVN from subversion.tigris.org/ser...tDocumentList?folderID=91
    2. Version 2.0.x of Apache Server http://httpd.apache.org/download.cgi
  2. create reposetory folders
    1. $ mkdir project1
    2. $ svnadmin create project1
    3. $ vi subversion.conf
    4. $ vi svn-acl
    5. restart apache

for more details see the original on http://svn.spears.at

futile hyperlink

Posted in General by Loki on the November 17th, 2006

Firefox RC1: Search like vi

Posted in General by Loki on the September 29th, 2006

Now it is possible to open the search bar with SHIFT + 7… vi users will be happy ;-) And use SHIFT + ALT + … for website related shortcuts, like ALT + S to save -> ALT + SHIFT + S

Mediawiki Random Extension

Posted in development, php by Loki on the September 25th, 2006

Finaly I have finished a new Mediawiki extension for Random content intigration, for more details read the infromation page

Search Shortcuts in FF

Posted in development by Loki on the July 10th, 2006

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 ) : “g wood” and it will preform a search to “wood” on google. If you say, that is what I need for my own searches, it is very easy. Find out the search string, like “http://www.yourDomain.com/search/Wood” and replace the word you are searching for with “%s“, create a new Link on the Quickserachfolder (e.g. “http://www.yourDomain.com/search/%s” ) and set a Keyword like “yd” for “yourDomain” and now you can preform short search querys like “yd house” or “yd winter”

Ergonomics & Userinterfaces

Posted in UNI by Loki on the July 10th, 2006
Next Page »