Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Well, I thought about this years ago (Score 1) 529

So, reading the article, a simulation lattice imposes a limit on the amount of energy that can be simulated.

Now some physicists wonder whether there is such a limit.

Well, look no more, we already know the limit because there are black holes, which effectively are a set of nodes in the lattice that are overworked and slow down time near themselves.

The only question is whether it applies to all kinds of energy, but since it applies to light, I guess the answer is yes.

Comment Please don't start new projects in C/C++ (Score 1) 611

There are many applications and games written in C/C++ that I love.

I also occasionally code in C - sometimes it is fun to use pointers and read/write files without chaining two or three objects.

There are however huge drawbacks to using C/C++.
There is surely a full list somewhere, but for me currently the not-buying-point is the preprocessor.

The preprocessor allows conditional compilation of any file. Sometimes the file might do that, sometimes something different.

This means that it isn't practical to have pre-compiled modules (although I guess you could go the route of splitting your project into dozens of libraries).
Thus, a very small file can require Gigabytes of memory to compile, because all the dependencies have to be pulled in, and represented in memory.

C is cool for learning how things work, but not good for making things work.

Comment Actually what you said means the opposite (Score 1) 194

If they had a 3D chat client and game in 1995, which contains portions of the patent (which was filed in 1999),
they essentially made their own prior art.

IANAL either, but AFAIK you had 1 year in the US during which you could file a patent after its technology went public, and in Europe you had to file the patent before you made you technology public.

Slashdot Top Deals

Neutrinos have bad breadth.

Working...