February 2007 Archives

Optimus Keyboard

| | Comments (0) | TrackBacks (0)

If you ever forgot what your actual keyboard layout was or how you set the keys in your favourite game, this keyboard might be THE solution ! It always shows the current value for a key.

Qype Messages with Greasemonkey

| | Comments (0) | TrackBacks (0)

For quite some time I´m really enjoying to tag my city at [qype.com ](http://www.qype.com/)! But it is also really annoying to manage my qype messages. It is not possible to delete all messages at once.

So I remembered the good old [Greasemonkey](http://www.greasespot.net/) Plugin for Firefox. Greasemonkey executes own javascript code and makes changes to the site on-the-fly. My "Delete Qype Messages" script looks as follows:


var allLinks, thisLink;
var deleteAnchors = new Array();
allLinks = document.evaluate(
'//a[@href]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
for (var i = 0; i < allLinks.snapshotLength; i++) {
thisLink = allLinks.snapshotItem(i);
if(thisLink.href.indexOf("delete") != -1)
deleteAnchors.push(thisLink);
}
if(deleteAnchors.length>0){
if (confirm("Delete "+deleteAnchors.length+" Messages ?")){
for (var i = 0; i < deleteAnchors.length; i++) {
window.open(deleteAnchors[i],"_self");
}
}
}

You should also add a special block at the top, which describes meta data for this script:
// ==UserScript==
// @name Delete All Qype Messages
// @include http://www.qype.com/people/***USERNAME***/messages
// ==/UserScript==
And now install to your browser and enjoy
edit: It is possible that some editors change the quotation marks in the confirm expression during copy/paste from the browser.

SOA related

| | Comments (0) | TrackBacks (0)

Technologies from the last attended workshop on SOA and ESB.

SOA Domain Model Java Process Definition SAML BPEL J-SDO exlpained by BEA and IBM Micro Service Architecture XQuery

to be revisited….

About this Archive

This page is an archive of entries from February 2007 listed from newest to oldest.

January 2007 is the previous archive.

March 2007 is the next archive.

Find recent content on the main index or look in the archives to find all content.

Powered by Movable Type 4.0