Even with Google, trying to find a ROM to an old game can take some time. But if I knew that I could go to a place where I could legally buy the ROM, know it was a good quality one and not full of a virus or weird messages or something, I'd have no problem plunking down $6 for a game.
Look harder! It is possible to find DVD's stuffed full of MAME roms for free - just provide your own DVD-R and stamped address envelopes. That's what I did!
gcc is a symlink to whatever compliler you are currently using - so to go back to v3.1 just point it to gcc3. Similar stuff applies for g++.
Also Project Builder doesn't know about gcc3.3 without changing some of the compile options and will default to gcc2.95 so it is important to RTFM before updating!
John Carmack has had to write special code in Doom 3 to compensate for the NV30 core that doesn't like DX9 as much as it should. Go read some of his.plan files for proof.
Why would John Carmack have to compensate for DX9 inadequacies when he uses OpenGL? His last on topic.plan file was Jan 29 (Feb 7 is a plug for his wife's company and he seems to be busying himself with rockets ever since - message to JC give the rockets a rest and release DooM III) says:
At the moment, the NV30 is slightly faster on most scenes in Doom than the R300, but I can still find some scenes where the R300 pulls a little bit ahead. The issue is complicated because of the different ways the cards can choose to run the game.
So for OpenGL there is not much between them which is fine for all us *nix using/. readers where DX9 performance doesn't really matter.
Taht would be this guy and it looks like he's trying again. I hope he gets further than the last two attempts - he's never made it out of Scotland yet!
Richard E. Grant as Doctor Who shouldn't be wasted on animated web cartoons. This should be on the big screen as Withnail in fucking space! It's ideal - Withnail was already dressed up suitably as the doctor. It would certainly liven things up if the Doctor turns up drunk in Skaro demanding the finest wines known to humanity^W Dalek-kind. Another episode could have the doctor and assistant searching for 'matter' in the Tardis kitchen sink. Of course plastic bags wrapped around the feet would provide suiable protection from harsh alien environments.
"We developed lots of products under dos (mostly borland c++), and never want to again. We went through five major iterations of our tools under DOS, and they are all junk below our first iteration of NS tools. You can't really just point at specific things and claim superiority. It is the complete package hat has the appeal. NS is the best tool I have found for MY development work."
Re:Obviously fiction/fantasy
on
The Bug
·
· Score: 1
Build on NT with MSVC fptr.exe - 0 error(s), 0 warning(s) - Build on IRIX with SGI compiler $CC fptr.cpp "fptr.cpp", line 14: error(3381): a pointer to a bound function may only be used to call the function if(0 == f.return_zero) { ^
1 error detected in the compilation of "fptr.cpp". - Build on Solaris with SUN compiler $CC fptr.cpp "fptr.cpp", line 14: Error: Taking address of the bound function foo::return_zero(). 1 Error(s) detected. -
Isn't it nice when the compiler spots errors and saves you the bother of tracking them down?
Feynman's story was covering his hand with acetone and setting it alight. The theory being that the stuff burns really quick so it doesn't have time to heat your hand up. Except hairs == wicks == pain.
I bought a MDD G4 - my previous model was a 4400 with an overclocked upgrade card so I certainly needed something newer to run OS X! I'm not too bothered about the ghetto pimp drive doors as the machine lives on the floor under the desk. What I do care about are the handles and the easy access to the internals. Sounds like they're keeping the handles and I hope they don't lose any of the great internal design when they change the external appearance.
LOGO - I remember when 'turtles' were the fashionable thing to get kids interested in programming. You would tell this lump of plastic to go forwards, turn and draw. A bit of mad skillz and you could get the thing to do a star or some such. At least that was the teacher's intention but the turtle was on a large desk rather than the floor... Evil kids program the thing to go FORWARD 666 and look all innocent when it falls to the floor shattering its plastic case. An early lesson that programming control systems for real world objects needs more stringent QA than the average homebrew computer program - and shouldn't be done by kids.
Yes, AOL sends commercial messages to its members, but it doesn't spam the rest of the world too
Does the never ending stream of AOL CD's mailed in the post not count as spam? I agree with the OP - this is a case of carbonised kitchen utensils having an argument.
Yes you can add your fancy webcams etc, but they almost all gp through apple, and the os itself just has to worry about the base hardware: mainboard, CPU, RAM, HDD etc, now all of this is set by apple, so why inthe world does it crash. They know excatly the hardware it is going to run on, so why does it crash!!!
If the hardware requires a driver running in kernel space then it can crash the machine without Apple's involvement. The one thing that crashes my Mac is my Alcatel USB ADSL modem. If you pull the USB lead out you risk a kernel panic. This is all down to Alcatel's ineptitude at writing a kext and has nothing to do with Apple's code.
I do remember one of the 10.2.x releases had a problem moving directories into themselves so they do make mistakes - but by and large OS X is very reliable. They are also pretty quick at fixing their own bugs - the directory moving one only appeared in a single release. How long did it take Microsoft to fix the 'while (1) printf("\t\b\b");' bug?
I would love to have a 100% true version of the old Space Harrier, After Burner 2 and OutRun.
Can do that on MAME now but if you want to do it legally pick up a copy of SEGA AGES and a Saturn.
Even with Google, trying to find a ROM to an old game can take some time. But if I knew that I could go to a place where I could legally buy the ROM, know it was a good quality one and not full of a virus or weird messages or something, I'd have no problem plunking down $6 for a game.
Look harder! It is possible to find DVD's stuffed full of MAME roms for free - just provide your own DVD-R and stamped address envelopes. That's what I did!
Pong in Forth for Open Firware. It's about 450 lines of code but I'm sure it could be done in < 450 chars of PERL.
I reckon the RIAA caught her because she was running LawsuitXPress.
bash-2.05a$ gcc -v /usr/libexec/gcc/darwin/ppc/3.3/specs
Reading specs from
Thread model: posix
gcc version 3.3 20030304 (Apple Computer, Inc. build 1435)
bash-2.05a$
So, in essence, you'll be able to beat a bog standard $10,000 road going sportsbike if you've got a few hundred thousand to spend
Alternatively pray for rain and turn up in a 4WD sports car. BillG can use his 959 but a Subaru Impreza WRX ought to see off a bike in a monsoon.
The old compilers are still there. Take a look in /usr/bin and you will see them:
/usr/bin/gc* /usr/bin/gcc2 /usr/bin/gcc-3.3
bash-2.05a$ ls
/usr/bin/gcc
/usr/bin/gcc3
gcc is a symlink to whatever compliler you are currently using - so to go back to v3.1 just point it to gcc3. Similar stuff applies for g++.
Also Project Builder doesn't know about gcc3.3 without changing some of the compile options and will default to gcc2.95 so it is important to RTFM before updating!
Sympathy For The Devil
Gimme Shelter
You Can't Always Get What you Want
Street Fighting Man
Ruby Tuesday
Paint It Black
Wild Horses
Let's Spend The Night Together
Honky Tonk Women
19th Nervous Breakdown
Under My Thumb
Mother's Little Helper
Get Off My Cloud
The Last Time
Not Fade Away
Jumpin Jack Flash
Brown Sugar
Angie
Start Me Up (Windows 95 Remix)
Heh - that list will give the RIAA's spiders something to chew on!
Why would John Carmack have to compensate for DX9 inadequacies when he uses OpenGL? His last on topic
So for OpenGL there is not much between them which is fine for all us *nix using
The Odyssey and The Iliad.
Written circa 8th century BC - fortunately Homer wasn't working for Disney when he wrote them so they're no longer in copyright.
Taht would be this guy and it looks like he's trying again. I hope he gets further than the last two attempts - he's never made it out of Scotland yet!
Richard E. Grant as Doctor Who shouldn't be wasted on animated web cartoons. This should be on the big screen as Withnail in fucking space! It's ideal - Withnail was already dressed up suitably as the doctor. It would certainly liven things up if the Doctor turns up drunk in Skaro demanding the finest wines known to humanity^W Dalek-kind. Another episode could have the doctor and assistant searching for 'matter' in the Tardis kitchen sink. Of course plastic bags wrapped around the feet would provide suiable protection from harsh alien environments.
Will this do?
Here's some thoughts on NeXT for developers
Sample quote - John Carmack:
>I once had a line of code in C++
// Doh!
;
> obj->dispose
MSVC is the real culprit here:
-fptr.cpp-
class foo {
public:
foo() {}
~foo() {}
int return_zero() {return 0;}
};
int main(void)
{
foo f;
if(0 == f.return_zero) {
}
return 0;
}
-end-
Build on NT with MSVC
fptr.exe - 0 error(s), 0 warning(s)
-
Build on IRIX with SGI compiler
$CC fptr.cpp
"fptr.cpp", line 14: error(3381): a pointer to a bound function may only be
used to call the function
if(0 == f.return_zero) {
^
1 error detected in the compilation of "fptr.cpp".
-
Build on Solaris with SUN compiler
$CC fptr.cpp
"fptr.cpp", line 14: Error: Taking address of the bound function foo::return_zero().
1 Error(s) detected.
-
Isn't it nice when the compiler spots errors and saves you the bother of tracking them down?
Motorola own Metrowerks who produce CodeWarrior and most commercial Mac apps are built with it as it outperforms gcc on PPC.
Feynman's story was covering his hand with acetone and setting it alight. The theory being that the stuff burns really quick so it doesn't have time to heat your hand up. Except hairs == wicks == pain.
I bought a MDD G4 - my previous model was a 4400 with an overclocked upgrade card so I certainly needed something newer to run OS X! I'm not too bothered about the ghetto pimp drive doors as the machine lives on the floor under the desk. What I do care about are the handles and the easy access to the internals. Sounds like they're keeping the handles and I hope they don't lose any of the great internal design when they change the external appearance.
See sig: Mr T is on the BBC's shortlist of the 10 greatest Americans - put in your vote whilst you have the chance.
LOGO - I remember when 'turtles' were the fashionable thing to get kids interested in programming. You would tell this lump of plastic to go forwards, turn and draw. A bit of mad skillz and you could get the thing to do a star or some such. At least that was the teacher's intention but the turtle was on a large desk rather than the floor... Evil kids program the thing to go FORWARD 666 and look all innocent when it falls to the floor shattering its plastic case. An early lesson that programming control systems for real world objects needs more stringent QA than the average homebrew computer program - and shouldn't be done by kids.
What would the purple squares be?
Perhaps Mozilla will be ready when AmigaOS4 is released.
Yes, AOL sends commercial messages to its members, but it doesn't spam the rest of the world too
Does the never ending stream of AOL CD's mailed in the post not count as spam? I agree with the OP - this is a case of carbonised kitchen utensils having an argument.
You can't be a C programmer, we know how to use punctuation.
Comma splice.
Yes you can add your fancy webcams etc, but they almost all gp through apple, and the os itself just has to worry about the base hardware: mainboard, CPU, RAM, HDD etc, now all of this is set by apple, so why inthe world does it crash. They know excatly the hardware it is going to run on, so why does it crash!!!
If the hardware requires a driver running in kernel space then it can crash the machine without Apple's involvement. The one thing that crashes my Mac is my Alcatel USB ADSL modem. If you pull the USB lead out you risk a kernel panic. This is all down to Alcatel's ineptitude at writing a kext and has nothing to do with Apple's code.
I do remember one of the 10.2.x releases had a problem moving directories into themselves so they do make mistakes - but by and large OS X is very reliable. They are also pretty quick at fixing their own bugs - the directory moving one only appeared in a single release. How long did it take Microsoft to fix the 'while (1) printf("\t\b\b");' bug?
> paradigm C C++ Perl Python Lisp
> functional no no yes ? yes
in 'you_are_wrong.cpp'
----
#include <functional>
----
end 'you_are_wrong.cpp'