Earlier quoted context omitted.
Wow, isn’t there a really low probability of finding your phone number in the first 200m digits of pi? (0.09995% in first 100m) I’m tempted to start throwing a dictionary of phone numbers through this pi lookup to find your number, call you, and verify, I think you could quickly narrow in on your phone number given the information above.
I think you'll have trouble. Assuming the first digit of the phone number is somewhere between 114.5 million and 115.5 million, you have 1 million potential 11 digit numbers to check. There are 10^11 sequences with 11 digits. The number of people in the USA is 3×10^8, and we can assume there is roughly 1 number per person (some people don't have a phone number and some people have more than one, but it turns out that…
A bootable CD image with a retro game in a single tweet
111–120 of 150 posts
Re: A bootable CD image with a retro game in a single tweet
#112Re: A bootable CD image with a retro game in a single tweet
#113Earlier quoted context omitted.
http://www.angio.net/pi/ My 11 digit phone number occurs around the 115 millionth digit, a grand saving of two digits.
Wow, isn’t there a really low probability of finding your phone number in the first 200m digits of pi? (0.09995% in first 100m) I’m tempted to start throwing a dictionary of phone numbers through this pi lookup to find your number, call you, and verify, I think you could quickly narrow in on your phone number given the information above.
Re: A bootable CD image with a retro game in a single tweet
#114Re: A bootable CD image with a retro game in a single tweet
#115Your snake game doesn't even have food for the snake to eat? The snake just grows without eating, until the head collides with the tail somewhere? Pssh, amateur hour... /s (Just kidding this is actually super cool.)
My first thought was to make random sectors of the first hard drive the "food"... For better or for worse, this stuff really brings me back to my teens. Nice job!
Re: A bootable CD image with a retro game in a single tweet
#116Earlier quoted context omitted.
Further irony: this page weighs over 30MBs , thanks to a huge GIF that is arguably not necessary for the article.
Yeah, not happy about that idiocy (probably 1MB as video) burning through 10% of my monthly bandwidth on the first day of the month...
Sadly, because of the "HTTPS everywhere!!!11" thing, such a service would not be viable (it would need to rewrite the to a in order to work, of course).
Re: A bootable CD image with a retro game in a single tweet
#117Earlier quoted context omitted.
Same. I come here to witness what is basically programming magic to me. I'll need a couple of life times before I can become this skilled.
You can do “magic” with relatively easy things. For example, spend a weekend with https://forthsalon.appspot.com or processing.org and see where you can get to...
Re: A bootable CD image with a retro game in a single tweet
#118Earlier quoted context omitted.
Yeah, not happy about that idiocy (probably 1MB as video) burning through 10% of my monthly bandwidth on the first day of the month...
You just made me think of a GIF-to-mp4 conversion service that runs as a proxy. Sadly, because of the "HTTPS everywhere!!!11" thing, such a service would not be viable (it would need to rewrite the to a in order to work, of course).
Many web services will take an uploaded gif and turn it to webm before showing it, e.g. Twitter.
Re: A bootable CD image with a retro game in a single tweet
#119Earlier quoted context omitted.
Linux vs BSD (ie Mac OS X). Sorry about that. Also, you shouldn’t paste weird looking things from the internet in your console :P
yeah paste it into your plain text editor first and then do a code review and then save it to a jump drive and spin up the old backup computer that’s been wiped clean and then open up a sandboxed vm and then remove the wifi chip and then run it
Re: A bootable CD image with a retro game in a single tweet
#120Earlier quoted context omitted.
There’s a comment on the page. For some reason, emulators (at least the ones I tried) wait 4x what real machines wait when you use BIOS int 15b 86h. You can tweak the code if you want to play at a faster speed. There’s probably a sound explanation for this discrepancy...
I can't say I entirely understand how the Elapsed Time Wait works, but testing in qemu, I was able to get it to a good speed by replacing the inc cl with a nop inc dx By opening in a hex editor, finding bf86 fec1 and replacing with bf86 9042 If you're on a very slow system, maybe just use 2 nops or a 2-byte nop.
"bf86 9042" made it literally so fast I physically couldn't keep up. The following worked for me (w/ QEMU on old (no KVM) Pentium M), this may be too fast on newer machines:
xxd cd.iso | sed 's/89c3 01de b486 fec1 cd15 b445/89c3 01de b486 9042 cd15 b445/' | xxd -r > cd2.iso
(Note the creation of "> cd2.iso")