Hugo Relearn Theme Customization

The HUGO Relearn theme has one outstanding feature as it fully supports file mode, which means that there is no web server required to get access to the web site content. Continue reading...

CATScript - Questions answered

Questions and answers, all around CATScript programming. Continue reading...

CATScript - CustomDialogClass

This CATScript shows how to implement a custom dialog window other than MsgBox and InputBox - freely programmable and customizable. The dialog is based on a HTA:Application and in combination with wshell and mshta.exe. Continue reading...

CATScript - CustomMessenger Class

CATScript OOP programming Object-oriented programming (OOP) is not so frequently used for CATScript macros. This is why I’d like to present some code for a generic OOP class here mainly to see how it looks like and what the benefits and possible drawbacks are. Continue reading...

Object Oriented Programming with CATScript

Object-Oriented-Programming with CATScript Object-oriented programming (OOP) is not commonly used in CATScript macros, or at least, there is not so much information and sample-code available on the web or in various books and documentation I looked at. However, CATScript - similar to VBS - does support class declarations, so there is no excuse for an adventurous programmers to not use it. Continue reading...

Notepad++ "Function List" for CATScript

This is a guide on how to enable the “Function List” feature in Notepad++ when editing CATScript source code files.

Continue reading...

QLOCKTWO - Javascript Version

QLOCKTWO - Javascript version Build in pure html, css and javascript. No images were used. It supports five languages (english, german, french, italian and spanish) and you can change the color. Full screen mode... ● ● ● ● en | de | fr | it | es Credits QLOCKTWO from Biegert & Funk (http://qlocktwo. Continue reading...

Tcl/tk HelpViewer widget based on Tkhtml 3.0

HelpViewer - a tcl/tk widget The helpviewer widget represents the core functionality for for the helpviewer application. The functionality is based on Tkhtml3.0 (shared library) and subsequently on the html3widget (tcl/tk source package). Usage: After download, the package might not run out of the box. Continue reading...

Create Markdown Table of Content

Create Markdown Table of Content A small utility function to create a table of content section at the beginning of a markdown file. Purpose Let’s assume the following work-flow: Usually I use a text editor (preferable with code highlighting for the markdown syntax) for text-writing. Continue reading...

Recursive directory listing for Hugo

How to program a recursive directory listing I came across the idea to create a summary page showing all files which are stored in a directiory down below Hugo’s /static folder. Here is a brief description of how such a shortcode could be implemented. Continue reading...