README 989 B

12345678910111213141516171819202122232425262728293031323334
  1. Whatchamacallit
  2. ===============
  3. Miscellaneous command-line utilities to do various small tasks. They're split
  4. up into different libraries so they can be installed individually, but also
  5. kept in a single repo because they're all tiny.
  6. All these are licensed under the WTFPL.
  7. RSAPair/
  8. --------
  9. A single RSAPair executable that produces a hex-encoded public/private key
  10. pair on stdout. In Haskell; cabalized.
  11. EscapedString/
  12. -----------
  13. Reads in stdin and produces an escaped string on stdout with surrounding
  14. quotation marks, in particular by converting it to a JSON string and emitting
  15. it. In Haskell; cabalized.
  16. YAMLize/
  17. --------
  18. Two programs, one ToYAML which converts JSON on stdin to YAML on stdout, and
  19. one FromYAML, which goes vice versa. May not round-trip correctly because of
  20. the semantics of the GHC Yaml library. In Haskell; cabalized.
  21. expseq/
  22. -------
  23. A rough analogue of seq for generating exponentially increasing numbers rather
  24. than sequentially. In C; has Makefile.