Posted: Sat Mar 03, 2007 7:13 am
Do you saw the project named "Cooperative Linux" ? It allows (somehow) to run linux distribution under Windows XP kernel
inflater
inflater
Nothing like staying upto date.Candy wrote:I read that in a book explaining Windows NT 3.51.Tyler wrote:This is true for current Windows, Vista does have special classes of program now that boost depending on there action, there as a link to a website explaining it in a recent post.
Is it really important to stay up to date about things you can't expect to change? It's the same in Vista as in NT 3.51. They didn't get a complaint -> no change.Tyler wrote:Nothing like staying upto date.Candy wrote:I read that in a book explaining Windows NT 3.51.Tyler wrote:This is true for current Windows, Vista does have special classes of program now that boost depending on there action, there as a link to a website explaining it in a recent post.
Don't forget he old, get a complaint -> do **** all because people don't even realise they can not have windows.Candy wrote:Is it really important to stay up to date about things you can't expect to change? It's the same in Vista as in NT 3.51. They didn't get a complaint -> no change.Tyler wrote:Nothing like staying upto date.Candy wrote: I read that in a book explaining Windows NT 3.51.
Tea doesn't contain c8h10n4o2 does it? It was a different substance, right?Alboin wrote:Is all the quoting necessary? Really, your right below the person your quoting, who only has one sentence. This is quite irrelevant....Why am I writing this....More tea....
c8h10n4o2 is caffeine. Therefore, tea contains it. Tea is my friend....Candy wrote:Tea doesn't contain c8h10n4o2 does it? It was a different substance, right?
Coffee contains caffeine.. And I like waking up to a nice cup of coffee...Alboin wrote:c8h10n4o2 is caffeine. Therefore, tea contains it. Tea is my friend....Candy wrote:Tea doesn't contain c8h10n4o2 does it? It was a different substance, right?
HOORAY!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! (And I started this topic )Brynet-Inc wrote: Hooray for off topic conversations?
Code: Select all
/* printf("Welcome to Windows 3.1"); */
/* printf("Welcome to Windows 3.11"); */
/* printf("Welcome to Windows 95"); */
/* printf("Welcome to Windows NT 3.0"); */
/* printf("Welcome to Windows 98"); */
/* printf("Welcome to Windows NT 4.0"); */
printf("Welcome to Windows 2000");
Yup, that about covers the complexity of Microsoft's products..GLneo wrote:for keeping up to date...Code: Select all
/* printf("Welcome to Windows 3.1"); */ /* printf("Welcome to Windows 3.11"); */ /* printf("Welcome to Windows 95"); */ /* printf("Welcome to Windows NT 3.0"); */ /* printf("Welcome to Windows 98"); */ /* printf("Welcome to Windows NT 4.0"); */ printf("Welcome to Windows 2000");
Code: Select all
char *ver[] = {
"3.1",
"3.11",
"95",
"NT 3.0",
"98",
"NT 4.0",
"2000",
"XP",
"Vista"
};
printf("Welcome to Windows %s", ver[8]);
Now thats evolution!!Alboin wrote:No no, I hear Vista is much different:Code: Select all
char *ver[] = { "3.1", "3.11", "95", "NT 3.0", "98", "NT 4.0", "2000", "XP", "Vista" }; printf("Welcome to Windows %s", ver[8]);
Code: Select all
char *ver[] = {
"3.1",
"3.11",
"95",
"NT 3.0",
"98",
"NT 4.0",
"2000",
"XP",
"Vista"
};
printf("Welcome to Windows %s", &(ver + 8));
Code: Select all
char *ver_user[] = {
"3.1",
"3.11",
"95",
"98",
"Me"
};
char *ver_company[] = {
"NT 3.0",
"NT 4.0",
"2000",
"XP",
"Vista"
};
printf("Welcome to Windows %s", (os==user) ? ver_user[ver] : ver_company[ver]);