AddOns for Firefox

Just so I can look it up later, if I need it: The following are some interesting addons for Firefox: FireGestures is a Firefox extension which enables you to execute various commands with six types of gestures. Speed Start Speed Dial & Start Page with flexible layout for fast access to sites via visual bookmarks … Continue reading AddOns for Firefox

GExperts RSS feed link now works

Jeroen Wiert Pluimers has notified me in his comment on Google+ that the RSS feed for GExperts related posts doesn't work. I apparently forgot a forward slash in the url: correct: http://blog.dummzeuch.de/category/gexperts/feed/ wrong: http://blog.dummzeuch.de/category/gexpertsfeed/ It's fixed now, sorry about that.

Adding a comment to an XML node

So I don't forget: Adding a comment to an existing IXMLNode is simple, once you find out how: [delphi] var CommentNode: IXMLNode; begin CommentNode := ParentNode.OwnerDocument.CreateNode('comment text', ntComment); ParentNode.ChildNodes.Add(CommentNode); [/delphi] This is documented in the DocWiki