Domain: netnexus.com
Stories and comments across the archive that link to netnexus.com.
Comments · 69
-
Re:Microsoft Monopoly Board Game!
-
Re:History repeats itself a thousand times over...
If what you say is true (which I have no reason to doubt), that means that ATI would have been doing the same thing.. You just can't trus benchmarks.
An online Starcraft RPG! Free only at
In soviet russia, all your us are belong to base!
Karma: Redundant -
The lawsuit that was mentioned...
I noticed that the lawsuit Gator was facing was launched June, 2002. Does anybody know whatever happened to it?
Did they settle? Was it dismissed? What of it!
An online Starcraft RPG? Free, only at
In soviet russia, all your us are belong to us!
Karma: Redundant -
Re:Martian and Bugs Bunny
Yup
An online Starcraft RPG? Free, only at
In soviet russia, all your us are belong to base!
Karma: redundant -
Re:Martian and Bugs Bunny
oooh this makes me very angry!
An online Starcraft RPG? Free, only at
In soviet russia, all your us are belong to base!
Karma: redundant -
Anybody notice?
Anybody notice how "Honey pots" backwards is "Stop yenoh!". A quick google of the word reveals it to have to do with food, so "honey pots" is code for "Stop food!". This madness must be ended!
An online Starcraft RPG? Free, only at
In soviet russia, all your us are belong to base!
Karma: Redundant! -
What is "content management"According to this site, content management is needed if you've ever:
- It takes a month to sign off the site's Terms & Conditions because every time any one of your organisation's lawyers changes a full stop, all the other ones need to sign it off.
- You realise that your site's visual design isn't working, but it will take a month to wrap a new design around the same words.
- Your web design agency insists on all content being signed off two months before it goes live... and then transcribes it incorrectly.
In a parting gesture, the Web publisher you fired replaced photos of board members with sheep. - You can't update one section of the site because another section has a major overhaul underway. You can either publish the entire site, with both complete and incomplete updates, or hold until both are completed.
- You have to work through the night to publish the company's results at market opening time because you don't have a secure area to develop them in advance.
- You send email promotions about 'upgrading' to Windows2000 to registered Mac users.
- You're employing an army of skilled web publishers just to update the system requirements of your software.
So what is content management? At the smaller scope, it would just include the text from your webpage. At its largest scope, it would include your entire intranet, and the policys regarding its use.
An online Starcraft RPG? Only at
In soviet russia, all your us are belong to base!
Karma: Redundant - It takes a month to sign off the site's Terms & Conditions because every time any one of your organisation's lawyers changes a full stop, all the other ones need to sign it off.
-
Re:Quite a sight...
Heh... More interesting than the Olympics.. And don't forget the.. hmm.. can't think of anything else
:(
An online Starcraft RPG? Only at
In soviet russia, all your us are belong to base!
Karma: Redunant -
Re:64bit
While technically true, saying "64-bit can process 2x faster than 32-bit" is misleading.
64-bit means that each instruction can be 64 bits long, allowing for the native computation of larger numbers. Concurrently, it can process 2 32-bit instructions, but they would have to be instructions such that neither relies on the result of the other.
To sum up: 64-bit is not equal to 2x32-bit, but is much better than 32-bit.
An online Starcraft RPG? Only at
In soviet russia, all your us are belong to base!
Karma: Redundant -
In case it gets ./d
GPL Legal Battle Coming?
posted by Dan Gillmor 12:06 AM
The free software movement has surmounted all kinds of obstacles in its short history, moving from a political statement to a prominent position inside the world's largest companies.
A battle may -- repeat, may -- be shaping up over whether the GNU General Public License, or GPL, can be enforced. If it gets to court, this could be a pivotal case.
The GPL is the legal core of the movement. It's basically a copyright agreement. It gives users of GPL-licensed software the right to see the source code, or programming instructions, of the software and to make modifications. But there's a string attached: If you create software that is derived from software previously licensed under the GPL, you must release what you've written under the same license.
The Free Software Foundation (FSF), which monitors the scene and enforces the GPL, says a Mountain View company has been violating the GPL for more than a year. The foundation calls the violations serious and is threatening a lawsuit.
The specifics of the FSF's beef with OpenTV have to do with the company's policies in sending source code to licensees of OpenTV software tools created under the GPL. According to the foundation, OpenTV has either refused to provide the code, or has attached improper conditions on providing it, to several programmers who have every right to it.
OpenTV's intellectual property lawyer, Scott Doyle, says there's been missed communications on both sides but that the company has no intention of violating any legal agreements. He says the company plans to post the code in question online.
But if the FSF is right that OpenTV is violating the GPL, and if this behavior is found to be legal by the courts, the entire free-software and open-source movements could be derailed. Agreeing to share the improvements you make in the GPL-licensed software you've used is an essential part of the larger ecosystem.
Some people I respect say the GPL is a bad idea, period. They say it's too restrictive of programmers' rights, in the sense of forcing them to open what they've done to the world. Fine: If you don't like the GPL, don't create software from code that used it in the first place. Then put different licensing terms on what you've done.
But legal agreements are supposed to matter in our system. Just because the GPL turns the idea of intellectual property somewhat around doesn't make it less valid.
--- From here ---
Tom Brown
An online Starcraft RPG? Only at
In soviet russia, all your us are belong to base!
Karma: Redundant -
Re:Oh dear lord not again!
But it was given a rating of 9! That must mean its practically perfect!
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base!
Karma: Redundant -
final methodsI tested out what he says about final methods and to my surprise, I found that the final methods were consistantly slower.
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base!
Karma: redundant
Here are the results I found, the code is below:
First test, method1 is not final
Running method1() TIME: 4577
Running method2() TIME: 4596
Running method2() TIME: 4637
Running method1() TIME: 4547
Running method1() TIME: 4547
Running method2() TIME: 4566
public static void method1() AVERAGE: 4557
public static final void method2() AVERAGE: 4599.66
Second test, method1 is now final
Running method1() TIME: 4557
Running method2() TIME: 4576
Running method2() TIME: 4537
Running method1() TIME: 4597
Running method1() TIME: 4636
Running method2() TIME: 4557
public static final void method1() AVERAGE: 4596.66
public static void method1() AVERAGE: 4556.66
Here is the code I used. Its ugly, but I did it the way I did to best mitigate the effects of the JVM optimizing the code:package benchmarks;
public class FinalTest {
public static int INC;
public static final void method1() { INC++; }
public static void method2() { INC++; }
public final static int TEST = 1000000000;
public static void main(String[] args) {
long start;
INC = 0;
start = System.currentTimeMillis();
System.out.println("Running method1()");
for(int i=0; i<TEST; i++) method1();
System.out.println("TIME: "+(System.currentTimeMillis()-start));
INC = 0;
start = System.currentTimeMillis();
System.out.println("Running method2()");
for(int i=0; i<TEST; i++) method2();
System.out.println("TIME: "+(System.currentTimeMillis()-start));
INC = 0;
start = System.currentTimeMillis();
System.out.println("Running method2()");
for(int i=0; i<TEST; i++) method2();
System.out.println("TIME: "+(System.currentTimeMillis()-start));
INC = 0;
start = System.currentTimeMillis();
System.out.println("Running method1()");
for(int i=0; i<TEST; i++) method1();
System.out.println("TIME: "+(System.currentTimeMillis()-start));
INC = 0;
start = System.currentTimeMillis();
System.out.println("Running method1()");
for(int i=0; i<TEST; i++) method1();
System.out.println("TIME: "+(System.currentTimeMillis()-start));
INC = 0;
start = System.currentTimeMillis();
System.out.println("Running method2()");
for(int i=0; i<TEST; i++) method2();
System.out.println("TIME: "+(System.currentTimeMillis()-start));
}
} -
Heh..
Basically, the original story was just a load of crap!
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
Re:That is the sound of inevitability....
And I assume that since you don't want to pay any taxes, you don't want to use any of the services our government provides..
You won't be able to use most roads, so you'll have to walk but if you get mugged, the police can't help you. You can't get food from the supermarket, because of all the subsidies the government provides food producers...
Basically, you want something for nothing.
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
Re:That is the sound of inevitability....
It's a never ending battle between the republican types (who hate government involvement) and the democratic types who want more centralized/governmental control.
While I think that there is such thing as "too much taxes", I don't think we're there yet. The only problem with this system (IMHO) is that when each state has their own laws, it will become very difficult for small businesses to conform and collect the proper taxes for each state.
If the states want money from online sales, propose a federal tax, whose money would be split between states proportional to the ecomerce that is done in each state.
While the system wouldn't be perfect, it would be a huge step up from 50 separate laws!
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
Positive?
Great! Another positive review!
I want to know more about its general feel! I want to know more about what I might not like! I want to know more than "There are parts that need to be polished, but ignore my last sentance"!
/RANT
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
GIGO...
Adds new meaning to Garbage In, Garbage Out
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
Re:In summary...
I agree that some laws should be made to take into account motivation (*cough* DMCA) rather than just the action, but there must be limits.
While very utopian, there are two problems with only passing laws based on motivation that come to mind.
Its very difficult to determine true motivation, and even if the person's motivation is good, that person could be walking all over the rights of another.
An online Starcraft RPG? only at
In Soviet Russia, all your us are belong to base! -
Re:Am I missing something?
You've got it backwards (like the soviet russia joke..). In the matrix, they only know what fried chicken tastes like, thus everything tastes like fried chicken.
The article attempts to explain how the matrix can know the taste of fried chicken, but not the taste of anything else.
An online Starcraft RPG? Only at
In the matrix, soviet russia jokes about you! -
Of course...
To take the cynical view, anything can be explained in a made-up universe. Just look at all the "scientific" explanation for events in Star Wars (midiclroians, anyone?).
That said, its a very impressive article!
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
Ack!
Too many acronyms!
My head hurts!
An online Starcraft RPG? Only at -
Some acronyms for ya...
I posted this awhile ago, but it seems to fit here too..
LAN = Local Area Network
WAN = Wide Area Network
MAN = Metropoliton Area Network
WOMAN = Wide Open Metropolitan Area Network
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base! -
Re:If you can't outcompete 3rd world workers...
if your job can be done capably by someone who has virtually no contact with management, halfway around the world, then you're not doing a good job. If you are a good, educated programmer, you have nothing to worry about.
This would be true if the only reason outsourcing happens was because of quality. Many times, outsourcing happens because it is simply cheaper to hire foreign workers.
In America, there is a high standard of living. This forces companies to pay more, so that the employees can live. It costs the company less if they're paying in Rupees instead of Dollars.
I'm not advocating oppression of any people. I just want people to know that quality is not the only reason for outsourcing.
An online Starcraft RPG? Only at
In Soviet Russia, all your us are belong to base. -
Damnit!
Maybe if I had broadband, I would be revived from stasis much faster, on Terran Legacy. Damn, I sware that is the same Zealot waiting for me to look around outside the base, or the same pervert Overlord spying on me, or that damn Level 3 hydralisk waiting to deliver another 850+ damage POWER HIT.
Damn you 128K broadband! -
So what?
This won't make any difference. We already know the musicians don't see much (if any) of the money collected, we know the RIAA inflates their reported losses, now we know how similar these file trading systems are to windows.
So what?
An online Starcraft RPG? Only at
In soviet Russia, all your us are belong to base! -
IQ domains? How does it help?
How does this help the Iraqi people? All this does is give the rest of the world more domain space, while not giving Iraq the full value of their "property".
Why couldn't it be an Iraqi company that sells the domains? This would allow the country to keep all of the proceeds, instead of only getting some of the value.
I'm not against the UK, the US, France or anybody, but I think this might be one area where this company is being opportunistic.
An online Starcraft RPG? Only at
In soviet Russia, all your us are belong to base! -
Alarmist? Of course!
You expect something like "Everything is OK" from slashdot?
Maybe you haven't been here very long...
An online Starcraft RPG? Only at -
Re:Isn't this the compiler's job?
With non-bytecode langauges, the compiler can optimize to the environment. It can re-order code based on the fastest execution time for the platform the code is compiled for.
Java (and other bytecode languages) were desinged to run well not just on a single platform, but on a variety of platforms. So as a trade-off, you lose environment-specific optimizations at compile time.
JIT JRE/compilers can work to prevent this. They can further optimize the bytecodes at execution time because they are platform specific.
An online Starcraft RPG? Only at
In soviet Russia, all your us are belong to base! -
Some acronyms for ya
LAN = Local Area Network
WAN = Wide Area Network
MAN = Metropoliton Area Network
WOMAN = Wide Open Metropolitan Area Network, which is what most of those 802.11 networks will be...
An online Starcraft RPG? Only at -
Re:Hmm, let's see ...
You're dissing perl for being quick and dirty, but just because you can use a shortcut, doesn't mean you have to. I can code with perl and have it come out looking as clean as Pascal (or even *gulp* Java).
Things can be done in other "structured" languages that would be as unreadable as the most obfuscated perl code. Being able to read your code 9 months from now is more a function of programmer discipline than the language used.
This game was written in perl, when I was learning, 5 years ago, and because I used good design and comments, I can still read and update the code.
An online Starcraft RPG? Only at -
Re:Hmm, let's see ...
You're dissing perl for being quick and dirty, but just because you can use a shortcut, doesn't mean you have to. I can code with perl and have it come out looking as clean as Pascal (or even *gulp* Java).
Things can be done in other "structured" languages that would be as unreadable as the most obfuscated perl code. Being able to read your code 9 months from now is more a function of programmer discipline than the language used.
This game was written in perl, when I was learning, 5 years ago, and because I used good design and comments, I can still read and update the code.
An online Starcraft RPG? Only at -
About Enders Game?
After reading the article, I can say I feel mislead. I clicked expecting to find something about how the government has just built some giant gravity-defying rooms, but instead I find that the goal of the military is to make our soldiers fight without even knowing their fighting.
IMHO, they got the wrong things out of Enders Game. There is value in soldiers not knowing the reality of fighting... But that makes any Big Brother scenario all the more scary.
It reminds me a little of the movie Toys (Plot Outline: An eccentric toymaker finds his family business horribly misused by his militaristic uncle who is bequeathed control of the company). Where a has-been general trains some youngsters to play video games, while in fact they're controlling RC weapons of war.
Scary, isn't it!
An online Starcraft RPG? Only at -
OT ... or not!
Click here (Not like goats.ex... or whatever that other site is)
This is why retail products should get an "Evil-bit"... Or some sort of barcode that can be scanned to say "I'm an evil product!" -
Games on demand? Too soon?....
I don't think its too soon for games on demand.. Look at all the people who play on sites like pop-cap games, yahoo games and msn zone. There are many games that are available on demand, and as thus are played on demand.
I think the factor that will truly bring this idea success will be when you don't have to download to play the game. You visit the URL, and the game plays... Maybe that would require the game to install on demand... or maybe it already exists with languages like java and flash, where all you need to download are some datafiles (And a small amount of game code).
An online browser-based Starcraft RPG? Only at
In soviet russia, all your us are belong to base! -
Re:ROT13?
You can find a good ROT13 decoder here:
This link
An online Starcraft RPG? Only at
In soviet russia, all your us are belong to base! -
Unbiased? Ask slashdot?
Asking Slashdot for an unbiased news source is like asking Howard Stern to be homosexual. It just ain't gonna happen.
On the other hand, here you can find many different biasses. Anti-microsoft, pro-linux, pro-bsd, etc.. Eventually they all counteract.
The trick is to realize that each comment is biased, and to compare it to all the other comments to get the real truth.
An online Starcraft RPG? Only at -
Correction
Now that I looked at the right place, the USD value of 11m GBP is $17,406,247.58.
His negotiated salary is probably about $17.5m when it was signed.
Now it REALLY sucks to be him if his back goes out.
An online Starcraft RPG? Only at -
Re:That's 11m pounds
With exchange rates as they are, 11 million pounds is $12,372,061.64. That is quite the odd sum to pay an actor, so with rounding he's probably making a cool 12.5 million.
If his back trouble continues, sucks to be him!
An online Starcraft RPG? Only at -
Re:The flu/pneumonia and anti-biotics
Antibiotic soap is really not the problem most people think it is. Its antibiotic properties work on completely different principles than the antibiotics your doctor gives you.
If everybody uses these topical antibiotics, they will become less effective and eventually completely non-effective, but it will not affect the potency of your doctors penicillin.
An online Starcraft RPG? Only at -
Re:Image autosizing!
Thank you for showing me the option (which I have now turned off). I had looked in the options, and never seen it before.
I am not a blind microsoft-hater. I dislike some things they do, but I still use many of their products, and do not diss them "just because they are microsoft".
If you read my post, you'll see that its not just a microsoft bash. Its an appeal for features to have an "on/off" switch, and my appeal is being made to any software producer, not just MS.
*Steps off soapbox*
An online Starcraft RPG? Only at -
Re:Other films?
I believe they didn't do anything big until LOTR. Nobody in the mainstream had heard of Pixar until Toy Story came out, and Lucasarts became famous for SW and THX sound.
An online Starcraft RPG? Only at -
Image autosizing!
New to this version are features like image auto sizing...
Am I the only person who does not like the image auto size feature? I am a web developer, and sometimes the graphics I look at are bigger than the window I'm browsing in, and I can't always expand the browser to be bigger than the image.
If this feature has indeed been added to mozilla (and MS could learn this as well), please add an option to turn it off!
An online Starcraft RPG? Only at -
Re:Games == Music
IAAIGD (Indie game developer)...
The analogy to the current entertainment industry is very accurate. This is a capitalist society, and as such the successful businesses are shaped a certain way. If they don't make money, they don't succeed. The innovation comes from the indies, but as we all know, the first person with any given technology usually fails.
Developing a good game is hard work. It takes time, talent in programming (physics, graphics, etc) and talent in the graphical arts. It is difficult to code fulltime every day for whatever company you work for, and go home and put in another 4-8 hours on your game. Code burnout happens quickly, and can last a long time.
That said, I think that if the musicians can manage some sort of revolution, computer games will not be too far behind. (How many developers do you know that don't read slashdot!).
Support the gamer revolution!
An online Starcraft RPG? Only at -
Re:Overseas calls?
If some company is stupid enough to make an international telemarketing call, have at it. That business model will soon drive them bankrupt.
One of the reasons that we currently get telemarketing calls is the pricing structure of local and toll calls is low enough to support that model.
It will not drive them bankrupt, the lower labor costs offset the telephone costs by a huge margin. Most countries minimum wages are low enough that the increase in long distance rates will be out weighed by the savings in human labor.
There are 60 minutes in an hour. Current local/LD rates here (for bulk customers) are somewhere below $0.03 a minute. That adds up to $1.80 an hour + $7.00 for labor. Total hourly cost for telephone + labor is $8.80.
In a third world country, imagine if the telephone cost were $0.08 a minute ($4.08/hr). The labor cost could be as low as $0.50 an hour. Add that up and its way cheaper to operate outside the US.
That is the reason India and the Phillipines have so many call centers. It just makes business sense.
I don't see a reason why these telemarket companies will go under, they'll just move away and call from outside our wonderful country.
An online Starcraft RPG? Only at -
Re:Honest Question
I have not seen an unbiased answer to this question that has convinced me one way or the other. I use both on my site, all my new projects are PHP because its quicker, but mod_perl can be extremely powerful with the persistance of its threads.
To sum up, I don't believe an unbiased comparison is possible, and both PHP and Perl are fairly equal as web-scripting solutions right now.
An online Starcraft RPG? Only at -
Re:Honest Question
I have not seen an unbiased answer to this question that has convinced me one way or the other. I use both on my site, all my new projects are PHP because its quicker, but mod_perl can be extremely powerful with the persistance of its threads.
To sum up, I don't believe an unbiased comparison is possible, and both PHP and Perl are fairly equal as web-scripting solutions right now.
An online Starcraft RPG? Only at -
Php?
PHP Wrox!
An Online Starcraft RPG? Only at -
P2P pricing system?
"The only drawback that concerns me is how each item and price can be connected to an individual."
Should this come to pass on a widespread basis, it could be counteracted by some sort of open pricing network, similar to P2P.
Somehow the system knows what prices I can get for an item, and what prices anybody else logged in can get, and routes the purchase through that person...
Similar to pricewatch, but more community based rather than retailer based... .. Anyway, its just an idea! ..
An online Starcraft RPG? Only at -
Same battle, different players
This battle has been fought before, if not in the courts than in the marketplace.
Without saying anything about the quality of certain brands, what really allowed the PC to become the dominant computer over Macintosh was the fact that PC parts were commodities. This allowed the prices of PC parts to remain low, increasing demand.
If Lexmark continues to block other manufacturers from creating Lexmark compatible cartriges, another printer manufacturer will realize the benefits of increased market share, and allow their printers to use cheaper ink.
Just ask any economist!
An online Starcraft RPG? Only at -
linux out of the box?
"And as an added bonus, the game actually runs on Linux right out of the box"
Now I won't have to research the "Multiple OS" and "Open Source Movement" technology branches. Right on!
An online Starcraft RPG? Only at