View n2b.py
#!/usr/bin/python
import sys
bytes = []
for l in sys.stdin:
for part in l.strip().split():
bytes.append(chr(int(part)))
print ''.join(bytes),
View index.html
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<style>
div .tests {
float: none;
margin:auto;
text-align: center;
View index.html
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {