135 projects tagged "Windows"
Archive2iso takes a directory tree and randomizes the files in the tree to stripe the files across several ISO files that can be archived or burned off to a CD. The ISO files are generated by calling the CDiso.pm module. It reads an array generated by an INCLUDE LIST so the ISO file can be made with mkisofs. The intended use is to stripe files across multiple CD/DVD randomly so if one disc is damaged all the files that were in the same directory will not be lost since files are spread across multiple disks. The actual files themselves are not split; all files remain in their original state.
lcra renames filenames like COMMAND.COM and MAIN.C to more tasteful ones like command.com and main.c. It tries to guess which filenames are DOS-ish ones needing changing, and which are really meant to be uppercase. It will fix the contents of a directory and all subdirectories. The companion program nsra changes spaces in filenames to underscores.
n-ary Huffman Template Algorithm allows any kind of weights (costs, frequencies), including non-numerical ones. The {0, 1, ..., n-1} alphabet is used to encode messages. The built tree is an n-ary one. The algorithm is based on a set of template classes: Cell(SYMBOL, WEIGHT), Node(SYMBOL, WEIGHT), InternalNode (SYMBOL, WEIGHT), TerminalNode(SYMBOL, WEIGHT), BasicHuffmanTree(SYMBOL, WEIGHT, ARY), LoadedHuffmanTree(SYMBOL, WEIGHT, ARITY), and DriedHuffmanTree(WEIGHT, ARITY).
Autodl2 is a simple to manage and extensible file transfer system that can be configured simply using a configuration file. The system is designed to be lightweight and handle multiple file transfer protocols. Currently only SFTP is supported, though other systems can be added via a plugin system.