|
|
|
|
|
by alexandercrohde
3742 days ago
|
|
Or, there's a 1-million times better way to do this with a good library. In javascript for example FA('0...11'.split('')).chunk(8)
.map(x => parseInt(x.join(''), 2))
.map(x=>String.fromCharCode(x))
.filter(x=>x!=' ')
.reverse() https://github.com/anfurny/Fancy |
|