redcrazykid
Member
Noticed when you zoom into a screenshot with this JavaScript code you can tell how the screen is working.
Code:
<html>
<body>
<head>
<style>
BODY { margin: 0px; padding: 0px; line-height: 1px; letter-spacing: -4px; font-family: Courier New; font-size 8px; }
</style>
<script>
a = 30;
for(i = 0;i < 10000;i++) {
if(Math.round(i / a) == i / a) {
document.write('<br /><br />');
}
document.write('-||-_|-_|_-_');
}
</script>
</body>
</html>