Quoter is a simple tool (filter) that takes HTML, XML, or SGML files as input and sends them back out as output with their quotation marks fixed. It handles Microsoft's non-standard quotes, typical Unix conventions (`` and ''), and straight single and double quotes. It knows to leave untouched anything in comments, scripts, or tags.
RC is a dialect of C that adds safe, region-based memory management to C. Region-based memory management allocates objects in a program-specified region. Objects cannot be freed individually; instead regions are deleted with all their contained objects. RC is safe, since for each region, r, it maintains a reference count of the number of external pointers to objects in r (i.e. of pointers not stored within r). Deleting a region with a non-zero reference count causes a runtime error (abort). RC's compiler, rcc, is based on gcc.
Respell converts English text between the American, British, and Canadian spelling conventions. It prompts the user for cases where more than one target spelling could be chosen for a source word. It can also create a 'universal' spelling which can be automatically converted to any of the three without loss of information.
Revert sets back timestamps on files if they have not changed. If a source file has identical content to a destination file but the destination's modification time is newer, the mtime is set back to the same as the source. This can save time when using make(1) and generated files, for example. Usage is like cp(1).
Make category names unambiguous This is a good move, but the 'Programming languages' category should be renamed to 'Implemented using languages: ' or something unambiguous. Sim...
Huge screenshots That first screenshot of the fm2 interface is 200 kilobytes big - huge, considering it's mostly white space! You would cut your bandwidth bill by taking more care to create sm...
Re: Licensing It's a mistake if that slips through. It's our editorial policy that, in general, a project's description should not replicate information found in its Trove catego...
Licensing I think it would be a good idea to keep the licence information structured rather than free-form tags. If there is a list of licences, then each should be a checkbox so you can tick two ...
Re: Other LZMA tools I think you are right that the standalone 'lzma' program (replacing the older lzmash) has a very basic data format. But still, it works, and is the more established to...