Slashdot Mirror


EU Presidency Calls For Massive Internet Filtering, Leaked Document Shows (edri.org)

An anonymous reader shares a report: A Council of the European Union document leaked by Statewatch on 30 August reveals that during the summer months, that Estonia (current EU Presidency) has been pushing the other Member States to strengthen indiscriminate internet surveillance, and to follow in the footsteps of China regarding online censorship. Standing firmly behind its belief that filtering the uploads is the way to go, the Presidency has worked hard in order to make the proposal for the new copyright Directive even more harmful than the Commission's original proposal, and pushing it further into the realms of illegality. According to the leaked document, the text suggests two options for each of the two most controversial proposals: the so-called "link tax" or ancillary copyright and the upload filter.

131 of 236 comments (clear)

  1. They're really going to need one now by alvinrod · · Score: 3, Funny

    They're really going to need a filter now or all kinds of people in the EU are going to be reading web comments about what a bunch of wankers these asshats are.

  2. Join Us! by Anonymous Coward · · Score: 1

    The Great Firewall will be extended to include all!

    Wait...

    What will we keep out, if we already are eradicating the innovative ideas? Quickly! Suppress art!

  3. New internet by Anonymous Coward · · Score: 5, Insightful

    Those of us in the tech sector need to be seriously talking about building a new layer of internet on top of the old one.

    Human expression and dignity is under assault by fascists cloaked in the sheepskin of virtue.

    Google, Facebook, Cloudflare, are now marching lockstep with the oppressive regimes of China and the EU.

    1. Re:New internet by MikeDataLink · · Score: 4, Insightful

      Those of us in the tech sector need to be seriously talking about building a new layer of internet on top of the old one.

      Agreed. I have been thinking about this for some time. There's got to be some kind of Virtual Internet (maybe based on VPNs) that we can build over the top of the current Internet. One where all traffic is encrypted and the sources are untraceable. Similar to TOR, but without all of the hops.

      --
      Mike @ The Geek Pub. Let's Make Stuff!
    2. Re:New internet by CrimsonAvenger · · Score: 4, Funny

      You are being fed a diet of propaganda designed to protect the 0.01% and their wealth at the expense of 99.01% of the people.

      SO, what about the other 0.98% who are neither the wealthy nor the people? That's what I want to know!

      --

      "I do not agree with what you say, but I will defend to the death your right to say it"
    3. Re:New internet by Opportunist · · Score: 1

      They can as well lock my body up when they already imprisoned me.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    4. Re:New internet by lgw · · Score: 2

      Any attempt at anonymity is useless "without all the hops". It's the only way to make traffic analysis non-trivial. IMO, Freenet was the right approach - turn everything into a big distributed hash table. No servers to take down, everything encrypted and p2p, assembling encrypted blobs of content into something coherent only happens at the client. Too bad it's so inherently slow it never took off, but "slow" may be the inevitable price if you want untraceable sources and no take-downs.

      Freenet had its own security flaws, don't get me wrong, but the core idea is a good foundation for something modern.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    5. Re:New internet by nukenerd · · Score: 1

      SO, what about the other 0.98% who are neither the wealthy nor the people? That's what I want to know!

      I think that's me.

    6. Re:New internet by MikeDataLink · · Score: 1

      Any attempt at anonymity is useless "without all the hops". It's the only way to make traffic analysis non-trivial.

      I don't think so. With point-to-multipoint tunnels, the routers in the middle would never know where the traffic inside the tunnels was destined.

      --
      Mike @ The Geek Pub. Let's Make Stuff!
    7. Re:New internet by sexconker · · Score: 1

      Sources on the internet are always traceable. That's how packets get delivered to and from their ultimate destination. This is how Ethernet and IP works, Yes, you can encrypt shit, add layers of hosts acting as blind message passers, etc. But then you have to trust your nodes.

    8. Re:New internet by sexconker · · Score: 2

      That doesn't scale. We tried that back in the early days where every host received every frame/packet and decided to open it or ignore it.
      Nor is it secure, because no one cares about the destination, they care about the source. Every router that receives a packet will simply log where it came from. Follow the chain long enough and you get to a host that generated it. Logging will be required. Passing along encrypted data you didn't decrypt and inspect first will be verboten. Install our spyware and certs if you want to remain secure, citizen.

    9. Re:New internet by Man+On+Pink+Corner · · Score: 1

      Those of us in the tech sector need to be seriously talking about building a new layer of internet on top of the old one

      Ah, yes, technical solutions to sociopolitical problems. Those always work really well.

    10. Re:New internet by Kjella · · Score: 2

      IMO, Freenet was the right approach - turn everything into a big distributed hash table. (...) Too bad it's so inherently slow it never took off

      I don't think it was inherent, it was just stupid. I looked into it... wow, it must be 10 years ago or something and it didn't scale because with many nodes and relatively small node sizes to total data it'd almost be an accident if you found what you looked for. Increasing your own node's connections helped massively, which it shouldn't. I was studying the effect of each node not only picking a place in the hash table, but also creating a highly directed network with more slots the closer your hashes. That way you'd be much more likely to get closer and closer instead of running into dead ends or circle loops as Freenet tended to do. That created a very strong "gravity" to the network that could be analyzed but I essentially divided the problem into two parts, in the beginning the request bounced randomly for anonymity then the "homing" kicked in and found the content for efficiency.

      As part of that I also created the opportunity for "shortcuts", like if it had gone node 1-2-3-4-5-6-7-8-9-10-11-12-13 to find the content node 3 could add a "and here's my contact info" and node 12 maybe pick up on it so the return path was 13-12-3-2-1, either temporarily for that one block or as a new link in the network. That created the opportunity for much faster downloads, in particular if you as a downloader didn't care you could shout "hey, here I am" to everyone for a torrent-like download. That of course wouldn't work for everyone but the risk is often asymmetrical or depends on your location/situation while Freenet has only one speed for everything in both directions.

      The main problem though was that it didn't do onion routing which made it extremely vulnerable to statistical analysis and because of its terrible algorithm for locating anything routing through a random node was like finding a needle in a haystack. With my algorithm that started to seem plausible though, you could actually send a request to a particular node without knowing the path, that would retrieve the content and forward it to you encrypted. Or at least it could in a simulation of a million nodes with 50 connections/node. It also made onion inserts possible, which is probably even more important. Also data was padded to half-powers of 2, so if you were sending/receiving an image 166321 bytes long it would be 192kb like everything else from 128kb to 192k. Plus I experimented with various kind of mix-master buffers and fake traffic to make traffic analysis difficult to say where any stream actually begins, ends or is routed to.

      With anonymous inserts you could also do tricks like double keys (XOR the content, hash again) that would render "denial-of-keyspace" attacks useless since one of the two keys would be good. If you trust the onion routing you could do automatic healing with PAR blocks meaning files are much more likely to download fast or not at all, with Freenet that was a pretty big security risk. Also I experimented with insert-specific keys for the same data so you could insert known files with lower risk. Also a more intelligent system for signed pointers so you could do RSS-like feeds. I dabbled in making a forum/email system but never found a true cure to spam, enough trash could bring anything down. I also managed to make peer circles, that was a pretty neat anti-analysis trick for low-volume content... basically the same block goes in a circle, only the client and the meeting point alters data, could do encrypted chat with reasonably low lag, not instant but like sub-second.

      The one thing I never really got solved was the problem of poison nodes and "catch-and-release"... basically if your node keeps getting offers from one poison node to connect to more poison nodes eventually you'll end up talking only to poison nodes, even with onion routing those too will be compromised. I tried making something equivalent of guard nodes and that nodes you

      --
      Live today, because you never know what tomorrow brings
    11. Re:New internet by TeknoHog · · Score: 1

      Try I2P.

      --
      Escher was the first MC and Giger invented the HR department.
    12. Re:New internet by AHuxley · · Score: 2

      Re "They will outlaw VPNs and make it a chrime that gives you 50 years in jail"
      Enough EU experts have seen, worked with and know of the NSA/GCHQ efforts with systems like XKeyscore https://en.wikipedia.org/wiki/..., Turbulence https://en.wikipedia.org/wiki/....
      EU VPN users will be found and their attempts to use the internet for freedom discovered.
      The full force of EU member state laws will then be used depending on the content and comments.
      The new internet needs to take into consideration all methods any EU member gov/mil can find to counter internet freedom.

      --
      Domestic spying is now "Benign Information Gathering"
    13. Re:New internet by Antique+Geekmeister · · Score: 1

      Until your endpoint is hacked with a zero day exploits. Also sadly, too many websites engage in profound tracking efforts involving tracking cookies, back end shared databases, and commonly sourced websites carrying personal information to be completely sure of privacy.

    14. Re: New internet by Entrope · · Score: 1

      Please, tell us more about how Google, Facebook, Amazon, and the other big corporations are part of the right-wing fascist conspiracy.

    15. Re:New internet by evolutionary · · Score: 1

      Absolutely right. We need to decentralize the Internet. that is the only way to truly preserve it. It got too centralized and Google, Facebook, and possibly cloudflare (dont' know about them, but you could be right), are certainly participating in web censorship/suppression for governments.

      --
      "Imagination is more important than knowledge" - Einstein
    16. Re:New internet by mrwireless · · Score: 1

      If the technologists don't develop a better understanding of how humans and power work, the same problems will develop in the new version.

      Case in point: the blockchain. Sounds fun at first, but if you look closer you realize it's fundamentally incompatible with what humans and society needs: it records everything, is not really anonymous, can't be changed, is designed to limit accountability, etc.

      We put our values into code. Code restricts. Code becomes law.

      In the grand scheme of things society's ills aren't fixed by technology. What we need is to stimulate compassion, education, a broader recognition of our desires, biases and ideological needs. Technology can support that, but in the end it's the hard work of being human, and recognizing the limits and dangers of technology.

      Captcha: accuses

  4. Pre-Code Internet by mapkinase · · Score: 3, Interesting

    That's what they will call a brief period of 15 years.

    --
    I do not believe in karma. "Funny"=-6. Do good and forbid evil. Yours, Oft-Offtopic Flamebaiting Troll.
    1. Re:Pre-Code Internet by AHuxley · · Score: 1

      That time of culture, freedom and fun.
      When emerging search engines just searched the www and presented results based on the user's search terms.
      The EU now wants political controls, laws and controls.
      A new digital Berlin wall to keep a EU bureaucracy in control of users, comments and news.
      Smart people will work hard to tunnel around all such EU censorship.
      Freedom of speech and freedom after speech will be saved from the EU laws.

      --
      Domestic spying is now "Benign Information Gathering"
  5. EU by Tailhook · · Score: 2, Insightful

    The EU apologists are downplaying this by pointing out that the current EU president (Estonia) is merely agenda setting and not a powerful executive. People that understand the malice of big government recognize this for what it is; the camel's nose. It will survive the transition to the next unelected EU president, and the one after and so on, until its on the docket in Brussel's various commissions and parliament.

    --
    Maw! Fire up the karma burner!
    1. Re:EU by AmiMoJo · · Score: 5, Informative

      Since the presidency of the EU is not "big government", it's literally just a rotating position that gives countries an opportunity to propose an agenda. Estonia has pissed it's opportunity away by proposing something that seems to violate the human rights of EU citizens (the right to privacy in particular) and which has no hope of ever being adopted or even influencing the legislation.

      Before you complain about the EU, note that it has some of the strongest privacy protections in the world. They have been used to stop government spying, they have been used to force massive multinational companies like Google to respect individual privacy. And those are actual, written and enforced law, not some random proposal that has zero chance of ever being enacted.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    2. Re:EU by admin7087 · · Score: 2

      There is nothing to downplay, this will never get passed. You wanna bet?

    3. Re:EU by barc0001 · · Score: 4, Insightful

      And the wingnut alarmists think that the next president will bring it in. It still has to go through the Commission, the council and then parliament. Which it won't. Several groups already have this in their crosshairs and are making noise about it. Not to mention ECHR - who literally yesterday gave a ruling that your employer has to notify you of monitoring of your work email - would torpedo it in an instant.

    4. Re:EU by coastwalker · · Score: 2, Insightful

      The destruction of the EU is a CIA dream. The EU are the only global political force that actually have any alternative against the American system of Corporate fucking of the population. Enjoy your slavery to corporations who are free to fuck your environment you fool.

      --
      Facts are history now plebs have politics for religion on social media.
    5. Re:EU by ACE209 · · Score: 1

      Yeah - this proposal won't make it far.

      --
      "we are all atheists about most of the gods that societies have ever believed in. Some of us just go one god further."
    6. Re:EU by fustakrakich · · Score: 1

      They have been used to stop government spying

      Shirley you're not serious!

      they have been used to force massive multinational companies like Google to respect individual privacy. And those are actual, written and enforced law

      *cough* Now that is funny! Wanna pull the other one?

      --
      “He’s not deformed, he’s just drunk!”
    7. Re:EU by infolation · · Score: 1

      If you're ever in the market for a bridge, I have a great one to sell you!

      obfs2, obfs3, scramblesuit, or fte?

    8. Re:EU by Anonymous Coward · · Score: 1

      This is laughably stupid, since if you look carefully enough you'll see that the CIA actually had a hand in getting the EU started.

    9. Re:EU by Uberbah · · Score: 1

      Call us when they decide to give citizens freedom of speech and expression.

      You mean like the freedom to advocate for boycotting Apartheid Israel without being sent to jail for the bullshit charge of antisemitism - or just the "freedom" to be complete racist assholes to Muslims a la Charlie Hebdo?

    10. Re: EU by Evtim · · Score: 2
    11. Re:EU by evolutionary · · Score: 1

      While all these are valid points, the fact remains that the EU has a president who is seeking to implement these Chinese-like Internet policies. Regardless of whether the majority of the EU nations agree, regardless of whether there are privacy laws in place, the president of a large group of nations like this can do a LOT of damage, so this proposal of his needs to be nipped in the bud before it takes root and gains traction. Nothing like this every gets implement in a single stage. It's like cancer, if it isn't found stopped early, it increases the chance of a terminal case. (like China, it would take another revolution there to remove the hard nose tactics in place there now, which was always the point).

      --
      "Imagination is more important than knowledge" - Einstein
    12. Re:EU by Cederic · · Score: 1

      You can't be racist to Muslims. You can however highlight the lack of logic, rationality, common sense or morality to their beliefs, you can tell them they're ignorant savage cunts and you can mock them.

      In the UK you can't however incite hatred against them, so please, don't hate the deluded fuckwits, mock them and pity them instead.

    13. Re:EU by mjwx · · Score: 1

      Since the presidency of the EU is not "big government", it's literally just a rotating position that gives countries an opportunity to propose an agenda. Estonia has pissed it's opportunity away by proposing something that seems to violate the human rights of EU citizens (the right to privacy in particular) and which has no hope of ever being adopted or even influencing the legislation.

      Before you complain about the EU, note that it has some of the strongest privacy protections in the world. They have been used to stop government spying, they have been used to force massive multinational companies like Google to respect individual privacy. And those are actual, written and enforced law, not some random proposal that has zero chance of ever being enacted.

      This.

      In a free, democratic parliament you can propose any law you like, no matter how stupid. Proposing a law does not guarantee it'll pass.

      --
      Calling someone a "hater" only means you can not rationally rebut their argument.
    14. Re:EU by Uberbah · · Score: 1

      You can't be racist to Muslims.

      Of course you can. Ask any American Exceptionalist to describe the sort of Muslims he's talking about, and you're going to have a list that looks like this:

      1) Arab
      2) Arab
      3) Someone from one of the 'stans (who looks pretty much just like an Arab)
      4) Black African

      You can however highlight the lack of logic, rationality, common sense or morality to their beliefs, you can tell them they're ignorant savage cunts and you can mock them.

      Sure you can - because the right to be a completely ignorant racist towards Muslims is one of the more cherished uses of the freedom of speech amongst American Exceptionalists.

    15. Re:EU by Cederic · · Score: 1

      You're conflating racism and stupidity with being racist against a religion.

      It's possible to be anti-islam without ever touching on race. The fact that people associate Islam with specific races is due to their own stupidity, and if they attack the religion as a means of attacking a race then that's also their stupidity and isn't actual racism, it's stupidity borne from racism.

      Attacking the religion is not however racist. "The Koran advocates pedophilia" is an attack on Islam (that may or may not be accurate) but at no point infers or requires a Muslim to be a specific race.

      I haven't encountered the term "American Exceptionalist" before so no comment on those.

    16. Re:EU by Uberbah · · Score: 1

      You're conflating racism and stupidity with being racist against a religion.

      Not in the slightest. The Venn diagram between select races/ethnic groups and the "radical Islamists" islamphobes like to whine about is a complete overlap. This is following the well known Lee Atwater trope:

      You start out in 1954 by saying, "N*****, n*****, n*****." By 1968 you can't say "n*****" â" that hurts you. Backfires. So you say stuff like forced busing, states' rights and all that stuff. You're getting so abstract now [that] you're talking about cutting taxes, and all these things you're talking about are totally economic things and a byproduct of them is [that] blacks get hurt worse than whites. And subconsciously maybe that is part of it. I'm not saying that. But I'm saying that if it is getting that abstract, and that coded, that we are doing away with the racial problem one way or the other. You follow me â" because obviously sitting around saying, "We want to cut this," is much more abstract than even the busing thing, and a hell of a lot more abstract than "N*****, n*****."

      Instead of "n*****", American Exceptionalists say "muslim". Or "illegal immigrant", in the case of latinos. It's all the same shit.

      Attacking the religion is not however racist. "The Koran advocates pedophilia" is an attack on Islam (that may or may not be accurate) but at no point infers or requires a Muslim to be a specific race.

      Which is complete idiocy. No different from pretending that Christians are supporters of child murder because the Bible says Abraham hauled up his son on top a mountain and was prepared to sacrifice him to please Jehovah. Or that Christians believe in incest because Eve fucked her son to continue the species.

      Complete. Idiocy.

    17. Re:EU by Cederic · · Score: 1

      I give you an example of a non-racist attack on religion and you respond with.. an example of a non-racist attack on religion.

      Thank you for proving my fucking point.

      Complete. Idiocy.

      Ironic.

    18. Re:EU by Uberbah · · Score: 1

      No bigot in the history of the human race has stood up and said "hey everybody, I'm a bigot who has irrational prejudices against people I've never met!" They all have reasons for feeling the way they do. Reasons based on anecdotes, confirmation bias and general bullshit.

      Which is exactly what you're doing, with the "Muslims believe in xyz because their book says so" canard. But no one would be stupid enough to apply the same reasoning to Christians, and argue that they all believe in mother-son fucking "because their book says so".

    19. Re:EU by Cederic · · Score: 1

      the "Muslims believe in xyz because their book says so" canard

      I suggested that a specific statement regarding the Koran would be a non-racist attack on Islam. I didn't say that Muslims agree, or believe in it; you're misinterpreting.

      But no one would be stupid enough to apply the same reasoning to Christians, and argue that they all believe in mother-son fucking "because their book says so"

      I think that's false. Someone in this conversation has already inferred that 'book says X so people for whom that book is a religious guide believe X', thus demonstrating very adequately that people are stupid enough to argue that. You just fucking did argue that.

      I still don't see any reference to race, thus proving my point yet further.

  6. Re:Brexit is the right decision. by Captain+Splendid · · Score: 4, Insightful

    Wait, the country that has one of the most aggressive pro-filtering stances outside of the Middle East is now a beacon of reason? ROFLMAO!

    --
    Linux, you magnificent bastard, I read the fucking manual!
  7. the Nazis had newspaper censorship and now EU by Joe_Dragon · · Score: 1

    the Nazis had newspaper censorship and now EU wants that for the net?? what is next???

    1. Re:the Nazis had newspaper censorship and now EU by coastwalker · · Score: 1

      You assume that because the NSA reads everything you ever look at or post that you are any more free. You are a cretin.

      --
      Facts are history now plebs have politics for religion on social media.
    2. Re:the Nazis had newspaper censorship and now EU by Cederic · · Score: 1

      I'm in Europe, I'm pretty certain the NSA get at least as much information about my activities as they do for people in the US.

      What the fuck does that have to do with the EU seeking to extend the mechanisms it uses to control its member countries' citizens?

      My cat just fell asleep in my arms and started quivering in her dreams. She cares more about EU citizen freedom than the autocrats running the EU and she's never even spoken to me about it.

  8. Fascism spreads by evolutionary · · Score: 5, Insightful

    there is only one reason for using China's system for control data/opinions shows: To guarantee the status quo and minimize or eliminate any threat to your current power structure. Unless the world wants their governments run like China, those that don't like it need to speak up, openly, now....because once it's in, it will be a lot harder to remove. (as per design)

    --
    "Imagination is more important than knowledge" - Einstein
    1. Re:Fascism spreads by evolutionary · · Score: 1

      Fortunately Trump has not shown the intelligence, nor even technically alliances necessary to do so. (Most tech companies do not work with him). Putin has all of these which is part of what makes Putin so dangerous. (His intelligence and knowledge of the KBG doesn't hurt either).

      Unfortunately, there is a monitoring net set up during the Obama administration (as demonstrated by Snowden) that makes it relative easy to implement in the US. Also, there are clear signs that Google (and Yahoo) is already participating in restricting searches as demonstrated by the EFF. Those with the know how can bypass some of this with VPNs to other countries and searching from Google, say in France, Germany, or South American which bypasses these business/government "boosts". I tend to use Qwant, a French search engine), sometimes Dogpile, or DuckDuckGo (controlled by Russia) as well as Yandex (another Russian Search engine) to get results I cannot find in Google USA. I'll probably look into Japanese Search engines as well. It's becoming clear the centralization of the web is too easy for governments to clamp down and VPN's are being banned in China and Russia. One observer correctly commented that the web needs to be decentralized

      But none of this has anything to with Trump, who has shown signs of mental instability, vanity, and utter lack of knowledge of how government or international politics works, plus has the finesse of a bull in a china shop, breaking everything in it's path. And on top of that, appears to be a white supremacist sympathizer as well, with proven lack of respect of rule of law. (Releasing Sheriff who basically defied a court order). A President who doesn't respect rule of law, is a really dangerous things, and it undermines the confidence in general of rule of law. Not sure we really want that, but I digress. To main topic, if we do have a Chinese firewall, Trump will probably know less about it than most people who keep up with international news. (and certainly less than any techie I know)

      --
      "Imagination is more important than knowledge" - Einstein
  9. Re:Sooner it goes, the better by Archangel+Michael · · Score: 1

    The EU is and isn't what anyone wants it to be (or not to be). It is a vague confederation of states.

    So, it all depends on the question, whether or not it makes the EU look good/bad and whether or not you want it to look that way.

    Petty dictators need to be exposed for what they are. This is such a case. So, it is or isn't a reflection on the EU, again depending on your support (or not) of the EU. So, you'll have to figure out if the EU is good or bad, and if you like this idea or not, before you can actually say if this is harm or not. ;-)

    See how that works?

    --
    Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
  10. Ah, Estonia - the country of SS by Cyberax · · Score: 1, Informative

    Estonia is the only remaining country in Europe where SS (yes, _that_ SS) veterans march on main streets. I guess it's hard to let go of Nazi past.

    1. Re:Ah, Estonia - the country of SS by dunkelfalke · · Score: 1

      Not the only, Latvia is the same.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    2. Re:Ah, Estonia - the country of SS by Tempest_2084 · · Score: 1

      Given the average SS veteran would have to be pushing 90, I'm guessing they're not doing much marching anymore.

    3. Re:Ah, Estonia - the country of SS by dunkelfalke · · Score: 4, Informative

      Bullshit. These marches honour WaffenSS veterans explicitly. Also those who happily participated in the Holocaust.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    4. Re:Ah, Estonia - the country of SS by thegarbz · · Score: 1

      Estonia is the only remaining country in Europe where SS (yes, _that_ SS) veterans march on main streets.

      Sorry I must have missed the part where the winning country gets to decide the losing one imprisons all of their military without trial.

    5. Re:Ah, Estonia - the country of SS by Cyberax · · Score: 2

      The thing is, veterans marched not just as veterans but wearing SS insignia. That's the difference.

    6. Re:Ah, Estonia - the country of SS by Cyberax · · Score: 1

      Yes. They were willing Nazi collaborators, happily participating in Holocaust.

    7. Re:Ah, Estonia - the country of SS by Cyberax · · Score: 1

      You should learn some history: https://en.wikipedia.org/wiki/... - SS was found to be a criminal organization in an international court, with the US approval.

      So yes, simply marching as a part of the SS is enough ground for universal condemnation. There have been no "good Nazis", since the war ended.

    8. Re:Ah, Estonia - the country of SS by Hognoxious · · Score: 1

      No conscripts in the SS, fatty.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    9. Re:Ah, Estonia - the country of SS by Cederic · · Score: 1

      the holocaust is fake

      No, it is not. It is very well documented, evidenced and people still alive experienced it first hand.

      You are either an idiot or a cunt, although I wouldn't rule out both.

    10. Re:Ah, Estonia - the country of SS by Cyberax · · Score: 1

      Not the words: "since the war had ended". Many people (even SS officers) during WWII didn't know anything about Hitler's atrocities.

      However, once the war ended the ONLY honorable way was to disavow Nazis. Marching in SS uniform is a clear opposite of that.

  11. Re:Brexit is the right decision. by GLMDesigns · · Score: 3, Insightful

    No. Because what you said is foolishness.

    Yes. England invaded lots of places. So did Spain and Russia (as it expanded east) and China (as it expanded west) and the Zulus (as they expanded south) and the Chaldeans and the Egyptians and the Greeks and the Persians and the ... (you get the point).

    Ruining it and causing migration - here's where you're wrong. English colonialism is not the reason for Pakistani immigration.

    You might as well blame Karl Marx for Zimbabwe's collapse. It would be more relevant than the 80 years of British rule.

    --
    If you're scared of your govt then you need to further restrict its powers
    Vote 3rd Party in 2016 and beyond
  12. Re:Brexit is the right decision. by liquid_schwartz · · Score: 3, Insightful

    What about the UK invading almost every country on the planet and ruining it beyond repairs being the cause of all these immigrants in the first place? Never crossed your mind did it?

    Let me get this straight, the UK invaded the majority of the globe and is single highhandedly responsible for ruining the countries and by extension for all the migrants. Wow, either they have far more capability than I've ever credited them with or you really don't take responsibility for anything. I view immigration as a case of if your country sucks fix it. If you can't fix it then don't take your messed up ways with you and assimilate into wherever you go. Too bad immigration seems to be a case of "my country sucks so I'll take my messed up ways with me wherever I go and ruin those places too". As I've said many times, you can have nice things or mass immigration but you can't have both.

  13. Re:To fight Russia, we must become Russia ! by coastwalker · · Score: 1

    Amusingly since the end of the cold war most western governments have implemented the tactics of the soviet union because no one can point out that the enemy used to do that.

    --
    Facts are history now plebs have politics for religion on social media.
  14. Re:Sooner it goes, the better by Halo1 · · Score: 1

    As for the technical (in)capacity of the Eurocrats

    The Council of Ministers are not Eurocrats. The Council of Ministers is literally a collection of ministers from the national governments of the countries in the EU. Depending on the topic at hand, different ministers meet under this umbrella name.

    In fact, the Council of Ministers is the one branch of the EU that is supposed to prevent the EU from being too Euro-centric and to forget about national interests. In practice, of course, national governments use it to introduce positions that are unpopular at home, so they can then blame them on the evil EU. Fortunately, it is often (but definitely not always) the European Parliament that blocks, or at least weakens these things (although I know that part of this is a political game, where extremes are introduced so that later supposed "compromises" can be reached that are still horribly bad).

    --
    Donate free food here
  15. Yappy little dog by Rick+Schumann · · Score: 1

    With a population of 1.3 million, it is one of the least-populous member states of the European Union, Eurozone, North Atlantic Treaty Organization (NATO), OECD and Schengen Area.

    Why should the rest of the EU even listen to them? 'President of the EU' or not? Also, good luck censoring the rest of the non-EU world.

    Politicians, when will they learn?

  16. Re:Sooner it goes, the better by Anonymous Coward · · Score: 1, Insightful

    So what harm has the EU done exactly?

    The EU eroded border security and caused a mass influx of criminal migrants and terrorists. While simultaneously prohibiting member countries from policing their own borders.

    Not to mention that the whole thing is designed to be an end run around democracy: power lies with the appointed commission, not the elected parliament. It's a lobbyist's and career politician's wet dream.

  17. Re:Sooner it goes, the better by penandpaper · · Score: 1

    As a vague confederation of states they are the most opaque. They must choose so that I can properly align my outrage meters to their actions!

    Could you measure their good/bad as compared to Obama drinking Coke or Pepsi as a moral issue? I need help. :-(

  18. The Internet's true value is still fragile by bjdevil66 · · Score: 1

    We could have 1TBs of fiber up to everyone's home and 10GB speeds on phones someday. None of that bandwidth will matter, however, if the only true value of the Internet - the uncensored, uninhibited flow of ALL 0s and 1s - is lost. "We need to be able to regulate what goes across our pipes because of X," in any form for any reason, is ultimately bad for the health of the internet.

    Yeah, we can wrap it up in "national security", "copyright holders protections", "good business sense", etc., but it's all still the digital equivalent of wholesale, Internet-wide chemo for an Internet "cancer" that is harming specific interests.

    The only cure for those Internet issues like what this Estonian douchebag wants to help "fix" is personal responsibility. Anything else will ultimately fail.

  19. Re:Fucktardedness by Opportunist · · Score: 2

    The internet will become what radio has become. The REALLY old farts here might remember the small, hobby-ish radio stations. Where they had witty DJs, playing local music, often even having local singers and bands who could perform live on the air, have a chat... remember? No? You'd have to be around 80 probably to do so.

    Today, what's left of radio stations is a corporate nightmare. A handful of stations, all playing basically the same rubbish nobody really wants to hear, all day, every day, bloodless, lifeless, bland.

    And that's what the internet is becoming. What made the internet awesome was that it was a bidirectional medium, the first medium where every participant was not only a receiver but could also become a sender. The not-quite-so-old ones might remember the 90s where people and even some (!) businesses created homepages ... with varying degrees of quality, ok, with very questionable quality. But you could see that someone made an effort, someone tried to leave a mark and a message, a message of individuality.

    Today, what's left of that is Facebook pages. All of them about as unique as English suburb houses. All of them created in the same style with the same tools saying the same rubbish all day long. Individuality? Nope. Conformity. We're all individuals. And we're all doing the same. Because that's all we are allowed to do anymore.

    And it is getting worse. Because with fewer and fewer people even wanting an individual, personal presence, fewer and fewer people would complain if such a thing becomes illegal. What will be left is corporate-owned, corporate-guided and corporate-designed pages where you may say what you're allowed to say.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  20. Re:Brexit is the right decision. by lgw · · Score: 4, Interesting

    Here's a revolutionary idea: perhaps moral blame is not heritable? Maybe, just maybe, the grandson is not to blame for the sins of the grandfather.

    --
    Socialism: a lie told by totalitarians and believed by fools.
  21. Re:Sooner it goes, the better by Anonymous Coward · · Score: 1

    Estonia is far and away the most "digitally transformed" state, or at least that's what they want to be seen as. Yet in secret they're in collusion with the entertainment mafia and working to reduce freedoms. This is troubling.

    Bitching about the Brits here is a little silly, since they actually lead the pack regarding censorship laws. They currently have not one, but at least three different censorship systems in deployment.

    As someone living inside Euro-land, native of this here country, somewhat like but not quite the same as England, I've come to the conclusion that while working together is a lofty goal, this isn't what the Eurocrats bring us. Their only option is failure and their only solution to failure is "more Europe". I didn't get to vote but my vote would have been "aye and yay" to Brexit. Because it really is the only way short of war to solve this problem.

    The EU/EC/EP/E... is unfixable and unwilling to admit it could do with improvement. It must go in its entirety. So that if one silly country wants to fsck itself up, the rest of us needn't suffer. We should probably limit ourselves to joint defense, only without the Americans making us all dance this time. Instead we're getting nannyed to death and we have no defense left. No wonder we're already buckling under the strain from the assault of... penniless refugees^Wfortune seekers. Thanks, Eurocrats.

  22. Re:Brexit is the right decision. by Anonymous Coward · · Score: 1

    Let's look at the world today.

    We see people from the worst third-world hellholes (most of which were actually ruled by the French, Spanish and/or Dutch, rather than the British) trying to get into places like the UK, the United States, Australia, New Zealand, Canada, Singapore and Hong Kong. These places with extraordinarily high standards of living wouldn't even exist in their present form if it weren't for the English, Scottish and Irish investing in them.

    Then there are places like South Africa, Rhodesia (sometimes called "Zimbabwe" and "Zambia" today), and India which once had rather high standards of living, but that have clearly gotten worse off as they've rejected the influence of the UK.

    The British Empire created what are today some of the best countries in the world. It's these countries that the worst third-worlders are now essentially invading, because these third-worlders are totally incapable of building anything equivalent in their home lands.

    Although you don't want to admit it to yourself, and especially in public, I know that you know all of this. You know that the British Empire brought civility, democracy, stability, and prosperity to billions of people. The nations that the British and the Irish built are among the best that have ever existed.

    The anger you're expressing here is just a cover for the extreme jealousy you feel. You just can't handle how successful the British Empire was, and how it's responsible for creating the best nations on Earth.

  23. Government doing MORE by micahraleigh · · Score: 1

    Those government helpers ... always helping us make correct choices about what we watch and who to believe and what to listen to and enjoy.

    Makes me just wish they had more of their fingers in my pocket helping me make more decisions.

    If only free market companies were so helpful!

  24. Re:Sooner it goes, the better by cayenne8 · · Score: 3, Insightful

    Brexit isn't sounding so bad now, is it....?

    --
    Light travels faster than sound. This is why some people appear bright until you hear them speak.........
  25. Re:Sooner it goes, the better by DontBeAMoran · · Score: 2

    And compaired to the USSR that murdered people or exiled others to Siberia or threatened word destruction to name just the top of the iceberg?

    Wait, are you saying the USSR is also responsible for sinking the RMS Titanic?

    --
    #DeleteFacebook
  26. Re:Brexit is the right decision. by DNS-and-BIND · · Score: 1

    Whites are responsible for slavery even though it was outlawed 150 years ago.

    Don't punish illegal aliens for the sins of their parents.

    Which one is right? They can't both be valid.

    --
    Shutting down free speech with violence isn't fighting fascism. It IS fascism!
  27. Re:Brexit is the right decision. by networkBoy · · Score: 1

    It's the same as communism:
    We are all equal, it's just that some are more equal than others.

    --
    whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
  28. Re:Brexit is the right decision. by nukenerd · · Score: 4, Insightful

    What about the UK invading almost every country on the planet and ruining it beyond repairs being the cause of all these immigrants in the first place?

    What BS.

    Britain colonised some places and these ended up being some of the best places to live (eg North America, Australia, NZ). Other places they did not colonise (in the sense of settling large numbers of people there) but administered (eg India, African nations, parts of the Middle East); some of these latter are hell-holes today. But they were hell-holes before - that is why Britain stepped in and administrated them. Britain would start with trading posts, but when trade stopped because of warring between different tribes inland, the British would go in and bang heads together to stop it. This led to taking over high-level internal policing and administration. In these cases the local native rulers were usually allowed to retain their positions under British protection. This was a different approach from some other European colonial powers (notably France) which tried to stamp out the local cultures.

    Eg gradually most (not all) of India became administrated in that way, including the building of infrastructure such as railways, ports, and government buildings often superior to those back home. While many British administrators and engineers and their families lived for long periods in India, they were not settlers like in North America and would always be talking of the day they would go back home. In fact settling was only done where the natives were clearly primitive (usually stone age in culture) and the climate was temperate.

    It was Britain withdrawing from some of these countries that was a disaster for them. India was a blood-bath in the late 1940's (but recovered eventually), and some of the old African colonies still are. The reason the UK is sought by immigrants is that Britain had given these ex-colonies a taste of how life could be better than in a shit hole, and of course the English language which remained the official one in many of these ex-colonies.

  29. Re:Sooner it goes, the better by Scarletdown · · Score: 1

    o/~ Here comes a candle to light you to bed. Here comes a chopper to chop off your head. o/~

    --
    This space unintentionally left blank.
  30. Re:Sooner it goes, the better by Anonymous Coward · · Score: 2, Insightful

    The media seem to be deluded into thinking that getting rid of Trump would magically make the massive percentage of populists go away,
    populists who are not on a decline but rather on a rise, ergo populism made its stamp. The media think they operage like some deity, with a swipe of their hands and people will cease to exist magically and divinely.
    In the past 30 years, i have never seen the field of journalism decline to such a state that it is in itself a parody of Trump now, in opinion pieces, in trying to play bias police, in producing clickbait (even BBC these few years is allowing the most ridiculous idiotic news on its front page such as that firemen sausage shit).
    At this point the only difference between big news brands and bloggers is a presence of tax subsidy for news companies and a more lavish brand of blogging.

  31. Re:Brexit is the right decision. by Kjella · · Score: 2

    I view immigration as a case of if your country sucks fix it. If you can't fix it then don't take your messed up ways with you and assimilate into wherever you go.

    Sounds to me like you've got nobody but yourself to care about, they're the only ones who think it's just to pick up a gun and start shooting back. The vast majority of civilians are way too busy trying to protect their family and those closest to them. Particularly when it's so unclear who's the good guys and the bad guys and the front lines are so unclear, it's one thing to go to war and leave your family behind in relative safety. It's quite different when they're in the war zone or even occupied territory with you, against an enemy that obey no rules of war. Millions of people have fled for good reasons to the surrounding areas and I don't blame them one bit for doing that.

    What doesn't add up is that almost all the migrants that come to Europe are young and male. Basically you're not sending women and children, you're sending the young, strong and "expendable" males of the family ideally 15-20yo so they can claim to be underage after burning all their papers. And they are supposed to be the economic or geographic anchor to get the rest of the family money or residency. If it looks like they're there to suck the government's teat as hard as they can, that's exactly the mission they were sent for. And they were probably the ones who least needed to leave, it's bullshit. You also don't need to be a genius to realize that many of these will become problem teens/young adults.

    Basically, we're helping the wrong people. And we're rewarding smugglers with boatloads (pun intended) of money to do it. And I don't mean it just as a NIMBY defense, save children <10yo and families particularly mothers. They're not the ones causing trouble.

    --
    Live today, because you never know what tomorrow brings
  32. Re:Sooner it goes, the better by sexconker · · Score: 2, Interesting

    " is unfixable and unwilling to admit it could do with improvement. It must go in its entirety " = BOLLOCKS, because you have no replacement to offer and you need the functionality the EU provides, if you don't like everything that's reasonable. Running away suddenly in the middle of the night and joining the circus-economy, that's not going to crush the EU, that's going to crush the UK.

    Face facts, UK cannot survive as an island apart. You are headed for decline if you wish to relive the empire of the past.

    There's a reason the pound is still a thing and they never adopted the Euro. The EU is France, Germany, and the UK, plus a bunch of troublesome leeches. If the UK actually follows through and leaves, France and Germany are going to be playing chicken to see who stays in the longest. The instant one of them leaves, the EU is dead, and Europe will go back to doing what it does best - warring with itself. The scaremongering about the UK economy isn't about the UK, it's FUD meant to keep France and Germany on the hook as long as possible.

  33. Re:Sooner it goes, the better by rastos1 · · Score: 1, Redundant

    The EU eroded border security

    Nope. EU expected that everyone attempting to cross the border will try to do so at a border crossing - you know, like in a civilized world. And the numbers attempting to cross the border somewhere else would be in range of hundreds or thousands per year, not millions. There is an option how to stop people crossing the border in the fields or in the woods. Look up Iron Curtain to see what it would look like. Fences, barbed wires, minefields, dogs, patrols with automatic guns shooting without warning ... it isn't pretty. I know that, because live on the other side. EU though that we, as civilization, have moved pass that. They were wrong, but I can't really blame them.

    and caused a mass influx of criminal migrants and terrorists.

    EU did not cause that. You could claim that soldiers, from some member states, took part in some activity that caused that. But EU? No. The influx happens because some parts of the world were turned into a shithole while at the same time EU represents much nicer place to live just a few thousands kilometers away. We can talk about why those places were turned into a shithole, but EU never said it has "strategic interest" in Middle East. EU never sent troops there in the name of "national security". That was some other country.

  34. Lots of chatter out here in the bleachers... by fustakrakich · · Score: 1

    But most of the population is in favor of more censorship. Liberalism is dead. It never really had a chance. All due to personal avarice. True change, for better or worse, will only happen on an evolutionary time scale. We desperately need a technological solution to create an indelible, universally accessible internet. The law of corrupt society can't be rendered impotent any other way.

    --
    “He’s not deformed, he’s just drunk!”
  35. Re:Brexit is the right decision. by infolation · · Score: 1
    Actually the only reason Estonia is the current EU President is because the UK relinquished its turn following Brexit.

    And, funnily enough, before they received their slot, Estonia were lauding their seemingly progressive digital attitudes.

    President Kersti Kaljulaid:
    Estonia's six-month turn at the rotating presidency will focus on digital innovation, particularly electronic public services, which the Baltic nation has made a hallmark of its own government. Estonia likes to boast that the only things a citizen cannot do online are get married, get divorced, or sell their home.

  36. Re:Sooner it goes, the better by thegarbz · · Score: 1, Troll

    Brexit isn't sounding so bad now, is it....?

    Yeah 100% of deaf people agree.

  37. Re:Fucktardedness by thinkwaitfast · · Score: 1
    Tune in, turn on and drop out.

    I rarely internet anymore, mostly killing time whenever I'm on break (20 year old slashdot habit). Very little is new or interesting anymore. On the bright side, toys for nerds are insanely inexpensive from China (I mean electronics and basic components, not premade widgets.It's more fun to build your own).

  38. Re:Brexit is the right decision. by thegarbz · · Score: 1

    Much of the wealthy west's problem with immigration has nothing to do with why the immigrants are fleeing their home country. Most people aren't immigrating because of their mess or religion or they way their country acts. They are immigrating because they are sick of dodging bombs, being ruled by dictators who would have them beheaded for any of the proposed "fixing" you suggest they do.

  39. Re:Sooner it goes, the better by thegarbz · · Score: 1

    The EU eroded border security and caused a mass influx of criminal migrants and terrorists.

    Personally I blame them for the rise of racist fuckwits on the internet.

  40. Re:Sooner it goes, the better by Kiuas · · Score: 3, Insightful

    The EU is France, Germany, and the UK, plus a bunch of troublesome leeches

    Eh, no. And no again

    Germany, France and the UK (in that order) are the 3 largest economies in the Union by far, but combined their GDP currently makes up around 51,2 % of that of the whole union. The UK by itself represents around 14,4 % of the total economy, France is 16 % and Germany is 20 %.

    The remaining 24 countries are miniscule in size compared to these 3, but in total are roughly as big as these three. After the UK leaves, the shares will change so that Germany will grow to be around 24 % of the whole economy, while France's share goes up to around 19. This means that the other remaining EU countries together actually dwarf Germany and France in size.

    Secondly, there are currently 10 member states that pay into the union more than they take out of it. In addition to Germany, France and the UK these include the Netherlands, Sweden, Denmark, Finland, Austria, Italy and Ireland (granted Ireland and Italy pretty much break even so their contribution is not major). Spain (5th largest economy in the union after Italy) also pretty much breaks even although they still currently receive slightly more than they pay in.

    The instant one of them leaves, the EU is dead, and Europe will go back to doing what it does best - warring with itself.

    What? The EU, for all its numerous flaws is still a succesful economic zone with a total GDP second only to the US once the UK leaves, so thinking that France or Germany would want to leave/shatter the union when it has benefited them the most as the biggest economies in the zone, or that 1 of them leaving would automatically trigger the collapse of the whole union and/or massive war is misguided. Especially now with the situation of Russia being what it is, there are very few leaders on a national level that would even want to leave, because reverting back to a bunch of solitary nation states is both economically damaging and is also essentially equal to surrending massive amounts of influence and control over to Russia, US and China, which from a purely game theory point of view of (geo)politics is a dumb as fuck move (for both the smaller states who will then be at the mercy of these larger players, as well as the big economies like France and Germany whose global influence/power would be greatly diminished if the Union stopped existing). This is something that both France and Germany understand well.

    Think of it is this way: after the UK goes, the choice faced by Germany and France will be the following: they can either continue as the 2 major rulers of the 2nd largest economy in the world 7 times the size of Russia, or they can choose to return to a situation in which they control only their own economies that are roughly equal to that of Russia and are massive dwarfed by the US and China thereby essentially sidelining themselves from the big league of the world economies,

    --
    "It is the business of the future to be dangerous" -Alfred North Whitehead
  41. Re: Sooner it goes, the better by mikael · · Score: 2

    Because in the past, wars were fought over resources ands "lebensraum"; farmland, living space, resources. At the national level, these wars could be avoided if countries cooperated and agreed to share resources (fishery stocks, mineral resources, farmland, river waterflow). So the EU seemed a good idea for 50 years after World War II.

    We're still having those fights but now but on a smaller scale; affordable housing, green spaces, rights of way along new property developments.

    https://www.wired.com/2017/04/...

    The EU managed to grind along, until one country decided unilaterally they they would invite millions of people in from the South Mediterranean, they discovered that they didn't have the resources to handle this, and would the rest of Europe please take their fair share. At the same time, it's getting increasingly obvious that the EU is one giant gravy train for ex-national politicians (MEP's) lobbyists and euro-corporations, especially through alternative media like forums and blogs.

    When the population starts seeking their news from alternative sources where everyone can join in the discussion, the incumbents suddenly decide that this is "fake news" and start to campaign to have it blocked. Then nationalist parties are starting to question all the money being sent to the EU in return for economic policies being decided hundreds of miles away that have no benefit for the local population. That is then labelled "populism" and a return to the 1930's.

    --
    Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
  42. Re:Sooner it goes, the better by sexconker · · Score: 1

    You assume either Germany or France is DUMB ENOUGH to think they'd gain something from leaving a 40~ year trade settlement overnight with NOTHING TO REPLACE IT WITH? The EU is better without you, frankly. You want to rule instead of be part of a federation, old habits die hard I guess. We'll see it sooner than later, most Britons realize they made a huge mistake with Brexit even though the pain has scarcely been felt yet. There is due course ahead.

    Now, continue bragging about isolationism as an economic boon, lol.

    They'd gain sovereignty and security. Who says they wouldn't have anything to replace it with? They'd simply renegotiate trade at better (for them) terms. The rest of the EU is entirely dependent upon the big three, and they know it.

  43. Re:Sooner it goes, the better by Anonymous Coward · · Score: 2, Informative

    Racists upset they're being passed over by the world?
    The world? I don't think if you've noticed, but the only part of the world that gives a single toss about racism is a western white minority with negative birth rates. The rest of the world enjoys being openly racist against neighbors as well as Westerners (except being racist against white westerners is politically sanctioned as a correct and just move). The Arabs and generally all Semite people still refer to blacks with their words for the term "slave", China and East Asia have only ever-increasingly horrible things to say about blacks the more they involve themselves in Africa for economic reasons, Slavs i'm not even going to discuss since they hate leftism as much as they hate nazism out of historical reasons of both fucking them up, Indians and surrounding people (China and Pakis) are all at each others throats with Sikhs and Buddhists in the middle, Africa itself is also a giant jumble, while Japs, Koreans and Chinese hate each other and all think the South-East islanders are inferior monkeys. South America has more segregation than 60's USA while we hear of Mexicans and Latinos trying to ethnically cleanse blacks from US cities on a yearly basis. All the world is racist without giving a toss, while you are stuck in a minority anti-racist population my little friend.

  44. Re:Brexit is the right decision. by Anonymous Coward · · Score: 1

    Fuck you snaggle toothed pasty-assed Brits.

    Read THIS if you really want to know how the UK not only treats the fucking darkies, but for that matter the 'lesser' classes of their own race.

    Your day is coming. First Brexit, next, marginalization, and lastly, being overrun by third-worlders.

    Fitting.

  45. Re:Sooner it goes, the better by Hognoxious · · Score: 1

    The EU still has no free trade treaty with India. The UK outside the EU could get one in a hartbeat, opening up a humongous and growing market for all sorts of goods and services.

    ROFLMA. St Theresa went out there a few months ago and they told her to jolly well do the fucking off. There is so much protectionism in the Indian economy it's beyond a joke.

    If anything happens at all it'll be tiny minor concessions for the Ruperts in the banks in return for something like H1B on steroids.

    --
    Confucius say, "Find worm in apple - bad. Find half a worm - worse."
  46. Re: Sooner it goes, the better by Anonymous Coward · · Score: 1

    Just wait. It will be the Firewall of Mecca, eventually.

  47. Illegality by manu0601 · · Score: 1

    the Presidency has worked hard in order to make the proposal for the new copyright Directive even more harmful than the Commission's original proposal, and pushing it further into the realms of illegality

    "Illegality" is the wrong word, as these people are writing what will become the law. "Illegitimacy" seems a better word to describe laws decided on behalf of the People but against its will.

    1. Re:Illegality by Antique+Geekmeister · · Score: 1

      It seems like a direct violation of several articles in the EU charter. So I think that "illegality" is not too strong a word.

    2. Re:Illegality by manu0601 · · Score: 1

      Then illegality is everywhere in EU, sine EU charter does not encourage ignoring referendum results.

  48. Re:Brexit is the right decision. by Anonymous Coward · · Score: 1

    In response to a long propaganda argument about British rule elevated hellholes to better places, I have a complete and succinct rebuttal in but one word:

    Ireland

  49. Re:Why? by AHuxley · · Score: 1

    Re 'Are they racing to the bottom?"
    New funding, new powers. New computer systems. New networks to build. More contractors, gov and mil staff. Overtime and top gov wages.
    The new staffing and equipment sales and support staff in every part of the EU.
    Having to create an EU wide system to find and then enter into all EU VPN use.
    To then find each VPN user in the EU and see what they are saying and doing while using a VPN.
    To keep all EU ip and isp data for years. To fully register every ISP account and keep records of ip use updated.
    Its a bureaucratic dream of big new cyber budgets and enforcing new EU laws.

    --
    Domestic spying is now "Benign Information Gathering"
  50. Re:Brexit is the right decision. by Z80a · · Score: 1

    The British population and the British government aren't the same thing exactly.
    If anything, the only thing they agree on is the brexit.

  51. Re:Brexit is the right decision. by Uberbah · · Score: 1

    Yes. England invaded lots of places. So did Spain and Russia (as it expanded east) and China (as it expanded west) and the Zulus (as they expanded south) and the Chaldeans and the Egyptians and the Greeks and the Persians and the ... (you get the point).

    The point seems to rest on a heap of false equivalencies, as only two of of the countries on your list aspired to globe-spanning empires.

  52. Re:Brexit is the right decision. by dunkelfalke · · Score: 1

    Seriously? There are people who stille believe in the white man's burden? In the twenty first century, no less? We Germans have a name for this kind of people - die Ewiggestrigen. That means people who are forever stuck in the past.

    --
    "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
  53. Re:Brexit is the right decision. by dunkelfalke · · Score: 1

    He is to blame if he still profits from them.

    --
    "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
  54. Re:Sooner it goes, the better by Godwin+O'Hitler · · Score: 1

    48% of us aren't realising we made a huge mistake. We've known it all along.

    --
    No, your children are not the special ones. Nor are your pets.
  55. Re:Sooner it goes, the better by Godwin+O'Hitler · · Score: 1

    Speak for yourself. I'd rather be ruled by people who actually care about me and my rights. They could be Martians for all it matters.

    --
    No, your children are not the special ones. Nor are your pets.
  56. Re: Sooner it goes, the better by Entrope · · Score: 1

    Please get your chronology right! The USSR was formed 10 years after the Titanic sank. The ship's sinking was actually a Bolshevik plot.

  57. Re: Brexit is the right decision. by Entrope · · Score: 1

    Now they will need to add "speak their mind" to that list.

  58. Re:Brexit is the right decision. by GLMDesigns · · Score: 1

    What does aspirations have to do with it? Are you telling me Alexander's aspirations or Kublai Khan's aspirations were any less?

    They didn't have matching technology - but if your objection is aspiration of world conquest, the original point falls apart.

    --
    If you're scared of your govt then you need to further restrict its powers
    Vote 3rd Party in 2016 and beyond
  59. Re:Sooner it goes, the better by pots · · Score: 1

    You're confusing the word populist, as it's applied to politicians, and populist, as it's applied to an ideologue. They're really used in very different ways.

    A populist ideologue is someone who believes in popular rule. This could be anything from a direct democracy advocate to an anarchist. These people are generally left of center.

    When a politician is called a populist, it's an insult. It doesn't imply any political ideology, be it left or right or other, it just means that they're catering to the lowest common denominator. They make lots of promises in order to gain power, promises which are generally infeasible if not outright impossible. Their supporters are either too ignorant to know they're being lied to, or too desperate to care.

  60. Re: Sooner it goes, the better by DontBeAMoran · · Score: 1

    But Avarist said the USSR was responsible for the tip of the iceberg!

    --
    #DeleteFacebook
  61. Re:Brexit is the right decision. by liquid_schwartz · · Score: 1

    ...And I don't mean it just as a NIMBY defense, save children <10yo and families particularly mothers. They're not the ones causing trouble.

    Unless you consider the costs imposed by education, healthcare, and in the case of US anchor babies. Other than that no trouble at all.

  62. Re:Brexit is the right decision. by Cederic · · Score: 1

    Snaggle toothed? pasty-assed? fucking darkies?

    You appear to be a racist cunt.

  63. Re:Brexit is the right decision. by Cederic · · Score: 1

    I believe you'll find the fucking Irish were the problem there. If they'd done the sensible thing and rejected the idiocy of Catholic beliefs they may have become civilised centuries sooner.

    Shit, they're still batshit fucking lunatic due to their archaic superstitious stupidity.

  64. Re:Sooner it goes, the better by david_thornley · · Score: 1

    The Trump base is very significant, but hardly a majority, and it's getting smaller demographically. It's in something of a panic now that the world is changing in ways it doesn't like. I sympathize with some (not nearly all) of their concerns, but they're trying to turn the calendar back and that simply isn't going to work.

    The media seems to be largely what it was in the 1960s and 1970s, except that there's less money in it and hence fewer big stories and exposes. It's not in a major decline. It always was like this. The difference is that there's lots of other sources of more or less news, and a large number of people have found the mainstream media saying things they don't like.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  65. Re:Sooner it goes, the better by david_thornley · · Score: 1

    They'd simply renegotiate trade at better (for them) terms

    The EU needs the UK less than the UK needs the EU, and there will be political pressure to make the new trade agreements less favorable.

    In the meantime,the UK has been getting a lot of US business because it's an English-speaking country with a large economy that's in the EU. The EU is a far larger market than the UK, so it's more important for businesses to have offices somewhere in the EU than the UK.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  66. Re:Brexit is the right decision. by david_thornley · · Score: 1

    The problems in the Middle East are largely because of British, French, and US activities, starting after WWI and the breakup of the Ottoman Empire into arbitrary national mandates. The US didn't really start disruptive activity until the 1950s.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  67. Re: Sooner it goes, the better by wickedwitchofwest · · Score: 1

    It's lack of financial responsibility and stuff like this and the 27 states wonder why the UK is leaving. Well the answer is that we hate the lack of control of our own borders, the lack of democracy and the enormous bills.

  68. Re:Brexit is the right decision. by david_thornley · · Score: 1

    There was the Church of England, and there were the Catholics. There were plenty of civilized Catholic countries. That wasn't the problem, unless you're saying they should have given up their culture to the invaders.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  69. Re:Brexit is the right decision. by Cederic · · Score: 1

    England went secular and built an empire. Ireland stayed true to its religious stupidity and continues to be a fucked up place.

    Draw your own conclusions.

  70. Orwell.. by LesserWeevil · · Score: 1

    ..was an optimist. He failed to forsee the Internet and the power it gives to governments.

  71. Re: Sooner it goes, the better by AnilJ · · Score: 1

    Indians do like it. Payback time or karma as they would call it.

  72. Re:Brexit is the right decision. by AnilJ · · Score: 1

    Not people of the Indian subcontinent. Not in modern history.

  73. Re:Brexit is the right decision. by AnilJ · · Score: 1

    Also Opium Wars. British were brutish.

  74. Re:Sooner it goes, the better by KingBenny · · Score: 1

    The harm it has done probably mostly lies in the fact that it has done nothing. ... more or less... supposing you're american, the EU is nothing like the united lobbies of the free world or mother russia-conglomerate ... it's a paper union, a dream, no one has ever in 2000 years of local history (definitely not before that) actually conquered and united europe whereas the other 'unions' were all forged and baptised in blood and fire (this might still be an option it seems b/c everyone is crying for strong men) . If i go out here and ask 100 people on the EU, i think about 90 will shrug it off due to severe apathy on politics and/or call it "just another layer of taxes". The forced help on member states from anything , greece, whatnot has not gone down very well in a period where cost of life goes up, wages dont and unemployemnt actually goes down. They have virtually handed the place on a silver platter to extremists and now try to combat it with censorship and even raids for speaking out in "hate speech" online and what not and what not
    if it were to break it would be a financial disaster for all but the rich ones (mostly those who kept their own currency i suppose) xept luxembourg, no idea how they would be affected by going back to the franc. And theres the thing with refugees (which also was like giving it up to the rightwing on a gold platter) where they just keep taking more than they can afford and every member state just has to go with it. Again, in times where life is costly and income is hard to get, solidarity has its limits , and so on ... they seem to be lofty on human rights but not very shy to break rules for raison d'état. This censorship thing doesnt surprise me at all. I doubt it will pass but the lords of mordor are scared of the monster they created by being very pc-principal if that makes any sense at all , merkel is euhm, definitely not the new hitler but in her attempts to unify she missed a few rotting spots lol ... its a bad economic climate to go save the world and expect a few to carry a lot and its somewhat hard to just turn back ... brexit ... maybe frexit ... if the flemish nationalists had their way they'd not only split from the wallons and brussels, but also from europe (i dont know this works in their dreamworld economically b/c there's virtually no actual production and the bit of tourism certainly cant carry so its services, services services, and logistics ... i can see that here in hickville .. the industrial zone maybe has two or three actual production facilities, the rest is all office and distribution centers) meaning less jobs on the same amount of space people here arent really ashamed to call themselves racist a lot of the time and some arent really ashamed to call out loud how nice it would be if "uncle Dolf" came back and this is not really the hard core of europe so .... if they think censorship is going to fix it, it should show how well they're doing (but maybe i should be careful what i say hahah) most crying for a breakup don't really see the whole consequence of a broken euro and back to the original currency i once read an article on how if greece were to go back to drachme, effective capital of people would be halved, as in can buy half for the money they have now after conversion, im not an economist but i have no reason to disbelieve that either in soviet hellgium, you need a license to wipe your ass, CO-tax soon applied for breathing out ...

    --
    Free speech was meant to be free for all... how can anyone grow up in a nanny state ?
  75. Re:Brexit is the right decision. by GLMDesigns · · Score: 1

    The only place where you can say truly say that is the creation of Iraq and possibly the entire group of countries - Lebanon, Jordan (now Jordan, Israel and Palestine), Syria and Iraq. The other countries from Morocco to Egypt did not have border changes and the time that they were conquered was irrelevant. (Turkey was a foreign power in Egypt and the Sinai Peninsula as well). There were no hard and fast borders in the Sinai peninsula so the marks on the map meant little. There was also close to no boots on the ground there because it was seen as a waste land.

    --
    If you're scared of your govt then you need to further restrict its powers
    Vote 3rd Party in 2016 and beyond
  76. Re:Brexit is the right decision. by david_thornley · · Score: 1

    I believe you'll find that England built an empire and then went secular, rather than the reverse. The mostly Catholic French built an impressive empire also.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  77. Re:Brexit is the right decision. by david_thornley · · Score: 1

    Yes, that group of countries is what I meant. North African countries did not get messed up in the same way. They also don't seem to cause nearly as much trouble.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  78. Re:Brexit is the right decision. by GLMDesigns · · Score: 1

    The Ottoman Empire Controlled everything from Iran to Saudi Arabia to Egypt.

    Regardless of anything new borders would have been drawn up after WWI.

    The Arabian Peninsular's borders are fine.
    So are Lebanon's and Syria's.

    The only thing truly messed up is Iraq and the Israeli / Palestinian problem.

    Israel would have not been a problem if there weren't pogroms and other attempts to kill immigrant Jews during the 1920s and 1930s. If all was cool then Jews would simply be a minority population in the Kingdom of Jordan. Jordan would include what is now Israel and Palestine. So the Israeli - Palestinian problem is NOT due to the borders made after WWI.

    And Syria's Eastern Border and Iraq would have been a mess anyway with it's rivalries.

    Kurd v Arab v Persian & Shia (mostly Persian) v Sunni v (the mix of "heretical" Muslim religions often Kurd) would have been as intractable in the 1920s as it is today, 100 years later.

    --
    If you're scared of your govt then you need to further restrict its powers
    Vote 3rd Party in 2016 and beyond
  79. Re:Brexit is the right decision. by Uberbah · · Score: 1

    What does aspirations have to do with it?

    Um...everything? Complete this sentence: "the sun never sets on the XYZ Empire." Did Russia have colonies across the world? How about China?

    They didn't have matching technology

    You're right - China was a century ahead of any European country in naval prowess, yet they didn't establish a global empire - as opposed to England and Spain.

    but if your objection is aspiration of world conquest, the original point falls apart

    Or you're just really eager to hold onto that false equivalency.