Hacker Newsnew | past | comments | ask | show | jobs | submit | sluukkonen's commentslogin

Isn’t that kind of implementation blatantly illegal, though?


It is, but:

* it's hard/impossible to prove - given how many factors go into ad targeting there isn't a conclusive way to prove whether an ad was targeted because of illicitly-collected data.

* as you see here even blatant GDPR breaches and acting in bad faith doesn't actually land you in trouble, so although it's "illegal", the law isn't enforced. Experian (or Equifax) got caught by the ICO knowingly misusing people's credit data for marketing purposes and all they got was a warning, so clearly the message is that "breaching the GDPR does pay".


Would've making regular assignment an expression broken too much existing code?


It's a voluntary design choice since the beginning of Python to avoid the very common mistake of doing:

    while continue = "yes":
instead of:

    while continue == "yes":
Those mistakes introduce bugs that are hard to spot because they don't cause an immediate error, linters can hardly help with them and even a senior can make them while being tired.


I don't know about linters but GCC warns me about that every time I make that typo. They could just require parenthesis when assignment value is used as boolean.


Probably not, since expressions can already be statements. But that would allow dangerous code like "if a = 3", which I don't think the Python devs would want to allow.



I have no idea why the C++ designers chose those particular names, but at least Scala uses the same Promise/Future dichotomy, where you resolve (or reject) a Promise into a Future. Perhaps they drew from the same well?


There's also an updated version of the episode that they aired this year.

http://www.radiolab.org/story/update-crispr/


Just to add some info: The update recaps the original, and talks about advances over the year or two since the first one.

It's a great podcast episode.


And if you like the original episode, I also strongly suggest you listen to this: http://www.radiolab.org/story/shrink/

It is not CRISPR-related, but part of the same interview. It was really inspiring.


I have no experience with SQS, but there is definitely space for a simpler queue implementation (or even a standard) than AMQP. I think it's needlessly complex for many problem domains.


Here's one example. Web browsers often use bloom filters or similar data structures to check for malicious URLs. They first check the URL against the local bloom filter, and if a match is found, they double check against an online API to make sure it wasn't a false positive.

Shipping a full list of malicious URLs would be too expensive, but a bloom filter fits in a fraction of the space and can still eliminate a vast majority of the API calls.


They're useful in cases like this, where the set of entries is much smaller than the total set size (e.g., all URLs). Once you approach sets with 50% membership, a bitset becomes more efficient (accuracy per space) than a bloom filter or any other probabilistic structure.


Interesting. I may in fact have a use for that.


That's Norway. The other Nordic countries weren't lucky enough to have significant numbers of oil.


And even Norway is in trouble and may tap into its Sovereign Wealth fund much sooner than expected.

http://www.bloomberg.com/news/articles/2015-10-05/norway-see...


The y is pronounced like the ü in über.


A tip that works for some: lips to say "oooo" (like an owl, or someone seeing something shiny for the first time), tongue to say "eeee". Well, worth a try.


Actually it's more like the 'j' in Eyjafjallajökull.


Wait, I think you are all just fucking with me...


"MooSQL"


Not the American pronounciation!


The ü in über is pronounced [y]. I wonder if IPA originally got this symbol from Finnish orthography, then.


I think you will find [y] in most Germanic languages, including German, Swedish, Danish, Norwegian, (most likely) Icelandic, and Dutch, so probably not. But it is a very "Finnish" vowel though... Hyyvää!

Besides, Widenius is Swedish speaking (just like Linus Thorvalds and about 10% of the people of Finland) and the name "My" was more or less invented by the also Swedish speaking Finnish author Tove Jansson in her books about the Moomins.

Although wikipedia claims it to be a short form of Mary or Maria, which I seriously doubt.

Anyway, Finnish has not that much to do with the name, I think that it allegedly was Tove Janssons uncle - a professor in mathematics, that suggested the name based on the mathematical symbol and Greek letter μ pronounced in Swedish. It might even be vaguely similar to how it was pronounced in ancient Greek :-)

Besides, I think that "My" in Finnish would be spelled "Myy" since just about the only simple thing with the Finnish language is that the vowel length is indicated by the number of characters.


Oh, thanks! I was led astray by people earlier in the thread mentioning Finnish and so I simply assumed Monty's first language was Finnish, which, as you point out, it isn't.

Maybe Monty should upload an .au file somewhere saying "Hello, this is Monty Widenius, and I pronounce MySQL as MySQL"!


> Imagine if that lone guy at Microsoft didn't figure out trick with 286 protected mode that allowed Windows to survive and wasn't heard by top management - we would all be running OS/2 10 now.

I haven't heard this story before. Got a link?


I believe this is it: https://blogs.msdn.microsoft.com/larryosterman/2005/02/08/fa...

The IBM way required IBM BIOS and an absurdly long time (as I recalled it was hundreds of milliseconds, not just milliseconds) to re-enter real mode.

The motivation was to be able to run DOS real-mode programs as well as protected mode programs.



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: