something along the lines of 7 different processors, and smp support made its programming a nightmare. (At least that's what I've read when rummaging around for programming docs).
I've recently installed mandrake 8.2 and the eula states that some of the sw is licensed differently, i.e. no free distribution (or something along those lines).
string first_name;
string last_name;
string address1;
string address2;
string city;
string state;
int zip;
int phone_number;
string MID;
string password;
string remarks;
date startdate;
date enddate;
string status;
int main()
{
int credit_card;
int mischief = rand(3);
string forget_this;
cout << "*AGENT*Read to customer:\n"
<< "Thank you for calling MSN member services.\n";
<< "My name is " << agent_name << endl
<< "For security reasons can I get the credit card "
<< "number associated with your account? ";
cin >> credit_card;
customer cust;
create_new_accounts(mischief);// from msn.h
do
{
cust = get_member_info(credit_card);
cout << endl;
<< "*AGENT* Read to customer:\n"
<< "What can I help you with today?\n\n"
<< "*AGENT* Do not read this!\n\n"
<< "1) New password\n"
<< "2) Update credit card\n"
<< "3) cancel account\n"
<< "4) unlock account\n"
<< "5) that's all\n"
<< "\n choice? ";
cin >> choice;
if (choice == 1)
{
cust.password = random_incomprehensible_garbage();
cout << "\nPassword set to: " << cust.password;
cout << "\nMay take up to " << mischeif
<< " days to take effect."
}
if (choice == 3)
{
cout << "Reason for cancellation? ";
cin >> forget_this;
cout << "\nAccount is now cancelled,"
<< "cancellation #: ";
cout >> rand(99999999);
cust.enddate = today + mischief;
cust.status = active;
}
if (choice == 4)
{
cout << "\nIn order to unlock this account, "
<< "please enter credit card number.\n";
cin >> credit_card;
create_new_accounts(mischief);
cust.status = active;
}
} while (choice < 5);
return 0;
}
Re:Slashdotted already? {ot}
on
SuSE 7.3 vs XP
·
· Score: 1
<flashback>
I belive it was:
The time has come, the walrus said, to speak of many things. Of shoes and ships and sealing wax, of cabbages and kings. if the sea is boiling hot or whether pigs have wings.
something along the lines of 7 different processors, and smp support made its programming a nightmare. (At least that's what I've read when rummaging around for programming docs).
and as dialup I am consistantly getting 48-52kbps (except out in the "sticks", where my parent's copper is rather poor)
I use MSN for the following reasons:
:)
1) I used to support MSN (I know, gag!) so I know all the ins and outs
2) It runs surprisingly well in linux (no client needed)
3) Multiple dialup locations: I can visit all my relatives and still get online with my laptop
so, hence, they aren't all that bad.
Also, you don't need to use outlook, you can log in through hotmail.com, or don't use their email, just the access.
my midi jukebox uses refresh, but to most people its useless. :)
they blow up only if you use too fast of media [slashdot]
I've recently installed mandrake 8.2 and the eula states that some of the sw is licensed differently, i.e. no free distribution (or something along those lines).
#include <iostream.h>
// from msn.h
#include <stdlib.h>
#include <msn.h>
struct customer
{
int credit_card;
string first_name;
string last_name;
string address1;
string address2;
string city;
string state;
int zip;
int phone_number;
string MID;
string password;
string remarks;
date startdate;
date enddate;
string status;
int main()
{
int credit_card;
int mischief = rand(3);
string forget_this;
cout << "*AGENT*Read to customer:\n"
<< "Thank you for calling MSN member services.\n";
<< "My name is " << agent_name << endl
<< "For security reasons can I get the credit card "
<< "number associated with your account? ";
cin >> credit_card;
customer cust;
create_new_accounts(mischief);
do
{
cust = get_member_info(credit_card);
cout << endl;
<< "*AGENT* Read to customer:\n"
<< "What can I help you with today?\n\n"
<< "*AGENT* Do not read this!\n\n"
<< "1) New password\n"
<< "2) Update credit card\n"
<< "3) cancel account\n"
<< "4) unlock account\n"
<< "5) that's all\n"
<< "\n choice? ";
cin >> choice;
if (choice == 1)
{
cust.password = random_incomprehensible_garbage();
cout << "\nPassword set to: " << cust.password;
cout << "\nMay take up to " << mischeif
<< " days to take effect."
}
if (choice == 2)
{
cout << "\nNew Credit card number?\n";
cin >> cust.credit_card;
create_new_accounts(mischief);
}
if (choice == 3)
{
cout << "Reason for cancellation? ";
cin >> forget_this;
cout << "\nAccount is now cancelled,"
<< "cancellation #: ";
cout >> rand(99999999);
cust.enddate = today + mischief;
cust.status = active;
}
if (choice == 4)
{
cout << "\nIn order to unlock this account, "
<< "please enter credit card number.\n";
cin >> credit_card;
create_new_accounts(mischief);
cust.status = active;
}
} while (choice < 5);
return 0;
}
<flashback>
I belive it was:
The time has come, the walrus said, to speak of many things. Of shoes and ships and sealing wax, of cabbages and kings. if the sea is boiling hot or whether pigs have wings.
Thanks Mr. Wetherell!
</flashback>
If Microsoft devoured Sonic, I don't know if I could stomach it.