linc186 said:If I were to preorder my pandora today, would i get it?
TitanUranus said:You are very likely to get it by October I'd say. I'd be damnably reluctant to comit myself to a specific year though...
thats...reassuring. :/Sphinxter said:linc186 said:If I were to preorder my pandora today, would i get it?
There, fixed that for you.
He's jokinglinc186 said:thats...reassuring. :/Sphinxter said:linc186 said:If I were to preorder my pandora today, would i get it?
There, fixed that for you.
And then in 2012 the world is going to end anyway so was it worth the wait?andmaz said:To keep it all fair you will get yours in 2012!!!!
Enjoy the wait
jutley said:And then in 2012 the world is going to end anyway so was it worth the wait?andmaz said:To keep it all fair you will get yours in 2012!!!!
Enjoy the wait
EvilDragon said:The Pandora will surely be the reason when the world ends in 2012.
It will happen as soon as the last one is delivered... then they'll all form a huge network collaboration... and then... muahahaa...
ITS A SIGN!First Baptist Church of Sun Lakes, Arizona....WELCOME!
CONTACT US: Phone: (480) 895-1088 9535 E. Riggs Rd Sun Lakes, AZ 85248. Dobson & Riggs Rd. Click for Map · Prayer List · Calendar · GriefShare · Education ...
#include <stdio.h>
#include <stdlib.h>
int main()
{
char skynet[] = "Skynet ";
char pandora[] = "Pandora";
for(int i=0; i < sizeof(pandora); i++){
printf("%d ", skynet[i] - pandora[i]);
}
printf("\n");
for(int i=0; i < sizeof(pandora); i++){
printf("%02X", skynet[i] - pandora[i]);
}
printf("\n");
};