Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Labour laws (Score 1) 422

A personal rant, not related to this particular situation of which I know nothing.

The banks won't allow any flexibility about my working conditions when I ask for a mortgage to buy my house; doctors expect to be paid with no flexibility when I have to maintain the health of my family; bills needs to be paid inflexibly at the end of the month. So I have to confess that this concept of "flexibility" that we are importing from the US is starting to piss me off, because basically it means that workers, the weaker part of economy and the one that actually does the job, have to take on their shoulders the risk of entrepreneurship, which historically was the moral justification for investors to make money without working.

And hearing that this is necessity from politicians who sit on mountains of public money, and on behalf of CEOs who can earn one hundred times as much as their employees, and can take the citizenship of Monte Carlo to even avoid paying taxes on that much, is unbearable. Again, I'm not talking about the CEO of Mandriva, it's just a generic rant.

Comment Re:Easier to learn != easier to use (Score 1) 382

To me, the pragmatic way to add generics to Java while ensuring backwards compatibility would have been to write a new collections library using reified generics, leaving the old collections library ungenerified for source and binary compatibility with old code. That's what MS did with .NET. It's certainly much less elegant because you can't retrofit the whole API with generics as Sun was able to do, but I don't hear many complaints from .NET programmers about this problem nowadays.

Instead, they chose the more sophisticated approach of type erasure - which added a lot of complexity, limitations, and even introduced the concept of compile-time warnings in the Java language - not because of backwards compatibility (adding new kinds of bytecode to the JVM is OK and it happens occasionally), but because they wanted indefinite interoperability between old code (which would see the collection objects “raw”) and new code (which would see the very same objects “generified”).

Now academics universally despise type erasure, but back then at least half of them thought that it was a good idea and you can still see it today if you search the web for their blog posts of the time, where they explained the tricks that they used to overcome the limitations of type erasure and why type erasure wasn't so bad after all.

Comment Re:Windows 3.0 (Score 1) 387

DOS was kept around for compatibility reasons, because people WANTED to continue running DOS programs both under Windows and besides Windows. And that's mostly the reason why you might have had to fiddle with AUTOEXEC.BAT and CONFIG.SYS, that is, if you wanted to run DOS programs and therefore you needed to squeeze each KB out of conventional memory, install DOS device drivers for your sound card (which were not required under Windows), install SMARTDrive and so on. Windows applications ran happily in Extended Memory and didn't need all that theatre.

The fact that you could go back do DOS isn't relevant to the definition of what is an operating system and what isn't. You could go back to DOS in Win9x, too. And you can shut down the OS and go back to the boot loader shell in many computer architectures, including the earlier models of IBM PC where you could go back to ROM BASIC.

Comment Re:Easier to learn != easier to use (Score 1) 382

You don't need to inspect upstream definitions for the second line when there's no operator overloading involved, it can only be an addition between two numbers or a string concatenation.

Also consider the following example. What does this do?
c = a * b;
Is it a vector product? Is it a scalar product? Is it a scalar multiplication? I need to look at the types of a, b and c to figure out. A method name in place of a single character could tell me more.

Comment Re:Windows 3.0 (Score 1) 387

To be honest, at startup Windows replaced DOS' services to the point that it ran on its own, with no knowledge by the undelying DOS, program loading, process management, memory management, task scheduling, and most device drivers. This included even disk access in the later releases of Windows 3.x. It's not correct to say that Windows 3 wasn't an operating system, as it implemented almost all of the services that define an operating system, if not booting from the bare metal.

Comment Re:I don't know why people still say Java is slow. (Score 1) 382

On my laptop, a Sandy Bridge i7, on a cold start, Netbeans 8 takes 57 seconds to launch before it's clickable, Visual Studio 2013 takes 68 seconds. Netbeans is also more responsive while it's busy, with Visual Studio displaying the full hourglass cursor and triggering the "application not responding" behaviour if its window is clicked before it's ready.

Comment Re:Easier to learn != easier to use (Score 5, Informative) 382

The basic idea is that in Java programs, you can understand what's going on by looking at a fragment of code. Therefore the code is easy to read and to maintain. With syntactic sugar such as properties, operator overload and closures, you can't know which statements will cause side effects without inspecting upstream definitions.

Type erasure, on the other hand, is pure evil - to me, it's the representation of what happens when a pragmatic language ends up into the hands of computer scientists.

By the way, in Java all lists have the get() method with no exceptions (this includes Lists, HashMaps, Vectors) and all collections have the iterator() method with no exceptions. The At() method doesn't exist.

Comment Re:"Easy to read" is non-sense (Score 1) 414

No, it wasn't... in the old times it allowed you to skip whitespace in order to save memory, so programs used to become wall of characters, and you couldn't even call a variable "sprint" because it contained the reserved word "print". And its later incarnations were full of puzzlers. Just the first ones that come into my mind: "On Error Goto 0" means "throw an exception"; functions and procedures have a different invocation syntax and invoking a procedure as a function doesn't fail but results in a different operation; the assignment operator is different between objects and non-objects; function parameters are passed by reference by default...
Windows

Microsoft Confirms It Won't Offer Free Windows 10 Upgrades To Pirates 214

An anonymous reader writes: If it sounds too good to be true, then it probably is. All that talk about pirates getting free Windows 10 upgrades? Not happening. For genuine users, the free upgrade to Windows 10 means receiving "ongoing Windows innovation and security updates for free, for the supported lifetime of that device." Terry Myerson, Microsoft's executive vice president of operating systems, has clarified the company's plans were not changing for non-genuine users: "Microsoft and our OEM partners know that many consumers are unwitting victims of piracy, and with Windows 10, we would like all of our customers to move forward with us together. While our free offer to upgrade to Windows 10 will not apply to Non-Genuine Windows devices, and as we've always done, we will continue to offer Windows 10 to customers running devices in a Non-Genuine state."

Comment Do not want (Score 4, Insightful) 198

So they are going to peek inside my network packets, looking for ads? And modify them, in order to remove those ads? Sorry, but I don't need yet another big brother looking at my private stuff, whether it’s for my own good, for maintaining the order of society or for the sake of whatever replaced the STASI nowadays.

Besides, what if I’m using TLS? Are they going to require me to install rogue certificates just to make their inspection more comfortable? No thanks. Telecom companies had better learn already that with the advent of the Internet, their trade is to sell dumb pipes, competing with the others over the price of that service; the good times when they could milk their customers for “value added services” is over.

Slashdot Top Deals

I tell them to turn to the study of mathematics, for it is only there that they might escape the lusts of the flesh. -- Thomas Mann, "The Magic Mountain"

Working...