Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Vote against Ubisoft with your dollars (Score 1) 468

You can quite easily disable updates in Steam per game. Are you saying they push updates even after you've disabled them?

Steam's current setup is that you can disable automatic updates on a per-game basis, however, only until you try to play it next at which time it forces the update on you. You can run in offline mode for up to 6 months, losing a huge chunk of Steam/some games in the process, but after 6 months you have to go online to re-validate your DRM and bam - updates.

Just make a backup copy of the game before you run Steam. Last I checked, they let you cancel the update if you want to play *right now*.

Comment Re:grandmother reference (Score 1) 468

To counter your anecdote with my own, I got Left 4 Dead 2 for free on Steam at one point.
Prices fluctuate all the time, and a brick and mortar store is subject to different pressures than an online store.
Steam is popular because it frequently discounts games, and will even email you if a game on your wishlist is discounted.

Comment Re:microsoft cash (Score 1) 181

I seriously felt that way until just a couple days ago, too. Wired had this piece about Satya Nadella and what's going on in Microsoft, specifically about the HoloLens project. It was the first time in a long time that I read something about Microsoft and thought "Oh wow, that is really cool," instead of "LOL."

Microsoft has a history of announcing some very cool things from their research division, but failing to follow through. I'm not getting my hopes up until they at least have a shipping date...

Comment Re:The solution is obvious (Score 1) 579

You might be thinking of the Play store and other Google apps, which as you say are not free. You can download and install them for free as a user, but if you want to ship them pre-installed on a device then there are licence agreements.

Out of curiosity, how exactly do you download the Play store before you have it installed?

Comment Re:What an idiot (Score 1) 180

That would be injecting noise on to the power lines, which means either it screws with the rest of the grid, or it's small enough that other devices could swamp it with noise. There's been some interesting work done on hiding signals below the noise floor using frequency hopping, but that's excessively complex.

Comment Re:Just give the option to turn it off... (Score 1) 823

At low speeds such as would be encountered in a parking lot or congested city street the engine noise is dominant, particularly because the car is doing a lot of accelerating and decelerating. At those speeds I think a modest synthesized engine sound is a very good idea, especially when you consider blind people and even more especially service dogs

My experience is that in car parks, you can hear the tire noise easily. If the only problem is the visually impaired, why not put the synthesized sound above the range of human hearing, so that only guide dogs and assistive devices can detect it?

Comment Re:The end of an era. (Score 1) 189

There is quite a bit of object oriented C code in the wild, that request just shows that the guy had no idea what he was talking about. While there are a lot of nice (and not so nice) things you can get from C++ if object orientation is all you want its overkill.

Amusingly, the kernel is probably one of the better examples of how to do OOP in C - the VFS code is a good example of this. (The file_operations struct is basically a vtable.) So given that they already had a working solution, they wouldn't have gained anything from C++ except additional complexity.

Comment Re:From the outside... (Score 1) 667

The problem is that it is not a sane choice. This is ENTIRELY based on fear. If all you do is label something as GMO that tells you nothing at all. This does not help you make any kind of informed decision at all.

Was the GMO done to make the plant drought resistance? does it resist cold? was it modified to be less carcinogenic? was it modified to make a certain companies fertilizer more profitable? etc

Just saying something is GMO is worthless.

I agree entirely. That's what using a GMO identifier would enable - the database of what changes they correspond to and when they were approved should be publicly accessible. If you think about it, that's basically the same level of transparency we currently have with various additives.

Comment Re:From the outside... (Score 1) 667

Look at the EU and their policy on GMO. It is ENTIRELY fear based. They just label something as GMO which is completely useless and people are taught that GMO is bad period. Even research into GMO has almost entirely ended in Europe. It doesn't matter that their own studies show the ones they have tested are safe they continue to be against it not just in the EU but world wide. The EU is a pretty major factor in stopping the usage of golden rice.

What would you propose instead? Given that GMO is relatively new, I think it is important that GMO foods be labelled as such, so that consumers can make an informed choice. Of course, some consumers are idiots, but that's never been a strong argument against depriving the rest of us.

I'm not an expert on the topic, but it seems to me that since there is already infrastructure in place for demonstrating that the GMO product in question is safe for human consumption (which no doubt assigns it some kind of UID), simply adding the identifier to the ingredients list should be enough. It conveys to the consumer that not all GMOs are the same, while still informing them. It also makes it easy for people to google a specific strain/variant and see if any one else has reported issues.

Comment Re:Should be, but it isn't. (Score 1) 386

All in all I just didn't consider it interesting enough to study even. I'm more interested in a true paradigm shift rather than another iteration of C++ which already is good enough for my taste. So I still have haskell overlay and actually do learn haskell :P

I'll agree with you there - D is the sort of language that tries to copy as many features as possible from other languages, rather than one which tries to do anything truly revolutionary. (I think UFCS is the only novel feature it has, and it's nothing more than a nicety.)

Haskell is definitely a much more interesting language - I spent the entirety of last year working with it and don't feel like I even scratched the surface. There are some applications imperative languages are better for though, so it is nice to see languages like Rust and D providing support for both.

Comment Re:D has problems, and not just a few (Score 1) 386

- Huge portions of the standard library are missing attributes like 'pure' and 'nothrow', which directly impacts user code that attempts to include them

Could you explain why adding pure/nothrow is considered a breaking change? I would have thought it only increases the contexts from which the function could be called.

Comment Re:Why D isn't more popular (Score 1) 386

D works quite well with C-based interfaces - you just annotate the function definitions and link against the binaries. (C++ support is a bit more incomplete.)
That said, at 264 kLOC, I don't think you're going to be switching to any new languages, except maybe newer revisions of C/C++.
New languages are only ever feasible for new systems, rewrites, or loosely coupled modules of existing systems. Anything else just causes more headaches than its worth.

Slashdot Top Deals

Waste not, get your budget cut next year.

Working...