Hex string to byte array via sequences
3 people like thisPosted: 11 years ago by Gennady Loskutov
A simple function that nicely formats arrays of bytes. Useful in FSI or logging. byte array -> string seq Inspired by http://fssnip.net/hq, but optimized to become O(n).
3 people like thisPosted: 11 years ago by Vasily Kirichenko
Fetch EUR based currency rates of the day.
1 people like thisPosted: 8 years ago by Tuomas Hietanen
Simple functions to display a hex dump of a byte array using sequence expressions, with ASCII. Rewrote naive version that used string concat, based on optimizations in http://fssnip.net/ht, and cleaned up ASCII formatting.
2 people like thisPosted: 11 years ago by Matthew H. Traylor
Function that converts a base 10 number into a base 26 (digits from the English alphabet) one. A=1, B=2, ..., Z=0
1 people like thisPosted: 10 years ago by Lars Wilhelmsen