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

 



Forgot your password?
typodupeerror
×

Comment Re:Not really (Score 2) 385

Being a theist may be a fundamental belief, but I'm not sure the same applies to atheism. If the majority of humans believed in unicorns and I had to state that I believed in unicorns as well to get a job (which does not involve any equines, horned or otherwise) I wanted, I would happily lie about believing in unicorns without feeling I've "betrayed a fundamental belief".

Comment Re:Worth less, not worthless (Score 1) 159

It's not a clever idea at all. Criminals will simply exchange their bitcoins for another currency, possibly multiple times, immediately after committing their crimes. Unless you think the right response after a theft of $X is grabbing some random people from the street, taking a total of $X from them, and then burning it is the correct way to stop crime?

Comment Re:Worth less, not worthless (Score 1) 159

And why would anyone cooperate with this crazy scheme? Perhaps you are willing to say that (using the numbers from your example) a bitcoin tainted by a particular crime is worth only 90% of its former value. The rest of the world might not agree that the value has reduced and pay full price (well, not to you of course, since you'll accept 90% of full price), but among one another. At the end of the day a bitcoin is only worth what others are willing to trade for it, and unless you manage to get most of the world on board with your scheme, it's just not going to happen.

Comment Re:But rust is supersecure? (Score 2) 288

Nope, Rust is being used by Mozilla to develop the experimental layout engine Servo, but there are (as far as I am aware) no plans to completely rewrite Firefox in Rust. There are plans to gradually replace some components in Firefox written in C/C++ with Rust, e.g. a url parser and a mp4 parser, but I don't think these are part of the current Firefox release.

Comment Re:Step 1 (Score 1) 151

Commerce? Are you mad? What could the moon possibly produce that, after the cost of moving it from the moon to the earth, couldn't be produced for a fraction of the cost here on earth?

Comment Re:Focused advertising based on detected trends (Score 1) 233

> It's a chicken and egg situation. Do they advertise to women less because fewer women click ads for high paying jobs, or do fewer women click ads for high paying jobs because they advertise them to women less? Let's assume google is not completely retarded, surely they measure the effectiveness of an add by looking at how often it was clicked compared to how often the add was shown (click-through rate). Or do you really believe they only count the absolute numbers?

Comment Re:Nope (Score 4, Informative) 531

TFA actually mentions

* Note: if you set DNT=1, it is possible that you may not be receiving Suggested Tiles. You can very simply enable them on the new tab page with the cogwheel. We made the decision to opt users out of all sponsored Tiles experiences if they have DNT=1 quite early on, as we believe that most DNT early adopters are seeking to opt out of all advertising experiences. However, it’s important to understand that no tracking is involved in delivering Tiles.

Comment Re:Commitment to stability (Score 1) 149

Not that hard in Rust either:

let badref: &u32 = unsafe { std::mem::transmute(0 as *const u32)};

But doing this trick is UB in both C++ and Rust, so it's not really fair to hold it against either language. Having said that, one advantage of Rust would be that it is impossible to create such a bad reference without using an unsafe block, while in C++ it seems much easier to do so by mistake.

Slashdot Top Deals

Solutions are obvious if one only has the optical power to observe them over the horizon. -- K.A. Arsdall

Working...