Sample Code for RDT Server

1 June 2005, 20:36

This is sample code implementating the RDT Protocol described before.

Continue reading

Posted in Open Source


The RDT Protocol

1 June 2005, 20:30

This is a draft of the RDT Protocol as Implemented by the Avaya Reliable Data Tranport Tool, which is used to collect CDR from the Definity System among other things.

I’ll be showing you code to implement this protocol.

Continue reading

Posted in Open Source
Comment [498]


TripleDES Encryption Using C#

24 March 2005, 16:02

C# TripleDES Encryption Class

This class works in VS.NET 2003, it can be modified to use a different kind of encryption, you would need to modify the constructor to change the type of encryption you wish to use.


Posted in Open Source


WaitForSound for Asterisk

24 March 2005, 15:58

WaitForSound Aplication

To use this application in asterisk you need to download it into the apps directory inside of the asterisk source, you also need to modify the Makefile in said directory so that waitforsound gets compiled as well, you might also find useful WaitForSilence, this application is included in the HEAD version of the asterisk cvs.


Posted in Open Source


Adding extra Languages to Textpattern's output

12 March 2005, 16:11

Well i finally got around and added english as a language for the content on this page, thanks to the way textpattern is constructed it was fairly easy to accomplish this.

First we create a page for each section we want in the other language, in my case english. we can copy the original into a language specific page

Next we add the sections we want in english, like “contactus-en”, “default-en” and “archive-en”, this in part of the way i have my site setup, i have miscellaneous articles in archive, my contact info in contactus, and the main page in default.

We then modify our pages to translate everything we have in our original language (spanish) into english for our new content.

Then we create the content (articles) with the info we want in english, like the welcome intro but in english with section set to default-en, our articles we want in english in archive-en, our contact info translated in contactus-en.

Categorization is an entirely different beast that we wont be addressing now.

And thus we can add sections and pages for any language we want, all thanks to the flexibility of textpattern.

Technorati :
Posted in Misc