Slashdot Mirror


Online Petition Site Crashed By Millions of 'Cancel Brexit' Signers (time.com)

"More than 3 million people have signed a petition to cancel Brexit on the U.K. government's official petitions website -- so many that the website crashed multiple times," reports Time: The petition had received some 600,000 signatures at a rate of 1,500 every 60 seconds before the site crashed at about 9 a.m. U.K. time on Thursday, the Guardian reported. By mid afternoon, the site was back online but suffering intermittent outages. There were 2 million signatures by Thursday evening and 3 million by midday Friday...

The U.K. government must now allow a debate on the petition's contents in parliament.

The Guardian notes that the CTO of company that built the petition site had bragged in a tweet Wednesday that the 1,000 signatures per minute was "Not too bad, but nowhere near crashing the site --you all need to try harder tomorrow."

By the next morning he had tweeted âoeWell done everyone -- the site crashed because calculating the trending count became too much of a load on the database."

478 comments

  1. Crashing the site with no survivors! by Anonymous Coward · · Score: 0

    They expect one of us in the wreckage!

    1. Re: Crashing the site with no survivors! by Anonymous Coward · · Score: 0

      I think if the EU really wanted them back they would have made it a lot easier to stay in the first place.

    2. Re: Crashing the site with no survivors! by Anonymous Coward · · Score: 0

      Good joke

    3. Re: Crashing the site with no survivors! by Anonymous Coward · · Score: 0

      They can't cancel Brexit. The wording of the referendum prevents it. End of story. Maybe write better referenda in the future. Sorry chaps.

    4. Re: Crashing the site with no survivors! by cyber-vandal · · Score: 1

      The ECJ says otherwise old boy. Maybe you should pay more attention.

    5. Re: Crashing the site with no survivors! by Anonymous Coward · · Score: 1

      You mean the wording of the non-binding referendum? Parliament can do whatever they have courage to do. Which is probably nothing.

    6. Re: Crashing the site with no survivors! by Anonymous Coward · · Score: 1

      It was easy. Don't elect a government of morons who want a show stunt to diffuse voter tension, then when the stunt blows up in your face, don't pick a leader who only serves because she was the one person dumb enough to promise she could deliver what everybody wanted without consequence.

      Sadly, the UK can't even realize they should have negotiated their own politics first.

    7. Re: Crashing the site with no survivors! by Barsteward · · Score: 1

      you just proved you know nothing. The UK doesn't have to leave and then everything stays the same.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    8. Re: Crashing the site with no survivors! by Barsteward · · Score: 1

      bollox.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    9. Re: Crashing the site with no survivors! by Hognoxious · · Score: 1

      The leader of the opposition says we're doing nothing. Well let me tell you that it's a red, white and blue nothing!

      I can actually imagine the silly mare saying that.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    10. Re: Crashing the site with no survivors! by Anonymous Coward · · Score: 0

      At least they seem to be making progress correcting the issue. Brexit is losing by about 10% in Parliament now. They have mechanisms - which it's looking like they will use - to hold another vote, now that there has been robust public debate on the issue.
       
      meanwhile, see how the US political system has been doing over that same period. From the courts, to Congress, State governments, and all the way to the top. Ran into the ground with nothing but a continuing death spiral in sight. The "opposition" party has given us... Ocasio-Cortez as a solution. The US should be making drastic changes at every level to get that extra 10% of sensibility the UK government seems to have. That is what success will hinge on.

  2. Crap software by Anonymous Coward · · Score: 0

    1500 per 60 seconds is nothing a well designed database can't handle.

    1. Re:Crap software by DontBeAMoran · · Score: 4, Insightful

      1500 divided by 60 equals an average of 25 hits per second.

      Shouldn't even a low-end Raspberry Pi Zero be able to handle that?

      Let me guess: the fucking page was trying to push 1MB of HTML, 2MB of CSS, 5MB of javascript and 10MB of images for each page hit?

      --
      #DeleteFacebook
    2. Re:Crap software by omnichad · · Score: 1

      If there was ever a case where eventually-consistent databases instead of straight SQL would be better, this is it. This had nothing to do with images and stylesheets, I'm sure.

    3. Re:Crap software by Anonymous Coward · · Score: 0

      No. It's actually a very simple page. Surprisingly so, actually.
      And yet it broke.

    4. Re:Crap software by raftpeople · · Score: 1

      It also probably had nothing to do with SQL, 25 txns per second is barely a pulse.

    5. Re: Crap software by reanjr · · Score: 5, Interesting

      If you RTFS, you would know it was the ever changing trend analysis that brought them down.

      They most certainly could have done better, but there's no indication it had anything to do with pushing static assets.

    6. Re:Crap software by Anonymous Coward · · Score: 0

      Maybe they are using a shared server.

    7. Re: Crap software by Anonymous Coward · · Score: 0

      You have to understand the people knocking SQL are either old fucks who haven't been relevant since servers ran 7200rpm spinning disks or hipsters who know nothing but what they've gleaned from those sad and ancient fucks.

      Yeah they should've used Mongo it's webscale!

    8. Re:Crap software by Anonymous Coward · · Score: 1

      I'm going to guess its astroturfing, and articles like this portray it as something "everyone" is against. These large trade deals are worth a lot of money.

    9. Re:Crap software by LynnwoodRooster · · Score: 1

      Well, that load you state would just about cover the required GDPR disclosures, so we'd also have to add in the overhead for the actual content - the number 25.

      --
      Browsing at +1 - no ACs, I ignore their posts. So refreshing!
    10. Re:Crap software by Anonymous Coward · · Score: 0

      Even the poorest SQL query that requires a global lock will easily handle 25 inserts per second. I think it is likely some statistics calculation failed (maybe it is executed on each update?)

    11. Re:Crap software by omnichad · · Score: 1

      It's not the inserts. It's probably the aggregate functions to display "trends" that was mentioned. Probably recounted on every page load with no indexes.

    12. Re: Crap software by Anonymous Coward · · Score: 0

      Maybe it couldn't handle all the gdpr cookie popups?

    13. Re:Crap software by Anonymous Coward · · Score: 0

      Let me guess: the fucking page was trying to push 1MB of HTML, 2MB of CSS, 5MB of javascript and 10MB of images for each page hit?

      you didn't bother to even visit the link did you?

    14. Re: Crap software by djinn6 · · Score: 1

      Seems like a simple fix is to just cache the results for a minute? Nobody needs that level of freshness on a trend line.

    15. Re:Crap software by Livius · · Score: 1

      well designed

      I needed a good laugh.

    16. Re:Crap software by Red_Forman · · Score: 1

      Hell, I didn't even bother to read the summary.

      THIS. IS. SLASHDOT! /SpartanVoice

    17. Re:Crap software by Anonymous Coward · · Score: 0

      Welcome to the internet, where people go directly to the comment section because of comments.

    18. Re: Crap software by Anonymous Coward · · Score: 0

      Better than that, don't fucking put CPU gobbling shit in a web page - use a background periodic process to calculate it and store the value somewhere so each web request can simply read that!

      But if you're a PHB, you don't do the obvious. You simply get a bigger server with more CPU, then stick it in the cloud (our idiots did this, cost them a fortune and didn't really fix their issue - bellends in management listening to millenials who know f* all - ending in much amusement as I left the company because they'd rather listen to a jumped up little new kid on the block rather than someone with experience.

      Said company is no longer No.1 in it's market and is struggling. I now work where experience is valued and debates are welcomed instead of silently given lip-service! And we're owning our market as a result!

    19. Re:Crap software by DontBeAMoran · · Score: 1

      No I did not visit the great link because I'm afraid of changelings.

      --
      #DeleteFacebook
    20. Re: Crap software by Anonymous Coward · · Score: 0

      It doesn't make sense. Tell them to deal straight with the public.

    21. Re: Crap software by Anonymous Coward · · Score: 0

      I have an old Dell r710 in my garage, it's doing 250,000 updates per second with mySQL. As long as you fit in ram and don't have an stupid queries it should be fine.

    22. Re:Crap software by Hognoxious · · Score: 1

      These large trade deals are worth a lot of money.

      Yes, but to who? (looks around nervously).

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    23. Re: Crap software by Anonymous Coward · · Score: 0

      I am sure the common interest will prevail in the market place of ideas!

    24. Re: Crap software by Hognoxious · · Score: 1

      It must do, sir! To avow the contrary would go against the very tenets of democracy. It would make one an elitist of the sort that Boris Johnson and Jacob Rees-Mogg continually warn us about.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    25. Re: Crap software by Anonymous Coward · · Score: 0

      Exactly this. They should have just had a script calculate it every 1-5 minutes and show that result to everybody instead of trying to calculate it 25 times per second for no reason.

    26. Re: Crap software by Anonymous Coward · · Score: 0

      You can't fix simpletons who thinks that 1500 signatures equals only 1500 inserts of sql...
      Stay with Excell tables.

    27. Re: Crap software by Anonymous Coward · · Score: 0

      Mongo used to slow down at larger loads, but I heard it's better now.

    28. Re: Crap software by Anonymous Coward · · Score: 0

      Actually the gov Web pages have a general policy of no images unless absolutely necessary. They are actually quite well designed from that point of view

    29. Re:Crap software by angel'o'sphere · · Score: 1

      Even then it should not "crash" ... a computer does not just crash because of overload, it simply gets slow in responding.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    30. Re: Crap software by Hognoxious · · Score: 1

      Then they'd get millions of complaints along the lines of "It's not working, I put my vote in and the picture didn't change".

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    31. Re: Crap software by Cytotoxic · · Score: 1

      Exactly so. They just didn't catch it before because they never load tested against that much traffic.

      I've run in to this situation before... we had several pages on CRM packages that calculated "what do I do next" for different workers. They pulled fairly complicated queries across millions of records.... but they worked fine because we did a good job of optimizing everything.

      And then....

      Someone started a fad of hitting refresh a bunch of times to get a better assignment.

      One person doing that still wasn't a big deal. But hundreds? It multiplied the load from one two requests per agent every five minutes to several per second. Oooops. Didn't plan on that.

      Determining the scope of "what are users going to do" is surprisingly tricky. People do things that, from the point of a developer...... well, they just don't make sense.

    32. Re: Crap software by Anonymous Coward · · Score: 0

      Your vote isnâ(TM)t counted until you use a link from an email they send you. It took a couple of hours for that email to reach me. In that time, the count had increased 200,000+

    33. Re: Crap software by sound+vision · · Score: 1

      Very rarely does anything on the server end crap out due to network bandwidth, unless a DDoS is involved. Bandwidth is cheap today. But, its VERY common for sites to crap out because they have a fucked-up SQL database that either pegs the CPU at 100%, or if they have that limited, that it simply can't answer the SQL requests before the HTTP connection times out.

      Source: I professionally monitored web servers hosting collectively hundreds of thousands of sites.

    34. Re: Crap software by sound+vision · · Score: 1

      Who said the computer crashed? What I read was the web site crashed. If your HTTPS timeout is 120 seconds, and its taking the server 150 seconds to generate the page, the connection times out and you get nothing.

    35. Re: Crap software by Hognoxious · · Score: 1

      "It's not working, I put my vote in then clicked on the link in the email and the picture still didn't change".

      Same thing, modulo the lag.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    36. Re:Crap software by Anonymous Coward · · Score: 0

      No I did not visit the great link because I'm afraid of changelings.

      Yeah but at least Odo is on your side.

      Funny that his punishment for being the first to kill another of his own kind was? Being stuck as a human (for a while). You like the "solids" so much, now be one of them!! So take that!

    37. Re: Crap software by Anonymous Coward · · Score: 0

      redis> INCR hitcounter
      Oh my god, scaling is so hard!

      It's unfathomable that 25 requests per second could bring any site designed for public use.

  3. Open to abuse by foobar666 · · Score: 2, Interesting

    Signatures to the petition aren't verified as being British citizens and it doesn't prevent multiple voting. This has been demonstrated by newspapers. Analysis has already shown a large number of signatures from outside the UK, including North Korea and Russia.

    1. Re: Open to abuse by foobar666 · · Score: 0, Troll

      Also some lovely information about the person who started the petition: https://order-order.com/2019/0...

    2. Re: Open to abuse by Anonymous Coward · · Score: 0

      Fake news doesn't care. Brexiters will just have to keep voting until they get tired of voting then the remainers win.

      That's what passes for Democracy these days. Good thing the politicians passed gun control first.

    3. Re:Open to abuse by Anonymous Coward · · Score: 0

      Particularly impressive that Russia and Best Korea managed to send 1 million people to London today to support their online efforts ...
       

    4. Re: Open to abuse by Anonymous Coward · · Score: 0

      Not sure I see the relevance of information on who started the petition. How does it invalidate the opinion of those who signed?
      Care to link to the other claim about the analysis showing the large numbers from outside the uk?

      I doubt anyone expects the outcome of this to be definitive in a withdrawal. Frankly I'm not even sure the overall point, the original vote was nearly 50/50, so MPs will be fully aware that whatever happens about half the country will be pissed off with in the short term at least. 4 million or so (which it's at now) is a fair way short of those who voted remain, let alone those who voted leave.

    5. Re:Open to abuse by Anonymous Coward · · Score: 3, Insightful

      You know that UK citizens can live abroad, right? And somebody taught you to write deceptively ambiguous phrases.

    6. Re:Open to abuse by Anonymous Coward · · Score: 2

      And the million marching in London, are they bots too?

      The petition site uses email verification, so it not trivial to create a large number of fake signatures. https://www.bbc.co.uk/news/technology-47668946

    7. Re:Open to abuse by Calydor · · Score: 0, Flamebait

      Not to mention there are roughly 55 million people in Britain, and the original vote was close to a 50-50 split. Until you show 30 million or more unique votes to cancel Brexit it doesn't mean anything other than "People opposed are still opposed, news at 11."

      --
      -=This sig has nothing to do with my comment. Move along now=-
    8. Re: Open to abuse by Midnight+Thunder · · Score: 4, Insightful

      Thatâ(TM)s not what happens today. FUD is doing a good job of helping those destructive to society get in power and stay in power. In the meantime a well researched stance is screamed at for being elitist, left wing, supporting already defeated candidates and non-patriotic

      Donâ(TM)t underestimate the power of the misinformed populist vote. It has hurt the US, the UK and other countries.

      Your opinion and votes matter more than ever. We should not need to resort to demeaning opponents (dead or alive) to try to make our arguments. Taking time to understand what scares a person will likely help make a better argument for trying to win them over.

      --
      Jumpstart the tartan drive.
    9. Re:Open to abuse by Anonymous Coward · · Score: 0

      Assuming everyone is eligible to give vote and ignoring multiple vote problem there's approx 7.7 billion people who didn't vote for cancel.

    10. Re:Open to abuse by Anonymous Coward · · Score: 0

      Analysis has already shown a large number of signatures from outside the UK, including North Korea and Russia.

      And FCC.gov.

    11. Re:Open to abuse by Anonymous Coward · · Score: 0

      Media say hundreds of thousands, but looking at the aerial photos I'd say 30-40,000.

    12. Re: Open to abuse by Anonymous Coward · · Score: 0, Insightful

      > Donâ(TM)t underestimate the power of the misinformed populist vote.

      If you don't agree with them you'll be denounced now, imprisoned later, killed eventually. Whatever it takes.

      So says the Pan Europa voice of Jean Monnet, Coudenhove-Kalergi, Blair, Juncker and you.

    13. Re:Open to abuse by Anonymous Coward · · Score: 5, Interesting

      The petition can be signed by UK passport holders - anywhere in the world.
      I've a British passport, live in Canada, and have signed it.

    14. Re: Open to abuse by Anonymous Coward · · Score: 0

      Lol! They've beaten captchas, email verify is child's play to fool compared to that.

      Numbers like this scream "bots".

    15. Re: Open to abuse by chthon · · Score: 0, Flamebait

      FUD indeed. I don't understand why Nigel Farage and Boris Johnson still haven't been taken into a dark passage to get beaten the hell out of them.

    16. Re: Open to abuse by Anonymous Coward · · Score: 0

      This is supposed to be a serious argument in the discussion, or are you just underbellying?

    17. Re:Open to abuse by rworne · · Score: 1

      Not too hard?

      nobrexit+1@gmail.com
      nobrexit+2@gmail.com
      ...
      nobrexit+1000000@gmail.com

      Not too hard. Only need one valid email address.

      --
      I tried every decent and legal way I could think of to resolve the issue w/the business before I rented the chicken suit
    18. Re: Open to abuse by Anonymous Coward · · Score: 2

      My daughter signed it from Herzegovina and I signed it from Iceland. We are both English, just out of the country at the moment.

    19. Re: Open to abuse by Anonymous Coward · · Score: 0

      Yeah because anything that prevents the move towards communist hell is a bad thing, right?

    20. Re: Open to abuse by phantomfive · · Score: 1

      I can't tell if you're pro-establishment, anti-establishment, or antidisestablishmentarian. Wow!

      --
      "First they came for the slanderers and i said nothing."
    21. Re: Open to abuse by Anonymous Coward · · Score: 4, Informative

      British citizens outside the UK are entitled to sign. And that "large number" was about 3%, last I heard. Which is well in proportion to the number of expat Brits.

    22. Re:Open to abuse by markus · · Score: 4, Informative

      Stop spreading rumors. You can verify for yourself that more than 95% of the votes come from within the UK: https://docs.google.com/spread...

    23. Re:Open to abuse by Anonymous Coward · · Score: 0

      So, are you suggesting that this is some sort of open petition on the internet? One that might choose to rename the UK McUK UKFace? Say it ain't so! And a conspiracy involving North Korea and Russia, who clearly give a flying fuck about Brexit--well, if anything Russia wants Brexit to happen because it undermines the EU and creates a political shit show. Honestly, that Brexit is happening at all is a great example of why major political decisions shouldn't be decided on a near even split.

      Even further, I'd tend to argue that most shouldn't be done through direct referendum. I'd feel radically different if there was repeated opportunities to cancel then cancel cancel the Brexit vote. That's fundamental what Parliament can do whenever it does something it decides might be a bad decision. That the populace as a whole is only given a one shot choice and it's left to Parliament to choose what to put forth as a referendum, how many times to put it forth until they get the result they want, and they have the choice to ignore the result because it's non-binding just makes it, again, a political shit show.

      But, yes, let's focus on the latest online version of this, as if in any fashion it's any worse than the original shit show.

    24. Re: Open to abuse by Anonymous Coward · · Score: 0

      Hmmm let's see. Is the poster literally someone who has nothing better to do than post stupid shit on a weekend or is the poster someone who just had time to read the headline, make a quick comment an get back to their normal life? I wonder. Too bad you can't force anybody to be smart, AC. Ever. For any reason. Kind if like the other poster who probably never had an ounce of responsibility in his entire life.

    25. Re: Open to abuse by anarcobra · · Score: 1

      Or at least arrested for insider trading.

    26. Re: Open to abuse by Anonymous Coward · · Score: 0

      Why does your post remind me of this...

    27. Re: Open to abuse by TheMeuge · · Score: 0

      No, they are zombies. The media told them they had to be there like the little drones they are, and they complied.

    28. Re:Open to abuse by Anonymous Coward · · Score: 0

      Leftards hate it when rightards show their boundless ignorance and get bamboozled, lied to, and tricked into making profoundly STUPID decisions. Strangely, rightards fall for the same old shit time after time. Sad!

    29. Re:Open to abuse by 91degrees · · Score: 1

      British citizens do live in other countries. Including North Korea (we have an embassy there) and Russia. Signatures from other countries seem to be reasonably consistent with the number of British ex-pats in those countries.

    30. Re: Open to abuse by Anonymous Coward · · Score: 1

      "Not to mention there are roughly 55 million people in Britain, and the original vote was close to a 50-50 split. Until you show 30 million or more unique votes to cancel Brexit it doesn't mean anything other than "People opposed are still opposed, news at 11.""

      You do realise that only 15 million votes were cast for Brexit right? Why should a motion to cancel it have 100% agreement of the turnout of the last referendum? You are essentially saying that if every single leaver changed their mind, it still wouldn't be enough. This isn't too far from Conservative and UKIP arguments mind you so perhaps that is the source of the nonsense?

    31. Re: Open to abuse by Anonymous Coward · · Score: 0

      >

      I doubt anyone expects the outcome of this to be definitive in a withdrawal. Frankly I'm not even sure the overall point, the original vote was nearly 50/50, so MPs will be fully aware that whatever happens about half the country will be pissed off with in the short term at least. 4 million or so (which it's at now) is a fair way short of those who voted remain, let alone those who voted leave.

      Indeed, it was a close vote. It would likely have swung the way of remain if the younger voters had actually voted. Maybe then we'd have seen the same vitriol and abuse from leave that we often see from remain these days.

      I signed the petition (and voted remain, for what it's worth) and am only slightly miffed that I had to do that because of the apathy of the younger generation at the moment when it actually would have made a difference.

    32. Re: Open to abuse by Anonymous Coward · · Score: 0

      Any example links to this supposed brainwashing? Because I have seen zero. Most media simply assume that a Brexit will happen. This remain petition is very clearly a grass-roots initiative.

      Not that I expect any coherent answer or an admission that you're just muddying the waters.

    33. Re: Open to abuse by drinkypoo · · Score: 3, Funny

      FUD indeed. I don't understand why Nigel Farage and Boris Johnson still haven't been taken into a dark passage to get beaten the hell out of them.

      I can't speak to Farage, but Boris Johnson is clearly being protected by the same kind of alien symbiote that's watching out for Donald Trump. It lives on the tops of their heads, and it feeds on their brainwaves — specifically those associated with narcissism.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    34. Re: Open to abuse by Anonymous Coward · · Score: 0

      1. the person is giving out instructions on how to fake sign it.
      2. The person is talking about threats to the prime minister - and how to use violence

      You don't see how it's relevant. Odd... all the lies and smears about the referendum result... all of which have proved false.

      yet blatant dishonesty, threats and fakery are "not relevant" when used by remain campaigners

    35. Re:Open to abuse by Wheely · · Score: 1

      And the opposing march nearly managed to fill a pub in Nottinghamshire.

    36. Re:Open to abuse by serviscope_minor · · Score: 2

      Not only that but the concentration of votes very closely matches the high concentrations of remain voters in the original referendum.

      --
      SJW n. One who posts facts.
    37. Re:Open to abuse by Anne+Thwacks · · Score: 1
      And the million marching in London, are they bots too?

      As one of the marchers, I can say with complete confidence, "Yes, I am a bot!"

      At least it is more believable than anything the ERG have ever said (apart from Boris's "we are going to make a Titanic success of this!" - that was definitely true).

      --
      Sent from my ASR33 using ASCII
    38. Re: Open to abuse by Anonymous Coward · · Score: 0

      Citation needed snowflake.

    39. Re:Open to abuse by Anonymous Coward · · Score: 0

      If you'd done even the first iota of research, you'd know that the petition site bans "plus addressing".

    40. Re: Open to abuse by Anonymous Coward · · Score: 0

      Because u r a bootlicker.

    41. Re: Open to abuse by Hallux-F-Sinister · · Score: 1

      I can't tell if you're pro-establishment, anti-establishment, or antidisestablishmentarian. Wow!

      Could be counterantidisestablishmentarianesqueishy.

      --
      Our reign has gone on long enough. Indeed. Summon the meteors.
    42. Re:Open to abuse by Anonymous Coward · · Score: 0

      And... where's the verification and duplication issues solved in your statement?

    43. Re: Open to abuse by Anonymous Coward · · Score: 0

      Did you count the anchor babies still in the womb?

    44. Re:Open to abuse by Anonymous Coward · · Score: 0

      actually, Russia, China, North Korea and USA would profit very much from UK cutting loose from EU.

    45. Re:Open to abuse by terrycarlino · · Score: 1

      I don't see that the number matters, really. Articles I read indicate most are people who voted to stay the first time. One article stated a large group came down from Scotland, which voted to stay. As I recall most of England outside of London voted to leave. London, Ireland and Scotland voted to stay. Total vote was 55 to 45 to leave.

      I've seem both sides claim that a revote would produce a win for their side. I've seen the reasons both sides make that claim and am not convinced by either side's argument.

      Whatever happens almost 50% of the populous is going to be convinced they were ignored. Culturally that is going to be a problem no matter what happens.

    46. Re: Open to abuse by Anonymous Coward · · Score: 0

      That's what passes for Democracy these days. Good thing the politicians passed gun control first.

      That's how it has always worked. People demand what they want till they get it or they give up.

      âoeCan all petitioners be heard? No, for all cry together. Who, then, shall be heardâ"is it those who cry loudest? No, for all cry loudly. Those who cry longest shall be heard, and justice shall be done to them.â

    47. Re:Open to abuse by AmiMoJo · · Score: 1

      Only 17.4 million voted for brexit, not 30 million.

      This isn't a second referendum. The point is to show support for a cancelling Article 50 so that politicians, who next week will likely get to vote on doing just that, can see that there is quite significant support for it.

      In fact it's by far the most popular opinion that the public has expressed since what brexit is became known. Back in 2016 no-one knew that this would be the deal because it didn't exist, but now we do and cancelling is so far the most popular option people have shown support for.

      The leavers are having their little protest but it's a complete flop. A couple of hundred people at peak compared to a million in London today in support of a second referendum.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    48. Re: Open to abuse by cyber-vandal · · Score: 1

      Constant pushing by state TV? Which state TV and what pushing did they do?

    49. Re:Open to abuse by Anonymous Coward · · Score: 0

      And even if they were, 3,000,000 signatures is less than 5% of the U.K.’s 66,000,000 enhabitants. They don’t represent the majority and should be ignored.

    50. Re:Open to abuse by AmiMoJo · · Score: 2

      Also note that the claims that votes came from North Korea are dubious as they are based on geo-location of an IP address. IP addresses change hands from time to time and such databases are known to be unreliable, especially in places like North Korea where their internet peering is via China.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    51. Re:Open to abuse by Anonymous Coward · · Score: 0

      You and every other faggot that signed it are the minority. In a democracy the majority rules and the minority can go fuck themselves.

    52. Re: Open to abuse by Anonymous Coward · · Score: 0

      It requires email validation. So itâ(TM)s posssible to fake large numbers of emails but itâ(TM)s a massive pain to do so, especially as they check for obvious and non-obvious signs of the emails being from a single source.

    53. Re: Open to abuse by Anonymous Coward · · Score: 0

      There were so many people, it took the crowd three hours to get from Bond Street to Green Park. I know, I was there. A 40k crowd would not need that much time.

    54. Re:Open to abuse by Ryanrule · · Score: 1

      Unmodding

    55. Re: Open to abuse by Anonymous Coward · · Score: 0

      To invoke Godwin's law, so your view of it as relevant would extend to a situation where say this person raised a petition suggesting nazis should be denounced, should be discredited and we should all actually support nazis?

      What fucking nonsense.

    56. Re:Open to abuse by Anonymous Coward · · Score: 0

      Not too hard?

      nobrexit+1@gmail.com
      nobrexit+2@gmail.com ...
      nobrexit+1000000@gmail.com

      Not too hard. Only need one valid email address.

      Petition site rejects gmail's + addressing. So no.

    57. Re:Open to abuse by Anonymous Coward · · Score: 0

      They are paid by big American companies.

    58. Re:Open to abuse by Anonymous Coward · · Score: 0

      Came here for this. Wasn't disappointed.

    59. Re: Open to abuse by Hognoxious · · Score: 1

      I don't understand why Nigel Farage and Boris Johnson still haven't been taken into a dark passage to get beaten the hell out of them.

      Because nobody can find them. Farage was trying to get Trump to give him a job as an ambassador, wasn't he?

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    60. Re:Open to abuse by Hognoxious · · Score: 1

      apart from Boris's "we are going to make a Titanic success of this!" - that was definitely true

      They should have put that on the bus: Leave the EU and Kate Winslet will get her norks out again!

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    61. Re: Open to abuse by Anonymous Coward · · Score: 0

      He's probably a crypto-fascist then.

    62. Re:Open to abuse by Bert64 · · Score: 1

      Well the petition threshold is 100,000 so even assuming just the people who marched (250,000) filled out the petition - and why wouldn't they, if they were willing to go to the effort of a physical protest then taking a couple of minutes to fill out a petition is nothing, then you're already well over the threshold which requires the petition to be debated.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    63. Re: Open to abuse by Anonymous Coward · · Score: 0

      I guarantee you that there wouldn't be consideration for a second vote if they had voted Remain.

      Only hyper-emotional authoritarian leftists indulge in childish "do over!" playground stupidity when they lose.

    64. Re: Open to abuse by Anonymous Coward · · Score: 0

      "B-b-but anyone who wants their sovereign country back is a traitor! Unelected distant German control is patriotic!"

    65. Re: Open to abuse by Anonymous Coward · · Score: 0

      Stop trolling. The reason people want to redo the brexit poll is because not only did the political class lied, but brexit also means a LOT of harm tot the UK people.

    66. Re: Open to abuse by Barsteward · · Score: 1

      Extreme Left AND Right wing isn't well researched. It's thick as fuck. Hope that helps moron. - fixed that for you

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    67. Re:Open to abuse by Barsteward · · Score: 1

      we'll all bow to your superior counting ability... not

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    68. Re:Open to abuse by Barsteward · · Score: 1

      and each one needs validating before its counted - that should be fun.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    69. Re:Open to abuse by Barsteward · · Score: 1

      +1 I was there too - we must have been part of a bot army

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    70. Re:Open to abuse by Anonymous Coward · · Score: 0

      Analysis has already shown a large number of signatures from outside the UK, including North Korea and Russia.

      Russia: 129
      North Korea: 28
      Total: 4,846,040
      updated at: 2019-03-24 08:38:05

    71. Re:Open to abuse by angel'o'sphere · · Score: 1

      Total vote was 55 to 45 to leave.
      It was more 50.5% - 49.5% ... and the leavers were 50% people who just voted "despite" and never thought they would win. Bottom line the BREXITERs are not even 25% of the voters.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    72. Re:Open to abuse by angel'o'sphere · · Score: 1

      But IP addresses don't change the country, in real life not even the city.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    73. Re: Open to abuse by angel'o'sphere · · Score: 1

      antidisestablishmentarian
      I think you forgot one or two "anti's" and one or two "establishments" ... and perhaps a "dis" here or there, too.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    74. Re:Open to abuse by Anonymous Coward · · Score: 0

      The petition can be signed by UK passport holders - anywhere in the world.

      You are right. I have signed the petition as Adolf Hitler.

    75. Re: Open to abuse by Anonymous Coward · · Score: 0

      News at 11, politicians lied.

      If a vote had to be redone every time politicians lied...

    76. Re:Open to abuse by Anonymous Coward · · Score: 0

      "I don't see numbers matter"

      Yeah, they don't when they contradict Remoaner propaganda.

      Like 17.4 million people - the majority - being ignored as it doesn't fit the remoaner narrative

      Like 100,000 people being multiplied by 10 when it does with the remoaner narrative.

    77. Re:Open to abuse by Anonymous Coward · · Score: 0

      The opposing march isn't due in London until 29/03/19 - the due leaving date.

      More remoaner lies and propaganda

    78. Re: Open to abuse by Anonymous Coward · · Score: 0
    79. Re: Open to abuse by Hognoxious · · Score: 1

      They sort of are. But usually it takes four or five years.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    80. Re: Open to abuse by Anonymous Coward · · Score: 0

      While one could define or implement democracy as such, that is not how society works. Northern Ireland is not a role model to strive for in case you somehow have not noticed. Minorities need rights, protection and consideration. If you're not willing to give that, chances are your country will be paying a high price for this unwillingness. This applies to both sides of the topic.

    81. Re: Open to abuse by Hognoxious · · Score: 1

      Unelected distant German control is patriotic!

      I agree, Ivan.

      God save the Queen!

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    82. Re:Open to abuse by Anonymous Coward · · Score: 0

      And the million marching in London, are they bots too?

      The petition site uses email verification, so it not trivial to create a large number of fake signatures. https://www.bbc.co.uk/news/technology-47668946

      Is this like when the American blacks had their "Million Man March" on Washington DC and it was barely even 100,000 of them but the media still called it that because they were pandering to minorities as leftists always do instead of telling the straight truth? After all, facts might offend smeone and make them retreat to their safe space or something.

    83. Re:Open to abuse by Anonymous Coward · · Score: 0

      And the million marching in London, are they bots too?

      The petition site uses email verification, so it not trivial to create a large number of fake signatures. https://www.bbc.co.uk/news/technology-47668946

      Is this like when the American blacks had their "Million Man March" on Washington DC and it was barely even 100,000 of them but the media still called it that because they were pandering to minorities as leftists always do instead of telling the straight truth? After all, facts might offend smeone and make them retreat to their safe space or something.

      Not to mention, the phrase "Million Man March" is totally offensive! What if some of the Marchers were women?!?! Or trans-gendered??! What bathrooms were provided for them?! My God/Science/Agnosticism I am so very offended! The nerve of those people! How can they be so very insensitive?! I thought they were Marching for progressive change!! There must be some way we can place the blame on cis-gendered (i.e. normal, but shhh! don't dare call it that!) white males!!

    84. Re: Open to abuse by Anonymous Coward · · Score: 0

      My daughter signed it from Herzegovina

      Good to know. Does she have big tits?

    85. Re:Open to abuse by Anonymous Coward · · Score: 0

      Reminder - left wing and globalists have something in common.

      If you don't vote... they will claim you voted for them.

  4. Sounds like Russian bots by Anonymous Coward · · Score: 0

    Who else would spend time signing pointless online petitions.

  5. So Slashdotted by future+assassin · · Score: 1, Funny

    like its 2001....

    --
    by TheSpoom (715771) Uncaring Linux user here. I have nothing to add to this but please continue. *munches popcorn*
    1. Re:So Slashdotted by Anonymous Coward · · Score: 0

      What's funny is that this is all about bots... paid for by the Remoan campaigners.

      After spending nearly 3 years claiming the referendum was only won by leave because they used bots to spread lies.

      Trust me, there's no depth the Remain establishment in the UK will not sink to at this point. We are truly in a post-democracy, post-truth, post-loyalty age.

  6. Re: Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    There has never been any possibility whatsoever that the UK would leave the EU.

  7. 'Cancel Brexit' petition woman receives death thre by Anonymous Coward · · Score: 1

    Hey nice try Vlag...

    https://www.bbc.co.uk/news/uk-england-47678275

  8. Trump is a Russian Asset by Anonymous Coward · · Score: 0

    Time to hang this traitor.

    1. Re:Trump is a Russian Asset by Anonymous Coward · · Score: 0

      compared to what? 50 years of soviet apology on behalf of the democrats?

    2. Re: Trump is a Russian Asset by Anonymous Coward · · Score: 0

      Da, comrade asslicker.

    3. Re: Trump is a Russian Asset by Anonymous Coward · · Score: 0

      AC is a Chinese asset

    4. Re:Trump is a Russian Asset by Anonymous Coward · · Score: 0

      Time to hang your boss putin instead.

    5. Re:Trump is a Russian Asset by Anonymous Coward · · Score: 0

      I think you may be confused which thread you are in.

  9. Why bots probably aren't gaming the 'Cancel Brexit by Anonymous Coward · · Score: 0

    https://www.bbc.co.uk/news/technology-47668946

  10. Re:Why is this place against sovereignty? by omnichad · · Score: 1

    Do you live in a sovereign state in the US? Does it have open borders with neighbor member-states? You seem to hate it without remembering where they got the idea.

  11. Re:Why is this place against sovereignty? by omnichad · · Score: 1

    Or wait, you must be from Texas.

  12. Define "large" by tomxor · · Score: 1

    ...Analysis has already shown a large number of signatures from outside the UK, including North Korea and Russia.

    Last time I checked there were shown to be 25 from Russia... The petition site is far from infallible but this is one of the most signed petitions since the sites inception, and clearly the one with the highest signing rate - Aren't you missing the point.

    1. Re: Define "large" by foobar666 · · Score: 1

      I think you're missing my point. So you accept their are clear signs both of foreign interference and that the signatures aren't being validated.

    2. Re: Define "large" by foobar666 · · Score: 1

      their -> there

    3. Re: Define "large" by dunkelfalke · · Score: 1

      There are way more than 25 Brits living in Russia or being there for work related reasons.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    4. Re: Define "large" by PopeRatzo · · Score: 1

      There are way more than 25 Brits living in Russia or being there for work related reasons.

      Yes, but I would hope MI6 agents are too busy to mess around with internet polls.

      --
      You are welcome on my lawn.
    5. Re: Define "large" by Anne+Thwacks · · Score: 1
      clear signs both of foreign interference and that the signatures aren't being validated

      Actually, there is no significant or credble sign of foreign interference, and they are being validated - but it takes time before you get the email saying your signature was refused. Some people on the Internet are lying. I hope you are not too shocked to hear it.

      I am sure there are a few dodgy ones, but it is as trustworthy as anything else in politics (so, no, don't try to throw the pdf over your shoulder).

      --
      Sent from my ASR33 using ASCII
    6. Re: Define "large" by Anonymous Coward · · Score: 0

      There are way more than 25 Brits living in Russia or being there for work related reasons.

      Yes, but I would hope MI6 agents are too busy to mess around with internet polls.

      Yes, but I was hoping that you would wonder what the flavor of nígger jism tastes like instead of constantly fellating Russkie cock.

  13. Russian bots by Anonymous Coward · · Score: 0

    n/t

  14. 3 million is nothing by Cederic · · Score: 0, Troll

    17 million voted to the EU and in the second vote (which we've already had, something the petitioners dishonestly ignore) 25 million voted for political parties that had 'leave the EU' in their party manifesto.

    So forgive me if I ignore the constant stream of selfish stupid people demanding that we ignore the democratic wishes of the UK population. Perhaps instead they should focus on removing the hundreds of MPs doing their best to overturn that democracy.

    1. Re:3 million is nothing by drinkypoo · · Score: 1

      So forgive me if I ignore the constant stream of selfish stupid people demanding that we ignore the democratic wishes of the UK population.

      You mean the stupid selfish wishes of the UK population? Pretty sure it's selfishness and stupidity across the board.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    2. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Agreed. Give the pooftahs what they want. They voted for it, let them reap what they have sowed. It is not government's responsibility nor charter to save society from its own poor decisions. They want Brexit? Let them have Brexit.

    3. Re:3 million is nothing by Anonymous Coward · · Score: 0

      They were coned by the same people they paid to represent their best interests for their individual convenience, inflate their selfish egos and indulge their pettiness... Wait, this is awkward... Dèjavú!.

    4. Re:3 million is nothing by drinkypoo · · Score: 5, Insightful

      Yes, looking out for your own interests is selfish. It's something all humans do, called self-preservation. Why you try to say that's a bad thing just proves that you are being disingenuous.

      Selfishness is a bad thing when it's taken to an illogical extreme. Suggesting otherwise is socially retarded.

      I assume you're from a country that would BENEFIT from the UK staying in the EU, so you're doing the same thing.

      Everyone but perhaps Russia and China will benefit if the UK stays in the EU, including the UK.

      The free ride is over, the EU is dead, and the world government they want is going down the toilet.

      The UK is not providing a free ride to the EU. They are getting quite a bit.

      Fuck off, scum.

      Run along, kid.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    5. Re:3 million is nothing by Anonymous Coward · · Score: 0

      The UK would BENEFIT from staying in the EU. At this point there's no question, leaving is financial disaster, especially leaving without a solid plan like the UKIP faggots would have you attempt. Don't be a moron. EU = financial stability.

      UK going alone = financial ruin for decades. You're either willfully stupid or just regular Republican stupid, but it doesn't matter, you're fucking dumb. The EU is the only chance the UK economy has of staying in the black. Period.

      You're a moron, UKIP traitor.

    6. Re:3 million is nothing by Registered+Coward+v2 · · Score: 4, Insightful

      17 million voted to the EU and in the second vote (which we've already had, something the petitioners dishonestly ignore) 25 million voted for political parties that had 'leave the EU' in their party manifesto.

      So forgive me if I ignore the constant stream of selfish stupid people demanding that we ignore the democratic wishes of the UK population. Perhaps instead they should focus on removing the hundreds of MPs doing their best to overturn that democracy.

      Quite. Let Scotland and Northern Ireland leave the UK and remain in the EU as their population wants and let the UK become the United Kingdom of England and Wales. Put the hard Border at UK Scotland and France. Solves the NI backstop issue as NI would now be an independent country in the EU.

      --
      I'm a consultant - I convert gibberish into cash-flow.
    7. Re:3 million is nothing by Megol · · Score: 1

      Representative democracy is not that every representative works for the idea the majority voted for, it's that representatives work for the things _they_ were voted in for. It's an inefficient and fuzzy system. You are wishing for tyranny of the majority and not a functional democracy.

    8. Re:3 million is nothing by Anonymous Coward · · Score: 0

      That's how democracy works, comrade. The people actually decide the fate of their countries, not statist apparatchiks and their insecure, elitist, kool-aid drinking followers like yourself.

    9. Re:3 million is nothing by markus · · Score: 5, Informative

      Typically, online petitions and opinion polls only have a tiny participation rate. Not everybody has readily available internet access, not everybody follow the media, and most importantly, not everybody bothers to get involved, even if it is in their own interest. This means, seeing 4+M signatures equals a much much bigger actual number of voters. And as is, the petition already represents about a quarter of the people who voted to "remain" in the referendum. That's significant. It suggests that there is a groundswell of support for remaining in the EU.

      The petition site isn't run by some shady online opinion poll. It's run by the UK parliament. According to a spokeperson, it actively filters submissions to detect bot activity. At the very least, it requires a unique name, verified (!) e-mail address and UK postal address. Some unconfirmed reports also state that it requires a UK passport number (maybe, that only happens for suspect submissions?). The UK parliament trusts that these numbers are substantially accurate.

      That's huge. It means anybody saying "the will of the people" is to continue with Brexit is blatantly lying to themselves and to the rest of the world.

    10. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Selfishness is a bad thing when it's taken to an illogical extreme.

      So does pathological selfLESSness.

      Everyone but perhaps Russia and China will benefit if the UK stays in the EU, including the UK.

      For ever shrinking values of 'everyone', sure, mainly the people at the top of the world government ponzi scheme.

      The UK is not providing a free ride to the EU. They are getting quite a bit.

      Yup, a bit more liberty-impinging bureaucracy every year, all for a taste of that radiant socialist future that's always just around the corner!

    11. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Apparently democracy is asking the people once for their uninformed consent and then have them live with that forever.
      You know there are reasons why democratic elections happen on a regular basis in politics. People can change their opinions.
      If the majority is still for Brexit, they will still vote for Brexit. And at this point it's difficult to claim that people were not informed in the mean time. And while I'm pretty sure that this would still not convince some of the hardliner Remainers, it would certainly be a lot more difficult to deny that this was the will of the people.

    12. Re:3 million is nothing by Anonymous Coward · · Score: 0

      But they will retain their freedoms. Which is a hell of lot better than a few extra bucks in their pocket. You would be a dictator if you had control.

    13. Re:3 million is nothing by Cederic · · Score: 4, Insightful

      Typically, online petitions and opinion polls only have a tiny participation rate.

      So do referendums, but the one to leave the EU was the largest vote in favour of any issue in the history of the country.

    14. Re:3 million is nothing by Cederic · · Score: 1

      Apparently democracy is asking the people once for their uninformed consent and then have them live with that forever.

      Not at all, it took maybe too long but after the 1975 vote for the EEC the UK was indeed given a chance to vote on the EU.

      Admittedly long after we'd been promised a vote on the Lisbon Treaty, but when it comes to the future of nations a little patience is justified.

      So sure, lets have another EU referendum. Since 41 years seems to be the traditional period between votes I suggest you start your 2057 campaigning now.

      Or you could listen to the voice of the British people in the 2017 parliamentary elections, in which 80% of the votes went to parties promising to take the UK out of the EU.

      Re-running referendums until the result matches the EU desires is a very EU thing to do, so no, I don't want to keep doing it.

      You know there are reasons why democratic elections happen on a regular basis in politics. People can change their opinions.

      I think previous decisions should be implemented before asking a new question.

      Parliament: "Do you want A or B?"
      Country: "B"
      Parliament: "We wanted A so fuck you, we will block and inhibit implementation of B until everybody gets fed up and goes for A just to get the thing over with"

      That's not the will of the people.

      at this point it's difficult to claim that people were not informed in the mean time

      Oh please. The last 30 months have been a litany of bullshit from politicians and the BBC all geared towards blaming everything bad on Brexit. The people have seldom been so deliberately misinformed.

      it would certainly be a lot more difficult to deny that this was the will of the people

      The only people denying that are the ones living in denial.

    15. Re: 3 million is nothing by Anonymous Coward · · Score: 0

      Peidiwch Ã'n gadael ni efo nhw!
      Don't leave us with them!

    16. Re: 3 million is nothing by Anonymous Coward · · Score: 0

      There have only ever been 3 UK referenda in political history... And two of those in the 2010s. To claim it as the biggest such vote in history is a bit misleading, pretty much like the rest of the Brexit campaign to be fair.

    17. Re:3 million is nothing by 91degrees · · Score: 1

      What wasn't part of the vote, or the manifestos of the parties (neither of which gained a majority) were any specifics of the deal.

      We now have a specific deal. Parliament doesn't believe this is what the people want, and have voted against it twice.

      So, I propose this decision is handed to the people.

      If this is what the people want, the referendum will pass. We will leave on the terms that you know doubt want. If this is not what the people want, the referendum will return a "no" result. This is probably not what you want but you do seem keen that the democratic wishes of the UK population are upheld, so I don't see any reason for objection should this be the case.

    18. Re:3 million is nothing by drinkypoo · · Score: 3, Insightful

      a bit more liberty-impinging bureaucracy every year, all for a taste of that radiant socialist future that's always just around the corner!

      The UK is one of the most government camera-dense locations on the planet, and a member of five eyes. The UK is that thing you described with or without the EU.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    19. Re:3 million is nothing by Anonymous Coward · · Score: 0

      You're almost rught, but it would be better to say, the largest voter turnout since the 90s and the largest of any referendum in history.

    20. Re:3 million is nothing by Cederic · · Score: 1

      Well look, if you really want to vote on May's deal or No Deal then I'll actually support that.

      See, no objection at all.

    21. Re:3 million is nothing by dryeo · · Score: 1

      The UK passport requirement must be for people out of the country as I'd guess a sizeable chunk of the population in the UK don't have a passport.
      Even passport isn't that good as a person can have a UK passport without the right of abode in the UK.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    22. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Typically, online petitions and opinion polls only have a tiny participation rate.

      So do referendums, but the one to leave the EU was the largest vote in favour of any issue in the history of the country.

      Largest turn-out by percentage of the eligible voters, yes. But "largest vote in favour" is misleading. It won ~52% to ~48%. In comparison, the vote to join the EU in 1975 won with 67% in favor, a total of ~17 million votes, very close to the number who voted for Leave in 2016 despite having 6 million fewer people voting in that referendum.

    23. Re:3 million is nothing by 91degrees · · Score: 1

      Which would you vote for?

      The option that ties us to the EU but without the opportunity to change that relationship (May's deal), or the one that completely screws us over as a nation (No deal)?

      I can't help thinking that the majority of those who voted leave would not want either option. The reason being most of them aren't complete fuckwits, but simply people having a hard time in life, voting in the belief that any change at least gives an opportunity.

    24. Re:3 million is nothing by Cederic · · Score: 1

      National support for 'no deal' is now 46%. People would rather suffer economically than continue being fucked over by the combination of parliament and the EU.

      Pretty damning of both, but there you go.

    25. Re:3 million is nothing by Anonymous Coward · · Score: 0

      If I had the power I would do this:

      0) Accept May's resignation.
      1) Revoke A50.
      2) Invoke A50 again, starting a new 2 year leave process.
      3) Start negotiating for the best deal possible. Maybe get Davis to act as negotiator and allow him freedom to do it properly.
      4) In 12 months time for talking is up. A deal must be on the table. Start a public debate on the options.
      5) In 15 months, a B I N D I N G referendum to choose between (1) WTO - no deal, (2) Davis' deal, (3) Remain
      6) In 24 months, Brexit in the manner decided by the binding vote of the electorate.

      We could call this the "do it properly" Brexit method.

    26. Re:3 million is nothing by Anonymous Coward · · Score: 0

      While you seem to understand the directions things will take in the short run, I doubt that those other supporters are widely aware of the consequences of a 'no deal' Brexit.

      Also you can be sure that disgruntled Remainers will still blame everything bad on their scapegoat - Brexit.
      However I wonder what all those who still think it'll be paradise and freedom and restore the UK to its old glory will do. I mean besides of their own default scapegoat, blaming the EU. But that may get old soon when they realize that there's plenty of issues even without the EU.

    27. Re:3 million is nothing by serviscope_minor · · Score: 1

      Or you could listen to the voice of the British people in the 2017 parliamentary elections, in which 80% of the votes went to parties promising to take the UK out of the EU.

      Well arent you a dishonest little one!

      You very well know the first past the post system pretty much ensures that those two parties command by far the majority of the votes almost no matter what.

      Now what you failed to mention is that in a very unusual move, neither managed to command a majority.

      --
      SJW n. One who posts facts.
    28. Re: 3 million is nothing by Anonymous Coward · · Score: 0

      What freedoms were they giving up? Please enlighten us.

    29. Re:3 million is nothing by Freischutz · · Score: 1

      The UK is not providing a free ride to the EU. They are getting quite a bit.

      Yup, a bit more liberty-impinging bureaucracy every year, all for a taste of that radiant socialist future that's always just around the corner!

      I take it that is a jab at the humongous EU bureaucracy? I know that is an article of gospel truth on the right wing but it is also a steaming pile of male bovine rectal secretions. The EU employs an order of magnitude fewer bureaucrats than the UK, something like 40.000 EU bureaucrats to 400.000 UK bureaucrats (a.k.a Civil Servants).

    30. Re:3 million is nothing by Anne+Thwacks · · Score: 1
      But they will retain their freedoms.

      That is not even remotely true - think about it for a few minutes. Pretty much everything we do involves the EU - for example, if I manufacture stuff, either I make it to EU specs and I can sell it, or I make it to UK spec, in which case, for the most part, not even UK citizens will buy it. However, we give up having a say in the EU spec. How does that give us "freedom"? (Yes, this is an over simplification, but it is the bulk of the argument).

      The purpose of Brexit, as seen by the ERG, is to avoid forthcoming EU legislation which will expose their ill-gotten gains in tax havens. The purpose as seen by the Brexit voters is based on lies told by the ERG - who have "posh accents" and are therefore mistaken for being intelligent and well informed by the ignorant masses.

      Giving Jacob Rees-Mogg and Boris Johnson more sovereignty does not mean anybody else gets any. The "unelected bureaucrats in Brussels" (EU government), is in fact composed of Euro-MPS, of which we elect our share, and the commissioners, who are elected in part by our own government who we elect - so, no, not unelected or unrepresentative.

      --
      Sent from my ASR33 using ASCII
    31. Re:3 million is nothing by Cederic · · Score: 1

      Well arent you a dishonest little one!

      No. But fuck you anyway.

      You very well know the first past the post system pretty much ensures that those two parties command by far the majority of the votes almost no matter what.

      There were zero ballot papers which had only those two parties on them, so there were always other options.

      There was also the option of spoiling your ballot paper to indicate dissatisfaction.

      Instead 80% of the votes went to parties promising to get on with leaving the EU.

      Now what you failed to mention is that in a very unusual move, neither managed to command a majority.

      What the 'first past the post' approach did was turn those 80% of the votes into over 87% of the seats in the House.

      I'd call that a pretty fucking massive majority of seats elected to get the UK out of Europe.

    32. Re:3 million is nothing by dunkelfalke · · Score: 1

      Well, about half of the population have a below average IQ, so it is not really surprising, I guess.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    33. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Same as saying this is the will of the people also. It's not a representative sample.

    34. Re:3 million is nothing by 91degrees · · Score: 1

      Okay. That's not exactly a democratic mandate though is it. 46% is less than 50%. It's less than the 48% who supported remain.

    35. Re:3 million is nothing by TheNinjaCoder · · Score: 1

      I signed from outside the country, no passport number needed.

    36. Re:3 million is nothing by serviscope_minor · · Score: 1

      No. But fuck you anyway.

      Yes, and you're welcome.

      There were zero ballot papers which had only those two parties on them, so there were always other options.

      Except we both know that's not how the system works. You could literally justify any foolishness by a country having a two party system. Oh that's exactly what you're doing!

      Thing is we both know 48% voted to stay. We also both know if the referendum were rerun in a non fraudulent manner now, a majority would vote remain which is why you're so chickenshit scared of having too much democracy.

      Only a fool and a liar can claim that means 80% want to leave. but youre a Brexiter so I repeat myself.

      --
      SJW n. One who posts facts.
    37. Re:3 million is nothing by AmiMoJo · · Score: 1

      Breaking up the UK would solve a lot of problems, but it would also destroy the party that was in charge of it. So there is no way the government is going to propose or allow that if they can help it.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    38. Re:3 million is nothing by Cederic · · Score: 1

      Thing is we both know 48% voted to stay.

      a majority would vote remain

      The majority voted to leave.

      80% want to leave

      The massive majority voted for parties that would leave.

      a majority would vote remain

      Really? Why now when they haven't in the past? Just stop, you're embarrassing yourself.

    39. Re:3 million is nothing by Anonymous Coward · · Score: 0

      1) Revoke A50.
      2) Invoke A50 again, starting a new 2 year leave process.

      Do you really think the EU doesn't have anything else on the table than entertaining the UK again for the next 2 years?

      Yes, the negotiations have definitely been be seriously hampered by the UK's indecisiveness about their very own position, but I don't think real new negotiations or substantially different terms would be on the table.

      What are the options, realistically?
      - hard Brexit on April 12th
      - May's flawed deal on May 22nd
      - no Brexit at all, for at least the upcoming legislative period (5 years (-2 years for negotiations) of the European Parliament; there is a reason why Scotland can only hold a referendum once every 7 years, at most).

    40. Re:3 million is nothing by serviscope_minor · · Score: 1

      Really? Why now when they haven't in the past?

      It's now obvious how much of a lie the Brexit campaign was.

      --
      SJW n. One who posts facts.
    41. Re:3 million is nothing by dryeo · · Score: 1

      In that case, just a rumour unless you have a UK postal address?
      Still wonder about myself as the only proof I have of UK citizenship is my birth certificate.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    42. Re:3 million is nothing by Aighearach · · Score: 1

      Scotland doesn't need their permission, they can Brexit by local declaration too.

      They probably will, if Brexit goes forwards, so they can rejoin the EU.

      Northern Ireland is a bigger problem, but a border has to go somewhere and putting it inside of Ireland violates the peace plan. Interesting times!

    43. Re:3 million is nothing by thegarbz · · Score: 1

      Yup, a bit more liberty-impinging bureaucracy every year

      Wait ... isn't this the UK's wet dream? I mean your bureaucracy is infamous, ... the stuff of legends and jokes the world over.

    44. Re:3 million is nothing by thegarbz · · Score: 2

      So do referendums, but the one to leave the EU was the largest vote in favour of any issue in the history of the country.

      The UK has had a total of 3 country wide referendums. The largest turnout was for the the leave referendum. The second largest was for the stay referendum in 1975. Incidentally the number of people who voted to remain in the EU in 1975 differs by less than 20000 from those who voted to leave in 2016, which actually reminds me: Why did the leave campaigners re-vote on the issue multiple times until they got the answer they wanted, and why are they so afraid of another vote now?

    45. Re:3 million is nothing by Anonymous Coward · · Score: 0

      That's huge. It means anybody saying "the will of the people" is to continue with Brexit is blatantly lying to themselves and to the rest of the world.

      Well, if most of the brexit votes were the older (usually non tech savvy) population, that means the current online petition might disproportionately reflect non-brexit voters, giving a false sense of confidence or utility for another vote.

    46. Re:3 million is nothing by Bert64 · · Score: 1

      If you're supplying your passport number to a uk government site, then surely the government has the capability to check if the passport number you supplied has right of abode or not.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    47. Re:3 million is nothing by Bert64 · · Score: 1

      The government will still have records of you, there will be records of your parents, records of you attending school, medical records etc.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    48. Re:3 million is nothing by Bert64 · · Score: 1

      Then why did the remain campaign not expose the lies of the leave campaign before the vote? If all the evidence is in favour of remain, then why did the remain campaign do such a poor job of informing the voters?

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    49. Re:3 million is nothing by dryeo · · Score: 1

      Yes, but those are harder to dig up, especially from back in the '60's. I doubt that they're used in evaluating petition signers. I'm not going to get involved as I don't live there but legally I could and it's interesting how I'd be verified.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    50. Re:3 million is nothing by Cederic · · Score: 1

      In 1975 the UK did not vote to remain in the EU. They voted to stay in the EEC, a common trading block.

      I think there would be strong support now to stay in a strong trading group with other European nations. Unfortunately the EU doesn't want to offer that, instead demanding political control too.

      Why did the leave campaigners re-vote on the issue multiple times until they got the answer they wanted

      There has only ever been one referendum on the EU itself, and it was 41 years after the referendum on the EEC. So sure, come back in 2057 and ask about whatever the EU morphs into then.

    51. Re:3 million is nothing by Anonymous Coward · · Score: 0

      And screw London where 60% voted remain.
      And screw the 45% in Wales who voted remain too.

      The asshats aren't geographically centered.
      You need to relocate the people who want to get rid of Poles into their own county and let them leave EU.

    52. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Parliament: "Do you want A or B?"
      Country: "B"
      Parliament: "We wanted A so fuck you, we will block and inhibit implementation of B until everybody gets fed up and goes for A just to get the thing over with"

      Well, in this case it went more like:
      Parliament: "Do you want A or B?"
      Country: "B" but almost half of us wants "A"
      Parliament: "It turns out B was a big fat lie that wasn't possible so we are going to go with C that sound like B but wasn't the actual alternative voted for."

      Now that the cards are on the table for what an actual leave vote means a new vote is needed so that leavers who didn't think closed borders would be bidirectional and remainers who thought it would be much worse gets a do-over.

    53. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Unfortunately the most needed option wasn't listed.

      "UK is completely incapable to self-govern and needs to be put under EU supervision."

    54. Re:3 million is nothing by serviscope_minor · · Score: 1

      Then why did the remain campaign not expose the lies of the leave campaign before the vote?

      They did.

      If all the evidence is in favour of remain, then why did the remain campaign do such a poor job of informing the voters?

      The remain job did do a pretty poor job, but the sheer brazenness of the leave camaign was something new. Everyone knows politicians weasel, break pledges and lie by omission etc. The attitude of splatting an outright bald faced lie front and centre was new to British politics. So people believed it.

      And of course, people would rather believe a simple lie that tells them what they want to hear than a complex truth that doesn't.

      --
      SJW n. One who posts facts.
    55. Re:3 million is nothing by thegarbz · · Score: 2

      In 1975 the UK did not vote to remain in the EU. They voted to stay in the EEC, a common trading block.

      Don't be obtuse. The EC was effectively the EU in everything but name. Just because the Maastricht Treaty wasn't signed until 1992 and the name EU wasn't formally adopted by then doesn't mean that the EEC wasn't in nearly every way what the EU is now, quite specifically ...

      I think there would be strong support now to stay in a strong trading group with other European nations.

      Don't be silly. The EEC wasn't just a trading group. It was a trading group with strict rules, higher courts, laws that govern trading members, membership fees, and (although in the 70s labour wasn't part of it) they comply with the 4 inseparable tenants of the EU. I don't know why you think there is any support for this in the UK. The only support you'll find is among remainders who are trying to soften the blow of leaving.

      Unfortunately the EU doesn't want to offer that, instead demanding political control too.

      The EU did nothing of the sort, and it wasn't the EU's decision. It's the decision of the EEC and it was quite specifically the non-EU members that said "hell no" to the UK joining. It's also not the EU which has political control over the EEC as much as the Scandinavian countries.

      There has only ever been one referendum on the EU itself

      Actually there was no referendum on the EU. It is painfully clear that in 2016 the referendum was on the choice of ???? and ???? and well let's just vote no because we're pissed at the government without any actual clue but at least we get to fund the NHS.

    56. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Especially when the referendums are billed as "non-binding". Funny how binding it got, and fast, when leave won.

    57. Re:3 million is nothing by angel'o'sphere · · Score: 1

      I think there would be strong support now to stay in a strong trading group with other European nations. Unfortunately the EU doesn't want to offer that, instead demanding political control too.
      The EU has nothing to offer.
      Your PM Mrs. May is making the offers.
      So far she failed to make an agreeable offer.

      FTFY

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    58. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Whilst I appreciate the point, unfortunately the group here are self selecting and there's only the choice to vote to revoke Article 50. If this was an opinion poll, there would be at least one other option other than not voting.

      However, I do think the numbers should speak volumes to the politicians. But in the same way that they ignore marches, there are been two very large Remain marches now, they are quite easily able to ignore this petition. In principle it now needs to be heard but I don't think it will make much difference unless backed by the leader of the opposition.

      Something I do think is interesting is that there is no equivalent "hard brexit" or "theresa may deal" polls with any significant numbers.

    59. Re: 3 million is nothing by fiddley · · Score: 1

      Your analysis is flawed. Secretions are internal to the body, excretions are external.

      --
      If medicine were ever perfected, we'd all be the same.
    60. Re:3 million is nothing by Anonymous Coward · · Score: 0

      Being able to click on Instagram doesn't make you tech-savvy.

    61. Re:3 million is nothing by lordmage · · Score: 1

      Exactly how many times do people get to vote on this? There has to be some sort of end to it. The original vote was fraught with.. Fake News? and what about the next vote and the next vote? no matter who wins, the loser can cry foul. Nothing will ever get done if a vote can be constantly in flux. It is why the referendum was done, it ended the speculation. The decision was made, its done. Live with the consequences as nothing so far has been unexpected.

      Voting matters and each Vote should count and be respected. Now, if you are out of the EU and finished Brexit, then you can have a Vote to go back into the EU since you already accomplished the purpose of the first vote.

      --
      I can program myself out of a Hello World Contest!!
  15. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    Because the public should not live in a police state where they are held prisoner by the government that can't manage to convince them to stay.

    Some of us don't want to live in a country that treats people as slaves.

  16. Re:Why bots probably aren't gaming the 'Cancel Bre by Anonymous Coward · · Score: 0

    It looks like the BBC has been infiltrated by agents acting on behalf of Russia.

  17. Guardian is the best news source about "Brexit". by Futurepower(R) · · Score: 3, Informative

    More than 4 million sign Brexit petition to revoke article 50.

    See the Petition. 4,392,160 signatures at Saturday, March 23, 2019, 09:11 am Pacific Time.

  18. Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

    The first vote was tainted by flawed information, lies essentially, presented to the distracted public. It barely won. Yes, a new referendum is a good idea, one based on new, rock-solid (and very economically sobering) information.

    Don't be retarded. If your defense is you had a vote, another vote should not be a threat.

    1. Re:Are you afraid of a new vote, Brexit traitors? by Cederic · · Score: 3, Interesting

      My point is that we had a vote, then had a second vote.

      Parliament sabotaging the entire fucking process of leaving the EU combined with a Government incapable of negotiating affection in a brothel means that many people now think leaving wont work and want a third fucking vote.

      How about instead of wasting time and resources on that we get the fuck on with leaving the EU.

    2. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Nope. The people want another vote, and another vote they shall have. The lies you folks have told have been exposed.

    3. Re: Are you afraid of a new vote, Brexit traitors? by phantomfive · · Score: 1

      I can't say for sure, but from this side it looks like British parliament would be better off dissolved, seemingly filled with corruption and incompetence. Maybe it would be better to have a king?

      --
      "First they came for the slanderers and i said nothing."
    4. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 2, Informative

      Parliament can't be said to have "Sabotaged" a process flawed by false information from the start... they said millions of dollars was going to be saved on healthcare alone, to make no mention of the trade/border issues. It's a clusterfuck.

      Parliament rightfully dragged their feet in coming to impossible(!) realizations that there IS NO GOOD SOLUTION to do it like this. May tried, you can't say she didn't try. In the end the EU said "no, go fuck yourselves, no free lunch."

      And that's where it stands now, you're either in or you're out. There's no halfway gray option. Renegotiate the entire thing, or stay in. Those are the choices now.

      The people didn't get a vote on that. They were promised a bill of goods that was never possible, and further an unrealistic pretend-option that didn't ever exist about a soft-exit from the EU that wouldn't break the bank.

      No deal = breaks the bank, the borders, the everything. It's retarded to say people voted to do that. Retarded.

    5. Re:Are you afraid of a new vote, Brexit traitors? by Megol · · Score: 1

      So arrange protests, demand to make a hard exit.

    6. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0, Interesting

      What should brexit be confirmed? A third vote? What if it is rejected this time? A third vote?

    7. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      A petition is not a ballot referendum. I am not British, so my opinion doesn't matter, but I would be ticked off if a ballot measure was overturned by an "online petition" - what a joke.

    8. Re:Are you afraid of a new vote, Brexit traitors? by dunkelfalke · · Score: 5, Insightful

      By this logic you already had a vote in 1972. But yes, get the fuck out already.

      Meanwhile French Europe Minister Nathalie Loiseau has revealed she has named her cat Brexit. "He wakes me up every day meowing like mad because he wants to be let out, then when I open the door he just stands there, indecisive, then gives me a dirty look when I put him outside," she told Le Journal du Dimanche newspaper.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    9. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 1

      How many votes are needed until the globalists get the results they want?

    10. Re:Are you afraid of a new vote, Brexit traitors? by Cederic · · Score: 1

      Parliament can't be said to have "Sabotaged" a process flawed by false information from the start

      What, like economic collapse, housing market collapse, mass unemployment and the risk of global conflict? None of which have happened, despite promises from the remain camp.

      they said millions of dollars was going to be saved on healthcare alone

      Who said that?

      Oh, nobody. Well, nobody representing the 'leave' campaigns anyway. People wanting to stay in the EU constantly lie about the leave arguments, so thanks for confirming you want the UK to remain.

      Parliament rightfully dragged their feet in coming to impossible(!) realizations that there IS NO GOOD SOLUTION to do it like this.

      What makes you think I give a shit about a good solution. I'll settle for a shit solution, because it's still better than being in the EU.

      May tried, you can't say she didn't try.

      I tried to win the F1 World Championship. Now admittedly I didn't even get in a car, but you can't say I didn't try.

      In the end the EU said "no, go fuck yourselves, no free lunch."

      Of course they did. They were always going to. The only thing that would stop them was the economic damage that could cause them, and it was the UK parliament (and May's inability to negotiate) that allowed the EU to blithely ignore that possibility.

      Renegotiate the entire thing, or stay in. Those are the choices now.

      The EU wont renegotiate so I'll take option 3: Just fucking leave.

      They were promised a bill of goods that was never possible, and further an unrealistic pretend-option that didn't ever exist about a soft-exit from the EU that wouldn't break the bank.

      They were promised a fuckload of shit by the Government with dire warnings galore, and still went "That's better than being in the EU"

      No deal = breaks the bank, the borders, the everything. It's retarded to say people voted to do that.

      Yeah, nobody could possible support that. Except.. https://www.westmonster.com/pu...

      Retarded

      Please, that's a terrible insult. Especially used by someone with such inept understanding of the issues.

    11. Re: Are you afraid of a new vote, Brexit traitors? by r2kordmaa · · Score: 1

      Barely passed is still a pass. Referendums have consequences, public vote is not a bloody facebook like button and "we were idiots" is not an excuse. There is no new information, all the consequences of brexit were as obvious then as they are now. It's going to suck, but you'll survive and learn a lesson about listening to politicians.

    12. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      This petition won't change anything. These petitions are only there to allow the public to push debate topics to parliament. The results of this one will be debated, briefly (like the ones before) and the government will reply "The British people voted on 23 June 2016 to leave the European Union and it is our mandated duty to carry out this wish." As, to be fair, they should.

    13. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      One based on the actual information, not UKIP lies financed and pushed by a Russian disinformation campaign? WHAT WAS PROMISED WAS FRAUDULENT. Brexit was not the economic windfall it was claimed to be. Stop lying.

      You are a traitor willing to push false information as if that represents the will of Britons. It does not, coward. That's why the traitor Farage quit on day 1. His tapdancing faggot act was over, he couldn't handle the fallout.

    14. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      What a bunch of nonsense. You could repeat the same argument ad naeuseam until you got the results you wanted.

    15. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      The consequence of that vote was legally 'we recommend that the UK leave the EU' (as written; it was not a buying vote) and not 'leave or die trying'.

    16. Re: Are you afraid of a new vote, Brexit traitors? by dryeo · · Score: 1

      Are you suggesting deposing the Queen?

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    17. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      I've had an idea! How about you negotiate a deal, and THEN have the people vote on it?

      That way people will know what they're actually voting for and won't be voting on a fraud like the first time.

      The first time it was like asking people to sign a contract and then negotiating the terms. Would you commit to a life-altering contract without knowing the terms? If so, you deserve whatever you get.

      I suppose that when you put it into those terms, the poor wankers who voted Leave should be forced to leave the EU!

      dom

    18. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      No, the will of the people is not decided. BREXIT was based on fraudulent information, a new referendum with now-checked info is required. They did not vote to leave "under any circumstances at all" - it was specifically a fraud.

    19. Re: Are you afraid of a new vote, Brexit traitors? by djinn6 · · Score: 1

      Would a new vote not be tainted by false information? Last I heard, the remainers were saying there would be empty shelves at the grocery stores, with the implication that there would be food shortages and mass starvation. But anyone with any business sense knows to stock up before a hard exit, so in reality there would be no disruption at all.

    20. Re: Are you afraid of a new vote, Brexit traitors? by Kjella · · Score: 1

      The first vote was tainted by flawed information, lies essentially, presented to the distracted public. It barely won. Yes, a new referendum is a good idea, one based on new, rock-solid (and very economically sobering) information. Don't be retarded. If your defense is you had a vote, another vote should not be a threat.

      I'm from Norway, we've rejected the EU twice (1972 and 1994) and I can assure you that if we had said yes once we'd never get a second vote a few years later to reconsider no matter how many was starting to think it was a bad idea. Britain voted to leave and it's the government's job to get it done, not flunk the negotiations and ask for a do-over. If that's the best they'll get either take the deal or not but get out already.

      And no, what you have now is not solid facts it's a scary bluff pretending like the UK would be a pariah without the EU. I've heard that bluff before, the UK will still be part of Europe and a country of 60 million people that's the 21th largest in the world doesn't have to be part of a super-block. Right now they're trying to scare people with the no-deal monster but once leaving is a fact they'd go back to being constructive on how we could cooperate in the future. That's what they did with us, once it was clear we weren't joining the EU they got busy drafting the EEC instead.

      --
      Live today, because you never know what tomorrow brings
    21. Re: Are you afraid of a new vote, Brexit traitors? by currently_awake · · Score: 1

      Once the UK is kicked out of the EU things will get bad for them. Then they will beg for re-admittence under the old rules but get offered the same deal the rest of the EU gets instead. I suppose that's progress.

    22. Re: Are you afraid of a new vote, Brexit traitors? by serviscope_minor · · Score: 1

      Don't be retarded.

      He supports Brexit so you're probably asking to much of him.

      --
      SJW n. One who posts facts.
    23. Re: Are you afraid of a new vote, Brexit traitors? by Wheely · · Score: 3, Insightful

      I do find it interesting how twisted truth becomes reality so easily. No liberal or indeed, any other faction had anything to do with stopping a second vote on the same motion.

      There is a long standing tradition in the UK parliament that members of parliament can not vote on the same motion twice in the same sitting of parliament. This is to stop a government crippling parliament by re-submitting the same issue over an dover again. This tradition is applied nregularly in the house of commons but nobody ever hears about it because few people actually pay attention to what is going on in parliament.

      All that happened in this case is that the government were reminded that parliament will not vote on the same bill twice in one parliament.

    24. Re:Are you afraid of a new vote, Brexit traitors? by serviscope_minor · · Score: 1

      Parliament sabotaging the entire fucking process of leaving the EU combined with a Government incapable of negotiating affection in a brothel means that many people now think leaving wont work and want a third fucking vote

      Ah yes, tyical Brexiter, everything is everyone else's fault.

      YOU voted to have an incompetent government take us out of the EU, now own your fucking decision like a man.

      My point is that we had a vote, then had a second vote.

      We had a bote on leaving which leave won. We then had a general election in which neither of the big parties promoting leave managed to win. We certainly didn't have a vote moving the country away from a parliamentary democracy.

      --
      SJW n. One who posts facts.
    25. Re: Are you afraid of a new vote, Brexit traitors? by Anne+Thwacks · · Score: 1
      The petition shows each MP clearly what percentage of his/her electorate has signed the petition.

      In many cases its over 25%. If over 25% have signed (even if it was really only 18.5%), then there is a good chance 60% are against it - a lot of people probably don't even know about the petition .

      As an MP you might just want to think carefully before voting for any kind of Brexit, because when the Brexit hits the fan (no food and no jobs) they will know that the vast majority of the electorate thinks you are voting for the ERG to hide their ill gotten gains in a tax haven, and campaigning to stamp out workers' rights. (These are the EU policies that the ERG is opposed to, and remember they all have houses in France too).

      All that stuff about straight bananas, etc, was invented by Boris Johnson when he was EU correspondent of the Telegraph - which he has admitted.

      --
      Sent from my ASR33 using ASCII
    26. Re: Are you afraid of a new vote, Brexit traitors? by r2kordmaa · · Score: 3, Insightful

      Dunno about begging but if they have sense they'll rejoin and it'll result in stronger EU for all. Short term Brexit will be bad for all, but Brits need to get it out of their system, canceling Brexit at this point would not be good idea, it would come back to haunt everyone in a year or few. Once the dust settles a better path forward can be agreed upon.

    27. Re:Are you afraid of a new vote, Brexit traitors? by Jerry+Atrick · · Score: 1

      Some of us are working hard to make sure all 17.4 mil of you leave.

      We aren't coming with you. Enjoy the UK while it still exists.

    28. Re: Are you afraid of a new vote, Brexit traitors? by Anne+Thwacks · · Score: 1
      Britain is not Norway.

      We are a very densely populated country which is dependent on imports for 75% of its food (mostly from the EU). Even when it is grown here, it is harvested by transient workers from poorer EU countries who fail to understand how expensive it is to live in the UK, and do not realize you cannot live outside the monetary economy in the UK (all land is owned by someone, there is not much edible wildlife, and without electricity, you life expectancy is months.

      We have spent most of the last 20 years organising a division of labour where we do what we are good at, and give the rest to the the EU.

      Some people imagining that we can "return to the good old days" (the 1950's) when we all lived on starvation rations imported from America, which we are still paying for, despite the fact that we had little manufacturing competition from the rest of Europe which we had just bombed to hell for most of the 50's and 60's. Mrs Thatcher abolished our engineering industry, and replaced it with global Ponzi schemes "financial services", which, post-Brexit we won't be able to export. For the most part, these people last visited mainland Europe in 1945 (in the D-day landings), if they have ever been, and they get their information from "news" sources that carefully avoid anything that might actually be true.

      --
      Sent from my ASR33 using ASCII
    29. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Ah yes, the old "we'll know the vote was honest and the voters were informed only when we get the result we want". A favourite of tyrants throughout history.

      “Those who vote decide nothing. Those who count the vote decide everything.”
        -Joseph Stalin

    30. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Sounds exactly like a gang of street thugs or mafia goons. "If you leave the family, life is going to be...difficult..for you". And they'll see to that.

    31. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Do your puppet masters pay you for each verbal attack on those that spake heresy against the Church of Globalism? Or are you just a propagandized useful idiot who does it for free?

    32. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      That isn't remainers, thats the tabloid press.

    33. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Translation: "WAAAAHHHHH!! The vote didn't turn out the way I wanted! It's not FAAAIIIIR!!111!! Make them vote AGAIN, mommy!"

    34. Re:Are you afraid of a new vote, Brexit traitors? by AmiMoJo · · Score: 2

      It's not Parliament's fault, it's May's fault. She didn't have a realistic plan, just some intractable red lines that completely fucked up the negotiations and ensured she would get a deal that everyone hated. Her priority has always been her legacy, and by extension keeping her party together, not getting a good outcome for the UK.

      Parliament hasn't exactly covered itself in glory either, but May could easily have avoided all this be agreeing a realistic proposal for leaving with Parliament before triggering Article 50.

      Cancelling is the best option now. If someone wants to try again let them put a very specific proposal in their manifesto and then before Parliament first, then we can trigger Article 50 again.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    35. Re:Are you afraid of a new vote, Brexit traitors? by Papaspud · · Score: 1

      You have zero argument for a new vote, isn't there a cock that needs to be sucked calling your name Mohamed?

      --
      Everything above is my opinion....YMMV
    36. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      they said millions of dollars was going to be saved on healthcare alone

      Who said that?

      Oh, nobody. Well, nobody representing the 'leave' campaigns anyway. People wanting to stay in the EU constantly lie about the leave arguments, so thanks for confirming you want the UK to remain.

      https://www.telegraph.co.uk/politics/2018/01/16/leave-campaign-bus-claim-britain-will-save-350m-week-brexit/

      That is just literally the first result of searching for it, but... check your meds.

    37. Re:Are you afraid of a new vote, Brexit traitors? by Cederic · · Score: 1

      1 - that bus said Britain would save the money it gives to the EU each week
      2 - it didn't say we'd save money on healthcare

      That is just literally the first result of searching for it, but... check your meds.

      Try searching some more, and/or check your own meds.

    38. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Underrated post. A system will not work if the goal posts keep moving, even with good intentions.

    39. Re: Are you afraid of a new vote, Brexit traitors? by Aighearach · · Score: 1

      Barely passed is still a pass.

      And non-binding is still non-binding.

      Didn't Parliament already hold a binding vote rejecting a hard Brexit? And, while Parliament saw fit to hold a second vote on May's deal (!!!), they've said a third vote isn't allowed.

      It seems that they only legal choices, based on these various binding and non-binding votes that have been taken by different parties, is to delay, or cancel.

      It is clear that many people in the UK demand that a generation of British people cut their noses off, to stiffen their upper lips, but it seems that Parliament already rejected that.

    40. Re: Are you afraid of a new vote, Brexit traitors? by Aighearach · · Score: 1

      If the British people wanted to do it that way, they'd hold a binding vote.

      They didn't do that.

      Insisting that a non-binding vote be treated as binding is simply to be dishonest.

    41. Re: Are you afraid of a new vote, Brexit traitors? by Aighearach · · Score: 3, Funny

      Clearly Parliament should declare Lord Buckethead Lord Protector and the problems will be resolved.

      No need to dissolve parliament. Simply undo the Restoration.

    42. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      Oh, nobody. Well, nobody representing the 'leave' campaigns anyway. People wanting to stay in the EU constantly lie about the leave arguments, so thanks for confirming you want the UK to remain.

      We send the EU £350 million a week...

    43. Re: Are you afraid of a new vote, Brexit traitors? by thegarbz · · Score: 1

      There is a long standing tradition in the UK parliament that members of parliament can not vote on the same motion twice

      If the people now have even a rough indication of what Brexit actually looks like even if the final option on what is delivered isn't yet clear, compared to the original vote is this really the "same motion" twice?

      This is like a discussion with my wife:
      "Do you want me to cook dinner tonight?"
      "Yes!"
      "Great I'll make a lasagna!"
      "I don't want a lasagna!"

      Honestly the original government which ran the referendum on an undefined yes or no question was retarded, in the most literal sense: retarded, adjective, "very foolish or stupid".

    44. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      lol right. You go with that idiotic line.

    45. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      No liberal or indeed, any other faction had anything to do with stopping a second vote on the same motion.

      To be specific, the single person responsible for this is John Bercow, the Speaker of the House. He ruled that the second parliamentary vote on Brexit was allowable, because there were substantive changes to the proposed deal - but a third parliamentary vote would not be allowable unless there were further changes, sufficient to make it (again) a substantively different proposal. He did this with reference to Erskine May - the bible of parliamentary procedure - and to precedent dating back to 1604, just to make it absolutely clear that he was following the letter of the law, rather than advocating for any particular faction. If you're interested, check out the clip.

      Note that, if there is sufficient support for the existing deal, parliament could hold a vote to suspend this particular rule, then hold a new vote on the deal despite his ruling. So he isn't overruling the democratic will of parliament.

      The factions that benefit from his ruling are, I think, the extremes on both sides: it is now more likely that the UK will remain in the EU or leave without a deal, rather than leaving with a negotiated semi-detached status. But I really do think that he has ruled fairly on this point, rather than in support of one or another faction.

    46. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      No liberal or indeed, any other faction had anything to do with stopping a second vote on the same motion.

      To be specific, the single person responsible for this is John Bercow, the Speaker of the House. He ruled that the second parliamentary vote on Brexit was allowable, because there were substantive changes to the proposed deal - but a third parliamentary vote would not be allowable unless there were further changes, sufficient to make it (again) a substantively different proposal. He did this with reference to Erskine May - the bible of parliamentary procedure - and to precedent dating back to 1604, just to make it absolutely clear that he was following the letter of the law, rather than advocating for any particular faction. If you're interested, check out the clip.

      Note that, if there is sufficient support for the existing deal, parliament could hold a vote to suspend this particular rule, then hold a new vote on the deal despite his ruling. So he isn't overruling the democratic will of parliament.

      The factions that benefit from his ruling are, I think, the extremes on both sides: it is now more likely that the UK will remain in the EU or leave without a deal, rather than leaving with a negotiated semi-detached status. But I really do think that he has ruled fairly on this point, rather than in support of one or another faction.

    47. Re: Are you afraid of a new vote, Brexit traitors? by Barsteward · · Score: 1

      yes, best you don't comment until you know just a little about it. The EU is not throwing up any roadblocks, they have not changed their stance one bit. the UK is trying to get a unicorn deal that has been refused by numerous times no matter how many times the re-paginate the document to say its a different offer.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    48. Re: Are you afraid of a new vote, Brexit traitors? by Barsteward · · Score: 1

      Correct but the UK referendums are only advisory so a responsible government would have said "thanks but no thanks"

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    49. Re: Are you afraid of a new vote, Brexit traitors? by Barsteward · · Score: 1

      that was said by the food businesses themselves. and you can only stockpile non-perishable stuff. And what happens when the imports get so slow because of all the introduced customs inspections and the stock piling runs out?

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    50. Re: Are you afraid of a new vote, Brexit traitors? by Barsteward · · Score: 1

      You have loads of trade deals already, all the UKs will be dead. Plus Norway has to obey every rule regarding trade, manufacture etc the EU creates and has no influence of the rule creation.

      So if the Norway government let results based on lies and misinformation go unchallenged like the UK government and the Norwegians would not take a stand for truth?

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    51. Re: Are you afraid of a new vote, Brexit traitors? by r2kordmaa · · Score: 1

      Responsible government wouldn't have conducted that referendum to begin with. But in UK referendums are merely advisory, really? Directest form of democracy is just advisory? Over yonder referendums have power to roll over constitution if people so decide, there is no higher power than direct vote of the people. Of course, over here referendums are also not called willy-nilly as political power plays.

    52. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      "We were misinformed by idiots" is an excuse. And democracy isn't about being heard once and totally losing your right to influence politics afterwards, it's about a continuing influence on politics with room for changing opinions.

    53. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      barely passed on WRONG UNDERLYING INFORMATION IS NOT A PASS you fucking moron.

      They should NEVER have said up front that a majority was OK, it should have been set as 2/3 majority required or something, but in any case, its become patently clear that nobody involved in the whole charade had any fucking idea what it really meant but hey IMMIGRATION am I right?

      just do another referendum. No deal exit or remain
      I dont think it would be particularly close any more.

    54. Re: Are you afraid of a new vote, Brexit traitors? by angel'o'sphere · · Score: 1

      public vote is not a bloody facebook like button and "we were idiots" is not an excuse.
      In UK (and most of europe) it is not more than a like button. There is nothing binding in an "public opinion poll", or why exactly do you think the parliament is in charge and does its own thing?

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    55. Re: Are you afraid of a new vote, Brexit traitors? by angel'o'sphere · · Score: 1

      It is a difference if you do a legally binding vote where every one knows the consequences or if it is a glorified opinion poll where people express their unhappiness about something unrelated to the poll.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    56. Re: Are you afraid of a new vote, Brexit traitors? by angel'o'sphere · · Score: 1

      Sent from my ASR33 using ASCII
      At least you have a nice computer :D

      Honestly, my first visit to the UK was quite antique, too. I was on a sailing boat.

      When I have finished my sailing education I would like to sail to Scotland ... from mainland Europe :D ... to Islay most likely to buy some Whisky.

      I hope they don't kill me when I try to leave my ship.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    57. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      they said millions of dollars was going to be saved on healthcare alone

      Who said that?

      There was this campaign bus with the text: "We send the EU £350 million a week. Let's fund our HNS instead. Vote Leave." Notice the word "instead" in the second sentence? That refers to the first sentence and presents funding the NHS as an alternative to sending £350 a week to the EU. People who deny what was meant there deny how language works. The only thing GP got wrong was that it was pounds, not dollars, they were talking about.

    58. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      The first vote was tainted by flawed information, lies essentially, presented to the distracted public. It barely won. Yes, a new referendum is a good idea, one based on new, rock-solid (and very economically sobering) information.

      Don't be retarded. If your defense is you had a vote, another vote should not be a threat.

      There were lies and inaccuracies from both sides, each side is blind to their own. If I preferred economic growth over independence and democracy I'd move to China.

    59. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      "The first vote was tainted by flawed information, lies essentially.........."

      Which is exactly what someone who has lost a referendum would say..........

    60. Re: Are you afraid of a new vote, Brexit traitors? by r2kordmaa · · Score: 1

      Referendum is not the same as public opinion poll, anyone can do the latter, heck /. does that with theirs, currently asking "Do you enjoy 3D movies?". Referendums are very different animals with legal consequences just the same as elections.

    61. Re:Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      that is precisely what they've been trying to do. The issue is that this was never a binary vote and probably should have been followed up with a further referendum, particularly when plan A - leave the EU but somehow be allowed to stay in the free market, failed. This is why people talk about unicorns. The Vote Leave campaign made it clear that we would be able to continue to have access to the free market and that is now clearly not possible. Regardless of what you think you voted for, the promises of the campaign are what count and they were either lies or a complete misunderstanding of what would be possible.

    62. Re: Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

      The rule not to bring the same motion twice is 400 years old and quite reasonable. Mrs May and her advisors should have been aware of it. But she neglected to do so in her strategy and was caught. Such is politics. Her bad.

    63. Re: Are you afraid of a new vote, Brexit traitors? by angel'o'sphere · · Score: 1

      Referendums are very different animals with legal consequences just the same as elections.
      An opinion poll does not turn into a referendum, just by sticking the label "referendum" on it.
      Most European countries, and that especially includes UK, has no referendums in the sense as you describe them.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    64. Re: Are you afraid of a new vote, Brexit traitors? by r2kordmaa · · Score: 1

      Huh? What do you know, Brits really don't consider referendums this way. My mistake, different country different customs it seems. https://en.wikipedia.org/wiki/...

  19. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    Texas, Mexico. It's part of that country.

  20. 20% of the original "Nay" votes by anvilmark · · Score: 0

    Over 33 million votes were cast in the original referendum - 51.9% Yea / 48.1% Nay.
    If all it takes to invalidate a national referendum is that 20% of the Nay voters sign an online petition, then who controls the society?

    1. Re:20% of the original "Nay" votes by Anonymous Coward · · Score: 0

      the russians obviously

    2. Re:20% of the original "Nay" votes by Anonymous Coward · · Score: 0

      Over 33 million votes were cast in the original referendum - 51.9% Yea / 48.1% Nay.
      If all it takes to invalidate a national referendum is that 20% of the Nay voters sign an online petition, then who controls the society?

      Hopefully, people who understand the issues.

      Which will never happen.

      Populism is one by-product of wealth disparity. Everyone likes to think to think they got where they are purely from their own efforts and intelligence (that they born with:thanks mom and dad!). There's even those who hedge and say that they "made their own luck". That's true - the more you try, the better chance of success. But failure is a life long Scarlett letter 'F'. Start a business and fail and go bankrupt; well, you're tarnished forever.

      The America that we have grown up to believe in is gone. And it's not the "libs" fault or even the "conservatives" - it's people who have a vested interest in keeping their income flows. Destroy organized labor - call it "communist". Allow companies to privatize profits but socialize costs and call it the "free market" and any attempts to stop that "SOVIET".
      An oil drilling company can destroy an ecosystem and the beauty of our parks - parks created by President Teddy Roosevelt (REPUBLICAN) - and yet when one stop that (OBAMA), he's called a "communist".

      I am so disgusted with American politics right now, I am having evil thoughts of dictatorship. I'll get over it..... like there's anything I could do about it...like vote for a lying populist billionaire and wear a red trucker hat.....

    3. Re:20% of the original "Nay" votes by markus · · Score: 2

      You are seriously misrepresenting the facts. First of all, it is highly unlikely that all the people who voted in the referendum would also sign the petition. In fact, it is amazing that so many people did sign. That's pretty much unprecedented. Participation rates in online petitions are traditionally tiny compared to actual referenda and elections. And the UK parliament assures everybody that the petition actively filters out bot activity. So, we have to assume that the numbers are close to accurate.

      Secondly, the petition is just that. It is a petition. It doesn't invalidate the non-binding referendum. It asks parliament to do their job and to actually confirm that "the will of the people" is in fact to leave the EU, as Theresa May keeps pretending. And from the numbers presented so far, I personally doubt that the vast part of the population shares that believe. It's just that Brexiteers are louder -- and parliament seems to have their fingers in their ears. So, if they hear anything over their own self-imposed din, it's the loud voices.

    4. Re:20% of the original "Nay" votes by dryeo · · Score: 1

      For a major constitution level change, that is not a very clear majority. Most countries (well western ones) need more then that to change their constitutions or multiple votes.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    5. Re:20% of the original "Nay" votes by serviscope_minor · · Score: 1

      If all it takes to invalidate a national referendum is that 20% of the Nay voters sign an online petition, then who controls the society?

      All it should take to invalidate a referendum is a ruling that it was fraudlent.

      Oh wait that did happen!

      So tell me who does control society if we let it be ruled by fraud?

      --
      SJW n. One who posts facts.
    6. Re:20% of the original "Nay" votes by Anonymous Coward · · Score: 0

      In fact, it is amazing that so many people did sign. That's pretty much unprecedented.

      Almost as if... No.. can't be. Nobody, and I mean NOBODY would stoop so low as to disparage the integrity and sanctity of an ONLINE petition by flooding it with votes via bots or by just simply lying about the results. I mean, the government assures us it's all good. And that's good enough for me!

      To believe otherwise would mean that someone would dishonor and sully the pinnacle of virtue and honesty that is the Internet. Inconceivable.

    7. Re:20% of the original "Nay" votes by Anonymous Coward · · Score: 0

      "So tell me who does control society if we let it be ruled by fraud?"

      Take a look around, because it's already here: Corrupt billionaire elite globalists who shit on the rights and opinions of the people below them.

      If these globalists wanted Brexit to happen, it would already have been a done deal. There would be no endless delays and whining about a re-vote, and you would have been given the talking points to praise the leave instead of being told to bash it.

    8. Re:20% of the original "Nay" votes by TheNinjaCoder · · Score: 1

      It's truly unbelievable that David Cameron allowed both the Scottish Independence Referendum and the Brexit Referendum to be on a 50%+1 basis. I bet all the political parties involved need super-majorities to change their own constitution. Why not the nation?

    9. Re:20% of the original "Nay" votes by Anonymous Coward · · Score: 0

      This David Cameron?

      The Leave campaign is wrong to say there'll be a 2nd referendum if we vote to remain in the EU. This is a referendum and not a neverendum.
      6:24 AM - 17 May 2016

    10. Re:20% of the original "Nay" votes by dryeo · · Score: 1

      Yea, it's weird that Cameron went along with the 50%+1 to win in both cases. I could see Scotland arguing that 50%+1 was enough.
      We had similar here in Canada when Quebec held referendums except it was Quebec claiming that 50%+1 was enough. Eventually the Federal government got a ruling from the Supreme Court that Quebec could not unilaterally secede according to both the Canadian Constitution and international law and the Federal then passed the clarity law which amongst other things,says it has to be a clear majority and a clear question, without actually stating what a clear majority is.
      IIRC, it was also decided that for a Province to secede, would require all the other Provinces to agree. Under that idea, Brexit may have failed due to only 2 of the 4 members of the UK not agreeing.
      https://en.wikipedia.org/wiki/...

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    11. Re:20% of the original "Nay" votes by Aighearach · · Score: 1

      Scotland was never in the UK under duress; it was by consent. They don't need England's permission to leave the UK.

      And, it can only be thus without a written Constitution.

    12. Re:20% of the original "Nay" votes by thegarbz · · Score: 1

      then who controls the society?

      That's a good question given that a statistical analysis of votes would show that through attrition and the fact that leavers were overwhelmingly stacked against the aging population and remainers overwhelmingly young if you recounted the votes now based only on who is alive and extended the 18/19 year old votes to the current number and turnout of 18 and 19 year olds ... you've actually voted remain.

    13. Re:20% of the original "Nay" votes by Koby77 · · Score: 1

      It's not weird. Being in the EU was supposed to be the best thing since sliced bread. And the Remainer camp enjoyed a massive number of endorsements, the Remain vote should have won with 70+% of the vote. That would have ended the issue for Cameron.

    14. Re:20% of the original "Nay" votes by dryeo · · Score: 1

      As an experienced politician, Cameron should have understood that votes often go in unexpected directions with many an election decided by who bothered to vote and who stayed home.
      Not sure of the turnout but it is quite possible that 70% wanted to remain and figured it was a shoe-in so 21% decided to stay home.

      --
      https://en.wikipedia.org/wiki/Inverted_totalitarianism
    15. Re:20% of the original "Nay" votes by Cederic · · Score: 1

      Hopefully, people who understand the issues.

      Good fucking luck finding them.

    16. Re:20% of the original "Nay" votes by Cederic · · Score: 1

      Fraud is illegal. If you have proof of fraud you should inform the police so that they can prosecute.

      Off you toddle.

    17. Re:20% of the original "Nay" votes by serviscope_minor · · Score: 2

      It's been all over the news n and off and you act like it never happened. No wonder you support Brexit: reality just doesn't fit your worldview.

      https://www.theguardian.com/co...

      https://www.bbc.co.uk/news/uk-...

      https://www.theguardian.com/po...

      https://www.electoralcommissio...

      Now I'm sure you'll either uiently slink away and pretend you never commented ot tell me why electon fraud is jsut fine really and we should honour the results of a tainted election.

      --
      SJW n. One who posts facts.
    18. Re:20% of the original "Nay" votes by Cederic · · Score: 0

      Breaking election finance rules is not fraud. Stop talking shit.

      Also bear in mind that the Remain camp spent more than the Leave camp, even after the illegal expenditure. That doesn't even fucking include the £9.3m the Government spent on a fucking Remain leaflet that wasn't even included as a campaign expenditure.

      So I don't think it's reasonable to suggest that the additional Leave expenditure changed the result of the referendum.

    19. Re:20% of the original "Nay" votes by angel'o'sphere · · Score: 1

      I thought Scotland was conquered in some point in history, just like North Ireland, or for that matter: Wales. What has that to do with any constitution?

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    20. Re:20% of the original "Nay" votes by serviscope_minor · · Score: 2

      Breaking election finance rules is not fraud. Stop talking shit.

      Yes it is. If the election was a binding referendum then by the UK rules it would have ot be rerun.

      Now I'd like you to:
      1. stop talking shit
      2. Stop undermining democracy by following results of tainted elections.

      --
      SJW n. One who posts facts.
    21. Re:20% of the original "Nay" votes by Aighearach · · Score: 1

      Scotland was joined by consent through royal marriage.

      If you convinced the British people that it was otherwise, you'd have convinced them that the UK never existed and was an English colony.

      You won't find a lot of support for that view outside of London; and you won't find government support for it even there.

  21. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    The states are not sovereign. Look at what happened when some tried to secede.

  22. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    People's Democratic Republic of California, comrade.

    You'll need to show your Tesla registration and proof of ability to make rent at the border.

  23. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    Texas has open borders with several US states. They also have felt the effects of illegal immigration. But as well the benefits if you know something of Texas history.

    But you seem not to know much about anything except you can drive across state lines freely. Maybe look at a map sometime and pick up a book on Texas history before you accuse. Also visit sometime and bask in the cultural diversity and not the caricature you probably picked up on television.

    Ignorance is not bliss.

  24. Too late, silly petition by Anonymous Coward · · Score: 0

    Even if you got half the planet to sign a petition in favor of Hillary it doesn't change a thing. If you are an American, Trump is your president.

    Britain will be leaving the EU and it's a great thing.

  25. Texas = Mexico. by Anonymous Coward · · Score: 0

    Texas history = Mexico. Texas future = Mexico.

    1. Re: Texas = Mexico. by Cmdln+Daco · · Score: 1

      Also California. Ownership should simply be transferred back. Mexico would gladly refund the several million dollars they were forced to sell it for after losing the war.

  26. Typical Lefty response: we want a do over by Anonymous Coward · · Score: 0

    It's the cry-baby syndrome. They call for repeated do-overs until they get the results they want.

    Same happened after Trump was legally elected. The left cried Russia, we won the popular vote, impeachment, change the Constitution, etc.

  27. Re: Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    Germany has always considered the UK to be part of the Homeland.

  28. Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 5, Insightful

    The first vote was tainted by flawed information, lies essentially, presented to the distracted public. It barely won. Yes, a new referendum is a good idea, one based on new, rock-solid (and very economically sobering) information.

    Don't be retarded. If your defense is you had a vote, another vote should not be a threat.

  29. The British government is VERY poorly managed. by Futurepower(R) · · Score: 4, Interesting

    I posted this comment. It has been modded down: The British government is VERY poorly managed.

    One example: The EU leave campaign has dishonesty at its core-- and it hasn't convinced us. (Mar. 11, 2016, not 2019)

    Brexit: All you need to know about the UK leaving the EU (Jan. 31, 2019)

    In general, the British government has presented low-level details, and not generally helped citizens have a serious, in-depth understanding.

    1. Re:The British government is VERY poorly managed. by thegarbz · · Score: 1

      This is fundamental to the UK's EU membership since they joined. For the past 40 years the UK has only ever heard a one sided case for leaving the EU without any opposition. Eventually this all gained traction.

      The UK has since joining never made the case for the EU. It never internally advertised the benefits or glorified what was achieved through EU membership. As stupid as the previous government was for holding a yes no referendum on an undefined question, all governments since the 70s are complicity in what is going on right now.

      You go through the rest of Europe and you can see clear cases for what has been done. You can see the parks protected by EU regulation, the citizens protected by EU law, the economic benefits of trade; it is advertised. You can barely travel anywhere without seeing some sign showing something was done with EU funds or was the result of an EU program or some EU joint effort. In the UK ... well you're lucky to find the EU flag anywhere. The UK has "nationalised" EU benefits, even the most recent and obvious benefit of abolition of mobile roaming charges was heralded as a success by the British government ... of the British government.

      People can not have an understanding of something when there are active efforts to prevent them from understanding it.

  30. Re:Guardian is the best news source about "Brexit" by Anonymous Coward · · Score: 0

    Let us know when it reaches 17 million.

  31. sad by Anonymous Coward · · Score: 0

    it's sad they can't plan to make a system to handle the load. It's not impossible, it takes planning and expertise.
    Both of those are missing in that area or brexit wouldn't have been an issue to begin with.

  32. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    yes because 'cultural diversity' has always promoted peace, right?

    You are right about one part: ignorance is not bliss, yours included.

  33. What is the EU and how does it work? by Futurepower(R) · · Score: 2

    What is the EU and how does it work? An un-dated explanation by the BBC. (Before the end of 2017.)

  34. Brexiteers are hilarious by anarcobra · · Score: 2, Insightful

    In two years they went from "easiest trade deal, we hold all the cards, germany has to sell us cars, have our cake and eat it" to "we always knew our economy would crash and we would lose jobs, we never promised a deal, we will survive just like the blitz".
    Fucking idiots and grifters all of them.

    1. Re:Brexiteers are hilarious by Ashthon · · Score: 3, Insightful

      In two years they went from "easiest trade deal, we hold all the cards, germany has to sell us cars, have our cake and eat it" to "we always knew our economy would crash and we would lose jobs, we never promised a deal, we will survive just like the blitz". Fucking idiots and grifters all of them.

      It could easily have been easiest trade deal in history, since the deal we wanted was on offer. EU Council President Donald Tusk made clear in a Tweet that a Canada style deal had been on offer from the start, which is exactly what we voted for:

      https://twitter.com/eucopresident/status/1047825916905357312

      So, the deal we wanted was on offe, and we were already in regulatory alignment with the EU, so this should have been a simple proccess. The problem isn't the Brexiteers, but the bitter remainers, who flat out refuse to accept the results of the referendum. The key problem is most MPs are remainers, and they're doing everything in their power to prevent Brexit. The biggest saboteur has been Teresa May herself, who is a staunch remainer and who has been the biggest obstacle to us leaving the EU.

      The Department for Exiting the European Union was created to negotiate a trade deal with the EU, and was headed by a leave voter David Davis. However, in parallel with those negotiations, Teresa May was engaged in a separate negotiations headed up by the unelected civil servant, and fanatical remainer, Olly Robbins (a man who has expressed his admiration for the Soviet Union, which is probably why he likes the EU so much). May and Robbins 'negotiated' their own deal with the EU, though 'negotiated' is the wrong word since all they did was to give the EU everything they asked for, keeping us permanently shacked to the declining block.

      Teresa May then called the cabinet together at the Prime Ministers country residence and revealed her deal, which was substantially worse than remaining in the EU. David Davis resigned as Brexit Secretary the next day (he couldn't resign immediately because May had confiscated the phones of the cabinet members and had said anyone who disagreed would have there ministerial cars taken, leaving them stranded). Since then May has taken control of the process and has been trying to force her Ultra Remain deal through parliament. However, the terms of the deal are so bad that both leavers and remainers are united in rejecting it, leading to the biggest defeat in parliamentary history. Despite this, May is still trying to sell the country out to the EU, and still trying to force her terrible deal through parliament, bringing it back for a second vote, and then trying to bring it back for a third vote on the same deal.

      Of course, it's not just May who has allowed this to happen, but most other MPs. Notably, there's Speaker of the House John Bercow, who has a "Bollocks to Brexit" sticker on his car. As speaker, he is responsible for selecting the amendments to be voted on, and he consistently selected pro-remain amendments. Then there's Chancellor of the Exchequer Philip Hammond, who has refused to unlock funds for preparations for a WTO Brexit, meaning few preparations were made.

      Ultimately, it comes down to the fact that we knew what we voted for, the deal was on offer, and the remainer parliment has steadfastly refused to honour the results of the 2016 referendum and has done everything possible to prevent us from leaving. It could have been the easiest trade deal in history, but instead it's a fiasco.

      So who's the problem here, the Brexiteers, who simply expect the result of the referendum to be implemented, or the remainers who are attempting to subvert democracy simply because they didn't like the result?

    2. Re:Brexiteers are hilarious by r2kordmaa · · Score: 1

      And enough people listened to that dribble or failed to turn up on the referendum. Be careful what you ask for, you might get it.

    3. Re:Brexiteers are hilarious by Anonymous Coward · · Score: 1

      Notably, there's Speaker of the House John Bercow, who has a "Bollocks to Brexit" sticker on his car.

      No, that's on his wife's car.

    4. Re:Brexiteers are hilarious by serviscope_minor · · Score: 2, Interesting

      So who's the problem here, the Brexiteers, who simply expect the result of the referendum to be implemented, or the remainers who are attempting to subvert democracy simply because they didn't like the result?

      The Brexiters.

      Because they have the same delusion that you hare that a completely undefined result is "simple" to implement.

      Notably, there's Speaker of the House John Bercow, who has a "Bollocks to Brexit" sticker on his car.

      So you do then believe that wives are chattels of their husbands.

      --
      SJW n. One who posts facts.
    5. Re:Brexiteers are hilarious by Aighearach · · Score: 1

      Fucking idiots and grifters all of them.

      Scots wha hae!

    6. Re:Brexiteers are hilarious by thegarbz · · Score: 1

      EU Council President Donald Tusk made clear in a Tweet that a Canada style deal had been on offer from the start

      Yeah. What he meant was that you will go through 15 years of negotiations which get put on hiatus twice and even a few years after it was signed it isn't fully ratified. That "Canada style deal". ;-)

  35. Re:Why is this place against sovereignty? by LynnwoodRooster · · Score: 1

    If only rights would also cross State lines, because right now many States trample all over your Constitutionally enumerated rights...

    --
    Browsing at +1 - no ACs, I ignore their posts. So refreshing!
  36. Re:Why is this place against sovereignty? by anarcobra · · Score: 1

    UK has always been responsible for their borders.
    UK politicians chose to not enforce their borders and deport EU citizens mooching off welfare.
    They blamed the EU, even though other EU countries deport people just fine.
    They are just blaming the EU for their own incompetence.

  37. Are you afraid of a new vote, Brexit traitors? by Anonymous Coward · · Score: 0

    Then you have zero argument against a new vote. One based on verifiable information instead of the lies the UKIP faggot traitors told. Sorry, comrade Russian incels, you lose.

  38. Re:Guardian is the best news source about "Brexit" by Anonymous Coward · · Score: 0

    Who gives a flying fuck about this "petition"? The people already spoke through their official vote, down with the EU and down with World Government!

  39. Too little credit by Okian+Warrior · · Score: 3, Insightful

    Thatâ(TM)s not what happens today. FUD is doing a good job of helping those destructive to society get in power and stay in power. In the meantime a well researched stance is screamed at for being elitist, left wing, supporting already defeated candidates and non-patriotic

    Donâ(TM)t underestimate the power of the misinformed populist vote. It has hurt the US, the UK and other countries.

    "Oh, if only our citizens had been correctly informed, they would never have voted for Brexit!"

    That seems to be the defining rationale for all the dissent in the UK today, and it's complete and total bullocks. It's used as justification by people who didn't get their way to make the transition as painful as possible with the faint hope of reversing the decision.

    Firstly, leaving the EU is objectively a better decision than staying, from an economic, cultural, and game-theory point of view. The economic arguments for staying are based on invalid assumptions(*), and in practice staying in the EU is causing more economic hardship than staying.

    The arguments against leaving center mostly on the transition, and not the end result. It's always what will happen "in the next 6 months" or "in the following year" and whatnot. No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations - and there would be little hardship.

    But mostly, the argument that "not enough correct information got out" and "people would have chosen differently with better information" is completely false.

    Most people simply don't think what people tell them to think any more, and instead they rely on what they can see. So let's examine this: what do the UK people actually see when they look around their country nowadays?

    The UK culture has undergone a massive shift these past 30 years, and the people are not happy with the results. Teens are stabbed every week in London, people are being arrested for online criticism, jobs are hard to come by, and different-culture people are everywhere.

    That's what drove the vote to Brexit and if you held the referendum again you would find *more* people would vote for it, simply because the changes have become worse in the past 2 years.

    I suppose the single most obvious culture shift indication was in the police: in previous decades, bobbies didn't have to carry guns. Nowadays UK police they are armed and armored like US swat teams.

    Your opinion and votes matter more than ever. We should not need to resort to demeaning opponents (dead or alive) to try to make our arguments. Taking time to understand what scares a person will likely help make a better argument for trying to win them over.

    You are giving the people too little credit. Making them "not scared" by talking or presenting information or reasoning simply won't work. You can only make people "not scared" by making them safer. No amount of argument will change that basic fact.

    You give the people of the UK to little credit. They chose, and even if you don't agree with it you should abide by that choice.

    (*) For example, the assumption that a bigger pool of workers and jobs makes for a better economy. When the countries are economically equal it works out - a dental hygenist in the UK can get a good job in Germany, and vice versa. When this assumption doesn't holds true the better country gets pulled down - a dental hygienist in Greece can get a good job in the UK, but the reverse isn't true. The result is massive unemployment in the UK while high-paying jobs are filled with non-UK citizens. A large number of assumptions - which turn out to be false - underlie the economic arguments for being in the EU.

    1. Re:Too little credit by quantaman · · Score: 5, Insightful

      Thatâ(TM)s not what happens today. FUD is doing a good job of helping those destructive to society get in power and stay in power. In the meantime a well researched stance is screamed at for being elitist, left wing, supporting already defeated candidates and non-patriotic

      Donâ(TM)t underestimate the power of the misinformed populist vote. It has hurt the US, the UK and other countries.

      "Oh, if only our citizens had been correctly informed, they would never have voted for Brexit!"

      That seems to be the defining rationale for all the dissent in the UK today, and it's complete and total bullocks. It's used as justification by people who didn't get their way to make the transition as painful as possible with the faint hope of reversing the decision.

      Except it's a good point.

      There were two big problems with the pro-Brexit campaign:
      1) There were a lot of flat out lies or distortions.
      2) The Brexit that was promised isn't actually possible. England simply can't have the kind of relationship with the EU that the Brexit side wanted. Of the different possible relationships to Europe the one most acceptable to voters is likely remain.

      Firstly, leaving the EU is objectively a better decision than staying, from an economic, cultural, and game-theory point of view.

      You're objectively using the word "objectively" incorrectly.

      The arguments against leaving center mostly on the transition, and not the end result. It's always what will happen "in the next 6 months" or "in the following year" and whatnot.

      I've seen lots of long term predictions of bad things happening. It's just that the short term ones are a more immediate concern to most people.

      No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations - and there would be little hardship.

      Except a bunch of bi-lateral agreements are hard to negotiate and way harder to administer. That was a big reason for the EU in the first place, to simply things by getting rid of all the N to N agreements.

      And if you implemented all of the agreements then what was the purpose of Brexit in the first place? You're basically pulling the same stunt as the leave side, pushing for hard-Brexit while selling a soft-Brexit.

      But mostly, the argument that "not enough correct information got out" and "people would have chosen differently with better information" is completely false.

      ... followed by a bunch of complaints about immigration.

      The complaints about misinformation were largely about economic misinformation, and the hard/soft trickery. If people were really freaking out about immigration maybe leave will win again, but then at least you'll also have a clear answer about a hard vs soft exit. And about whether to bring back an "unrestricted travel" agreement that you were happy to bring back a few paragraphs ago.

      For example, the assumption that a bigger pool of workers and jobs makes for a better economy. When the countries are economically equal it works out - a dental hygenist in the UK can get a good job in Germany, and vice versa. When this assumption doesn't holds true the better country gets pulled down - a dental hygienist in Greece can get a good job in the UK, but the reverse isn't true. The result is massive unemployment in the UK while high-paying jobs are filled with non-UK citizens. A large number of assumptions - which turn out to be false - underlie the economic arguments for being in the EU.

      Though you forget that raising a dental hygienist to adult hood and then putting them through additional training is really expensive. Getting that hygienist as a productive adult is a pretty good deal, though one that will eventually have to be paid for in retirement (though you likely still win)

      --
      I stole this Sig
    2. Re:Too little credit by Anonymous Coward · · Score: 1

      The arguments against leaving center mostly on the transition, and not the end result. It's always what will happen "in the next 6 months" or "in the following year" and whatnot. No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations - and there would be little hardship.

      No, the goals Brexit were always impossible. Freedom of movement is inescapably tied to the customs union which means that the EU has a large amount of control over the UK trade agreements. The hard border in Ireland or the North Sea is unacceptable and not having it means giving up sovereignty to the EU over trade which is also unacceptable to the eyes of Leave.

      That's what drove the vote to Brexit and if you held the referendum again you would find *more* people would vote for it, simply because the changes have become worse in the past 2 years.

      That's a surprising claim given that recent polling numbers consistently give a majority against Brexit.

    3. Re:Too little credit by drinkypoo · · Score: 1, Troll

      "Oh, if only our citizens had been correctly informed, they would never have voted for Brexit!"
      That seems to be the defining rationale for all the dissent in the UK today, and it's complete and total bullocks.

      1) That's "ballocks". Bullocks are very different, even though they have massive ballocks.
      2) We know beyond any doubt that citizens were not correctly informed, because they have told us so. Lots of people who voted for brexit absolutely did not understand what they were voting for.

      No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations - and there would be little hardship.

      That's because it would be a lie. Speaking directly to your example, the EU cannot unilaterally implement unrestricted travel, because the right of UK citizens to do that is part of the UK's membership in the EU. They would have to negotiate that being part of a post-brexit agreement, and the EU is unlikely to give on that particular point.

      But mostly, the argument that "not enough correct information got out" and "people would have chosen differently with better information" is completely false.

      You keep saying that, which means you either don't know what you're talking about, or you're lying. I suspect the latter, frankly, but even the former should be enough to disqualify your comment from relevance.

      The UK culture has undergone a massive shift these past 30 years, and the people are not happy with the results. Teens are stabbed every week in London, people are being arrested for online criticism, jobs are hard to come by, and different-culture people are everywhere.

      Again, all of that will continue with or without membership in the EU. You'd better figure out how to fix those problems either way, because they're only going to increase.

      You give the people of the UK to little credit. They chose, and even if you don't agree with it you should abide by that choice.

      They deserve little credit. That doesn't set them apart from most westerners, who are generally underinformed and overcomplacent, but so what?

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    4. Re:Too little credit by djinn6 · · Score: 2

      Though you forget that raising a dental hygienist to adult hood and then putting them through additional training is really expensive. Getting that hygienist as a productive adult is a pretty good deal, though one that will eventually have to be paid for in retirement (though you likely still win).

      The results of immigration depends a lot on the ratio of skilled to unskilled immigrants. If the normal ratio of dentists to the general populace is 1:500, and the immigration policy let in 1 dentist per 1000 other immigrants, then the end result is the opposite of what you're suggesting. Dentist visits will get more expensive rather than cheaper. The only way to maintain the initial price is to somehow prevent at least half of those 1000 other immigrants from getting dental access, which is neither happening nor desirable.

    5. Re:Too little credit by djinn6 · · Score: 1

      2) We know beyond any doubt that citizens were not correctly informed, because they have told us so. Lots of people who voted for brexit absolutely did not understand what they were voting for.

      And what about the people who voted against Brexit? How do you know they're better informed? Anyone can cherrypick a few questions and make the other side look dumb.

      Oh and your source is a biased piece of crap:

      EU immigrants: we massively overestimate how many EU-born people now live in the UK. On average we think EU citizens make up 15% of the total UK population (which would be around 10.5m people), when in reality it’s 5%1 (around 3.5m people).

      Sounds convincing, until you realize it completely it completely ignored immigrants who are not born in the EU. All those "Syrian" refugees that people keep complaining about? Not counted. The article is deliberately mixing up EU-born immigrants and those who passed through the EU.

    6. Re:Too little credit by Wheely · · Score: 1

      OK so stabbings in London, being arrested for online criticism, jobs hard to come by and "different culture" people everywhere is the fault of the EU? I guess you could argue that freedom of movement contributes to "different culture" people being everywhere but given the majority of immigrants in the UK come from outside the EU, it isn't a particularly strong argument.

      I get that people are unhappy with the state of the country in many ways but the EU doesn't control police on the streets, ethical priorities or even economic policy in the UK. The EU is by no means perfect but blaming it for the countries ills will solve nothing.

    7. Re:Too little credit by drinkypoo · · Score: 1

      Sounds convincing, until you realize it completely it completely ignored immigrants who are not born in the EU. All those "Syrian" refugees that people keep complaining about? Not counted.

      They weren't counted in the referendum, either.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    8. Re:Too little credit by dunkelfalke · · Score: 1

      You break it, you keep it.
      Being the US lapdog during the Iraq war has consequences.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    9. Re:Too little credit by serviscope_minor · · Score: 1

      I expect your post will not surprise me. I've yet to speak to a Brexiter who isn't wildly misinformed.

      Firstly, leaving the EU is objectively a better decision than staying,

      I love that you state something which is clearly false as a fact.

      The arguments against leaving center mostly on the transition, and not the end result.

      Also false, as in you've been ignoring the arguments.

      It's always what will happen "in the next 6 months" or "in the following year" and whatnot.

      Well, gee I wonder what's going to come first. 10 years time or the next 6 months. Oh wait it's obvious the next 6 months will be here first so we need to figure out how to sort out that mess first.

      No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations

      That's because we can't without the EU's agreement and they won't do it unless were in the single market, and they won't let us in there without us aying the fees necessary to support it. Now we could certainly join that but then all we'd have managed to do is remove voting rights for ourselves.

      in previous decades, bobbies didn't have to carry guns. Nowadays UK police they are armed and armored like US swat teams.

      This is simply outright false. Almost no police are armed.

      They chose

      The results of a fraulent referendum us not the same as "the people choosing".

      --
      SJW n. One who posts facts.
    10. Re: Too little credit by Anonymous Coward · · Score: 0

      This.

      It's just another finger they can point and say see told ya so.

    11. Re:Too little credit by Anonymous Coward · · Score: 0

      "we"? hahaa, only you as you speak only for you. So fuck off dumbass singleton cunt.

    12. Re:Too little credit by Anonymous Coward · · Score: 0

      "We know beyond any doubt that citizens were not correctly informed"

      This might come as a shocker to you, but that applies to EVERY election. Ever. Only now though does it become convenient for one side to demand a revote on.

      And you better not be kidding yourself by thinking the remain side didn't deceive and lie to the voters at least as damned much.

    13. Re: Too little credit by cyber-vandal · · Score: 1

      The arguments against leaving center mostly on the transition, and not the end result. It's always what will happen "in the next 6 months" or "in the following year" and whatnot. No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations - and there would be little hardship.

      That is true. Unfortunately that isn't what's being done.

      The Brexit voters are going to be hugely disappointed to find that the changes in culture are nothing to do with the EU and will not stop once we leave.

    14. Re:Too little credit by AmiMoJo · · Score: 3, Insightful

      The Brexit that was promised isn't actually possible.

      Indeed, the official Leave campaign's leaflet and web site said that the UK would negotiate a deal before triggering Article 50, which is impossible and had already been ruled out by the EU when they said it.

      Having said that, at least deciding what deal they were going to try to negotiate and getting Parliament to approve it before triggering Article 50 would have been a very good idea, and avoided this crisis. Assuming they had proposed something vaguely realistic of course, which given May's red lines was unlikely.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    15. Re: Too little credit by Anonymous Coward · · Score: 0

      Nowadays British police are armed like a Swat team?!

      Are you malicious or stupid or both? The vast majority of British police remain unarmed, you muppet

    16. Re:Too little credit by thegarbz · · Score: 1

      which is impossible and had already been ruled out by the EU when they said it.

      Even if it were possible from a legal standpoint, it's a claim made by someone who has never negotiated a trade agreement. Doing that isn't exactly an overnighter, especially when one party isn't very powerful.

      Compare it to say EU / Canada trade deal. That only took 10 years...

    17. Re:Too little credit by Hognoxious · · Score: 1

      I wasn't aware the UK even had dentists.

      (inb4 the Americans)

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    18. Re:Too little credit by Hognoxious · · Score: 2

      leaving the EU is objectively a better decision than staying, from an economic, cultural, and game-theory point of view.

      Economically? So why the are the overwhelming majority of businesses and unions remainers?
      Game theory? That was an attempt to look smart, was it? It failed.

      But mostly, the argument that "not enough correct information got out" and "people would have chosen differently with better information" is completely false.

      How do you know? Plenty were swayed by the money for the NHS slogan on the bus, this was admitted to be false before the count was even finished.

      Making them "not scared" by talking or presenting information or reasoning simply won't work. You can only make people "not scared" by making them safer.

      Not true. People's perception of risks is often wildly wrong. Though some people also don't seem to grok the difference.

      https://www.youtube.com/watch?...

      Take your country, look at gun ownership. You think it makes you safer. And yet you're more likely to be killed by a gun than someone living in Ireland during the troubles.

      No one will admit that the UK could voluntarily implement all the agreements it currently has with the EU - such as unrestricted travel between nations [...] different-culture people are everywhere.

      Those things sort of contradict each other, don't they? No point chucking all the Polackomanians out if they can just come back, is there?

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    19. Re:Too little credit by Hognoxious · · Score: 1

      deciding what deal they were going to try to negotiate and getting Parliament to approve it before triggering Article 50 would have been a very good idea, and avoided this crisis.

      Can't you see the problem with that? Froth froth will of the people froth froth get behind the leader froth froth just get on with it froth froth.

      On the other hand, that's pretty much the current situation.

      How's the shelling?

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    20. Re: Too little credit by Hognoxious · · Score: 1

      He probably had a stopover at Heathrow once and saw a few there.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    21. Re:Too little credit by Hognoxious · · Score: 1

      Most of the region's problems centre around Israel and if you hadn't gassed millions of them there'd be no Israel.

      Shut the fuck up, you boche bastard.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    22. Re:Too little credit by Hognoxious · · Score: 1

      The hard border in Ireland or the North Sea

      I wasn't aware that the Good Friday Agreement
      involved Denmark.

      Looks like we found the yank!

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    23. Re:Too little credit by Barsteward · · Score: 1

      What a load of swivel eyed bollox. Buy a tin foil hat. I can't be arsed to respond in any detail to that post. Fortunately quantaman already has.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    24. Re:Too little credit by Barsteward · · Score: 1

      Non-EU immigration can be stopped 100% if the government wanted to as its nothing to do with the EU. Non-EU migration is normally higher than EU migration. And they didn't want to separate the high student temporary immigration (i.e. virtually all those go back home after spending 1000s of pounds in the UK) from the artificial immigration figures.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    25. Re:Too little credit by Barsteward · · Score: 1

      Unfortunately that has been a large brexiter problem too, unable separate the UK created issues from the EU because of the lies and exacerbated by the leave campaign leadership.

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    26. Re:Too little credit by Anonymous Coward · · Score: 0

      Honestly, after living in UK for a decade I'm starting to give up on the idea that there are any sane people in UK at all. Because talks about Brexit makes ALL OF THEM out of their minds! Why? And don't tell me that argument, that Brittish people care for their country, as that can't be the case, because millions of Brits who are educated more than average live abroad, and not in UK.

      HARD reasons for Brexit were struggle for power, where UK politicians were participating in a losing battle, as UK, as a member of EU had to adapt further to integrate into EU. It seems, that overall thinking from UK was that Brexit would fail and the whole act of voting was used as leverage as a warning to EU bureaucrats, but voters played dumb and uncooperative(and no one learned from Boaty McBoatFace what unequal democracy can do - in this case scientifically minded people thought that it was a good idea to give uneducated plebs voting rights to name scientifical ship... ha!) and decided to sabotage politicians. Hurray! Release the peasants!(it usually ends with burning down the manor of local lord - not agricultural revolution!)

      (*) How are your assumptions better? Are they actually based on any actual facts?

      One of the reasons why I've moved to UK was the reason, that, for example, UK citizen who would work in my country would receive the same UK salary or even better, compared to my salary, even if we both did the same job! How dare you propose that there should be different type of discrimination in UK, even if current trend is giving up egalitarian principles to pay best salary to best. Besides, not always British people are the best, because to be the best you also have to put some effort to be better than anyone else...
      EU citizens in "high-paying jobs"(it amazes, that people are unaware, that EU citizens can make their own companies and decide whom to pay salaries...) didn't move instantly - my experience is that people with education moved to underqualified jobs first and their experience was worth more, than what locals had. Actually, it is communist practice to complain about educated migrants, who are qualified to those "high-paying jobs", than to complain about low-income or no job migrants, who are sinking down UK economy, because YOU have to pay for them, support them, their children, which hardly will ever rise above average of UK level, because there is no stimulus to do so.
      Employement of EU nationals doesn't address main issues of UK, like constant decrease in economy, where dental hygienist in EU now will have better salary than in UK. Besides it is not EU fault, but Globalization processes, where over decades Brittish companies became global, then removed their manufacturing from UK(to China mostly - not always to EU) and in the end moved their HQ(AND TAXES!!!) abroad. But even the people who are blatantly racist and xenophobic even to Brittish standards can't see this connection...
      UK is not the only one that has underwent radical cultural changes - the same things are going in Europe - including Greece! However, it is not cultural change or immigration what people worry most about, but decrease in quality of life. When it goes down, there is always someone else to blame, not themselves.

      So, how is voting for or against Brexit even addressing these issues, which are not only problems of UK, but also of EU? Brexit IMO is only symptom of deeper problems and UK, just like EU is sick. And sometimes it is time for sick to die, than live in agony and prolong it as much as possible - it is cruel to do so.

      Here are some inevitable things:
      Brexit will happen.
      UK will maintain ties with EU, because it is on the same planet and UK won't be different from Norway or Swiss, because hardly UK has anything to propose to lead into future that would deal with EU bureaucracy monster.
      Neither bureaucrats of EU or UK will change. Things will go on as usual - at least for some time.
      Ireland most probably will become united. Brexit in this case brings good - to fulfill 100 year old wishes of Irish nation for united island.
      Scotland will make another independence referendum - ironically to join EU later.

    27. Re:Too little credit by dunkelfalke · · Score: 1

      So you are against Israel. Yep, blaming the victim is what you island monkeys and those arabs have in common. The war in Iraq had nothing to do with Israel, though.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    28. Re:Too little credit by AmiMoJo · · Score: 1

      Well she kind of tried with the 2017 general election, but of course it massively backfired and basically destroyed any chance of there being a non-fuck-up brexit.

      This is the problem with a binary choice referendum. The whole thing was a dumb idea.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    29. Re:Too little credit by AmiMoJo · · Score: 1

      Doing that isn't exactly an overnighter

      It pretty much was though, wasn't it? Not the detail, but the basic parameters of the deal were decided on day one by May's red lines. Barnier produced that famous diagram showing what was available.

      Everything else was just cakeism.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    30. Re:Too little credit by Cederic · · Score: 1

      A key issue is the unfettered immigration. While non-EU migration is higher than EU the British people have had very few chances to vote against any migration, so the opportunity to send a very strong message to the politicians was taken.

      Even inhibiting EU migration will help. Continued pressure on politicians can then be applied to the rest. This is a real issue for many people in the country that's been ignored by the politicians for far too long and it's not the only one.

      Leaving the EU wont fix everything but it's a start.

    31. Re:Too little credit by Cederic · · Score: 1

      Take your country, look at gun ownership. You think it makes you safer. And yet you're more likely to be killed by a gun than someone living in Ireland during the troubles.

      Northern Ireland has a high rate of gun ownership - including handguns.

      Maybe it's not the guns.

    32. Re:Too little credit by angel'o'sphere · · Score: 1

      Sounds convincing, until you realize it completely it completely ignored immigrants who are not born in the EU.
      That is exactly the point. Most immigrants in the UK are from the comonwealth, people who have super easy immigration rules.

      All those "Syrian" refugees that people keep complaining about? Not counted.
      They are counted. https://www.bbc.com/news/uk-43...

      You took less than 10k ... (* cheers *) (* hurray *)

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    33. Re: Too little credit by Anonymous Coward · · Score: 0

      Politicians lie during campaigns all the time. Why is this case special? If that's the problem, fix the system, penalties for misrepresentation of facts. Voting again is not a suitable long term solution to the problem.

    34. Re:Too little credit by Hognoxious · · Score: 1

      US: 120 guns per 100 people.
      Upper Padville: 11.

      The difference is barely a rounding error there!

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    35. Re:Too little credit by Hognoxious · · Score: 1

      Like it schmike it, the facts of the matter are that US foreign policy is mainly driven by two things: Oil and Israel. Or it was like that at the time - now there's a third - where Trump's hotels are.

      Saddam's WMD, if they'd actually existed, wouldn't have been able to hit Tucson, but they'd have been able to hit Tel-Aviv.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    36. Re: Too little credit by Anonymous Coward · · Score: 0

      Politicians lie during campaigns all the time. Why is this case special? If that's the problem, fix the system, penalties for misrepresentation of facts. Voting again is not addressing the core problem.

    37. Re:Too little credit by Anonymous Coward · · Score: 0

      The results of immigration depends a lot on the ratio of skilled to unskilled immigrants.

      Another influance - are they

      M tot M `FAS . CAECA on CAECA . BIMODAL `ABOARD on CAECA .
      YE on M . M . M tot M `M tot M `M us are M tot M `M tot M `
      M M . M . M . M us are M us are M us are M tot M `M us are
      M `M `M . M . M `NARY `M `NARY `CAECA on ABOARD on CAECA .
      M . M M . M . M tot M `M tot M `M us are M . M us are . M `
      M on YE . M . M tot M `M tot M `M us are M on M . M tot M `
      M tot M `FAS . CAECA on CAECA . BIMODAL `M tot M . CAECA .

    38. Re: Too little credit by Anonymous Coward · · Score: 0

      Ever wonder why the United Ireland parties in Northern Ireland aren't constantly calling for a referendum on a united Ireland? It's because they know they would lose. I'm not a Brexiter, but can see you are misinformed about a great many things.

    39. Re:Too little credit by Hognoxious · · Score: 2

      Compare it to say EU / Canada trade deal. That only took 10 years...

      Well that's typical of the EU!

      That David Davis says he could do one in a morning.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
    40. Re:Too little credit by Anonymous Coward · · Score: 0

      You make very good points sir! Gas the jews!!!!

    41. Re: Too little credit by quantaman · · Score: 1

      Politicians lie during campaigns all the time. Why is this case special? If that's the problem, fix the system, penalties for misrepresentation of facts. Voting again is not addressing the core problem.

      Democracies also vote on things all the time as well.

      Select the wrong party, change it next election.

      Lose a referendum on separating?

      Then hold another one.

      And if you lose that as well you can keep proposing new ones for years after.

      Do you really think Scottish separatists think they can never have another referendum? Hell, if Brexit happens they'll start scheduling it the next week.

      I don't see why a "yes, separate" vote is the only one you're not allowed a second crack at.

      --
      I stole this Sig
    42. Re: Too little credit by Anonymous Coward · · Score: 0

      Simply going to work, I pass armed police daily.

  40. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    The Constitution enumerates powers, not rights. 9th and 10th amendments.

  41. Re:Why is this place against sovereignty? by Anonymous Coward · · Score: 0

    WTF?

    Ninth Amendment: The enumeration in the Constitution, of certain rights, shall not be construed to deny or disparage others retained by the people.

    The Ninth is all about rights; the 10th explicitly reserves any powers not enumerated in the Constitution for the States and the People - NOT the Federal Government. It says nothing about the preceding 9 rights... Once again, you are proving that most ACs are idiots.

  42. It was 52-48. by Anonymous Coward · · Score: 0

    So unless you are going to count the petition for staying in the EU as the SECOND LARGEST VOTE ever, your claim is complete horsehit.

  43. We voted to go in in '72. You wanted a do-over by Anonymous Coward · · Score: 0

    So it's the typical rightwing nutjob response: I don't like that answer, I want to accuse you of making a different choice!!!!
    You keep bleating and bleating about leaving if you don't get your way then when you do, despite several votes of "STFU, moron", you suddenly don't want a recount...

  44. You had your chance, now live with it! by Anonymous Coward · · Score: 0

    It was called the Referendum.

    If you voted against leaving, your voice was already heard - deal with it.
    If you didn't vote, you chose to silence yourself - deal with it.

    Maybe next time you'll pay more attention to politics?

    1. Re:You had your chance, now live with it! by Anne+Thwacks · · Score: 1
      If you didn't vote, you chose to silence yourself - deal with it.

      I did not vote, and nor did most of my family because we were out of the country at the time. A lot of people go abroad - and most of them are not likely to vote leave because it won't help their job or their family. Unlike the people who voted leave - many of whom presumably have no idea where Europe even is.

      This fact alone could well account for more than the difference between the leave and remain vote.

      Maybe, next time, you will think before you type.

      --
      Sent from my ASR33 using ASCII
    2. Re:You had your chance, now live with it! by guruevi · · Score: 1

      I'm sure you and your family would've swayed the result when first 17M voted exit and then 33M people voted for parties with exit in their platforms.

      --
      Custom electronics and digital signage for your business: www.evcircuits.com
    3. Re:You had your chance, now live with it! by Cederic · · Score: 1

      This fact alone could well account for more than the difference between the leave and remain vote.

      No, it could not.

      People on holiday could plan ahead and register for a postal vote, so didn't lose the ability to vote.
      People living abroad were able to vote.
      People that had been living abroad for an extensive period and thus unable to vote could all have voted remain and still not boosted the numbers enough to win.

      Maybe, next time, you will think before you type.

      I didn't just think, I did the research too. Which is why I know you're wrong.

    4. Re:You had your chance, now live with it! by Anonymous Coward · · Score: 0

      This, british national, out the country at the time but eligible to vote. I applied for postal vote at my temporary european address, and rang on 3 occasions to ask where my voting forms were arriving from Leeds, only to be told each time they were in the backlog and being processed.
      A week before polling I rang and they told me that there had been a "mistake processing postal vote send outs" and that If I wanted to vote I had to attend a polling station in person. I could have cancelled that important presentation I had to do in person in France that day, but the results of that were far worse all round than one less vote because I was confident my fellow brits weren't actually going to be that fucking thick collectively.
      And so the circle goes around.

  45. It's too bad... by argStyopa · · Score: 2

    ...most of those fervent "down-voters" couldn't be arsed to get out of their chairs and actually vote back when IT COUNTED.

    Sadly, in real life you don't get a "do over" just because you weren't paying attention the first time, or because you're on the (to you and ALL YOUR FRIENDS) "right" side.

    I'm guessing, of course, but if the groundswell so "universally" portrayed today had actually voted, Brexit would have gone down without question.

    --
    -Styopa
    1. Re:It's too bad... by Anonymous Coward · · Score: 0

      Look, if the referendum had been held on Facebook, the result would've been like 3:1 in favour of remaining, and the participation would've been through the roof.

    2. Re:It's too bad... by Anonymous Coward · · Score: 0

      I think your comment is a bit silly.

      > "Sadly, in real life you don't get a "do over" just because you weren't paying attention the first time"

      That's not actually a rule of the universe, and one precedent to that effect is that courts do order retrials when substantial new evidence comes to light. It is eminently possible that there could be another referendum - I rather hope not, because the underlying problems would still exist - but the statement 'you don't get a "do over"', isn't true just because you've stated it. A second ref. would come into existence the moment MPs voted for it.

      Furthermore, 48% of the voters DID actually vote not to leave: over 16m people, hugely more than voted for the petition. There is no evidence whatever that the petition tells us anything about people who didn't vote or voted Leave.

    3. Re:It's too bad... by argStyopa · · Score: 1

      Well, I guess I'd suggest that you read a little more carefully?

      I didn't say you don't get a do over, I said you don't get a do over BECAUSE YOU WEREN'T PAYING ATTENTION THE FIRST TIME.
      (In the context of this reply, perhaps that's almost ironic?)

      Has 'substantial new evidence' come to light? I rather expect a judge wouldn't order a re-trial just because the defendant wasn't paying attention, would they?

      --
      -Styopa
  46. You know that online pools are rigged, right? by SuperKendall · · Score: 0

    You know that UK citizens can live abroad, right?

    And most of them live in Russia because they miss the weather at home???

    Or, here's a thought, maybe it's super likely that a poll where anyone around the world CAN vote, saw a whole bunch of people around the world voting who are not UK citizens. Which do YOU think is more likely?

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
    1. Re:You know that online pools are rigged, right? by Anonymous Coward · · Score: 1

      The petition website has data of the signatures by county (the "Get petition data (json format)" link). I downloaded that file just before writing this comment and I see that are currently 123 signatures marked as coming from Russia. According to this 2015 news article, there are (were?) 1688 British expats living in Russia.

      Of course, we're all technical people here. We know that foreigners could be using VPNs or botnets (so all the requests wouldn't obviously be coming from the same VPN endpoint) to proxy their requests so they appear to be coming from inside the UK.

      Since it's a petition, not a poll, there's an actual list of names (i.e. not just IPs or whatever) associated with it. You could do QA on the data by simply sampling the names, confirming they're real people, contacting them, and asking them if they really did sign the petition at the timestamp on their signature. (Needless to say, doing this for all 4+ million would be a lot of effort, but a statistically, you should be able to get fairly high confidence on your measure of accuracy with a properly designed random sample of thousands.)

      Last, we have a good proxy for how many signatures we expect: there's a protest today and we can count the crowd. It's on the order of a million (the group organizing the protest says slightly over a million, BBC says "hundreds of thousands"). If a quarter of the people who signed the petition showed up for the march, that would be incredibly high turnout for the march; if anything, given that information, we should be surprised the petition signature count isn't higher (probably best explained by it having started very recently) not looking for reasons the real count should be lower.

    2. Re: You know that online pools are rigged, right? by cyber-vandal · · Score: 1

      Putin wants us to leave. Why would he try and game a poll asking for a second referendum?

    3. Re: You know that online pools are rigged, right? by Hognoxious · · Score: 1

      So does Trump.

      OST, that probably went without saying.

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
  47. History b1tch3s by Anonymous Coward · · Score: 0

    There was even more dissenting during the ww2 blitz I'm sure. They were saying the same things back then about unity and bullsh1t. These people had the privilege of obscurity. The current bunch of fools have left posts all over social media. Unfortunately for them, what they say matters little to history and its established patterns. The sovereign united kingdom will once again prevail over the unstable gang of germany and its sattelites. Obviously a perverted frankenstein like that cannot be called a union. All these dissidents will be second rate citizens and they deserve it. It was their choise to be on the wrong side of history while knowing its patterns.

    PS. I'm an EU citizen and I'm packing right now for Brittain to lend a hand to the good fight. Join in to take the monster down

  48. Brexiters should move back to Moscow instead. by Anonymous Coward · · Score: 1

    WHY should there not be a vote based on the ACTUAL FINANCIAL INFORMATION? Why do you need to pretend a vote based on proven lies from UKIP is somehow more representative of the will of Britons? Stop lying traitor.

    UKIP pretended this was going to be a massive economic windfall, the opposite is true. The public knows now how dangerous this path is. Before the vote it wasn't even 10% discovered. Good information replaced bad, new vote assured.

    Brexiters should move back to Moscow. Fuck you traitors and liars. If you want to leave the UK in an orderly fashion, that's fine. A new vote will see that happen.

    Your lies will not.

  49. 1500 signatures per minute by astrofurter · · Score: 0

    1500 signatures per minute, in favor of a profoundly anti-popular measure? No sir, that's _definitely_ not the work of a bot army. No siree!

    1. Re: 1500 signatures per minute by Anonymous Coward · · Score: 0

      If you read the article you'd know it isn't bots. But repubtards like yourself don't read, they just assume.

    2. Re: 1500 signatures per minute by Anonymous Coward · · Score: 0

      Funny... I didn't see anything about bots in either article. Oh wait, I know why: Corporate Progressives always lie.

  50. Brexiters only have themselves to blame by fred6666 · · Score: 1

    for this mess.
    Seriously, they thought they could leave the EU, keep the current state (no border) between the republic of Ireland and Northern Ireland, and remain out of the EU customs union and single market. I am quite surprised 52% of the voters bought that BS.

  51. CRAP software. by Anonymous Coward · · Score: 0

    If you RTFS, you would know it was the ever changing trend analysis that brought them down.

    They most certainly could have done better, but there's no indication it had anything to do with pushing static assets.

    The logging and authentication of votes and performing of the analysis of the data should have been handled by different machines. Expecting one system to do both would be like a restaurant losing its chef and asking the waitress to fill in for him while also acting as a waitress, greeter, manager, and stock boy.

    And run the cash register, and clean the floors and restrooms, empty the grease trap, file the restaurant tax papers and manage payroll, devise a new ad campaign, handle permits, health code compliance, not to mention finding, interviewing and training as needed, the replacement chef, all by herself, and all at the same time.

    Also, the roof needs to be re-tarred, the parking lot needs resurfacing, the cracked sidewalks out front are a tripping hazard and a lawsuit waiting to happen, and... oops, the power just went out, so... you get the idea.

    These should have been separate, or better still, the tabulation could have waited until voting ENDED. As it should be. Voting on anything should not be swayed one way or another by how people vote while it is still going on. The interim returns should always read, simply — it is too close to call — until it is over.

    1. Re: CRAP software. by Anonymous Coward · · Score: 0

      It's not a vote.

  52. Fair to everyone by Anonymous Coward · · Score: 0

    Personally I think we should stay in Europe, I was born a British Europian and strongly believe it is the best thing for the UK and Europe. I work all over the UK and Europe and have raised my family to embrace their British Europian identity. Please don't take away my family's identity.

    But I understand that half of my country disagree with me and we need to reconciliate.

    Let us add into UK law that we need to renew our membership of Europe by referendum. Let's have one tomorrow and then one every 25 years.

    This will let us get out of this current mess (whoever you blame) and reset our position. If we do this every 25 years it allows us to plan a strong partnership or independence strategy as a country. It allows us to get past all the politicians with personal goals which don't help the common person.

    We need to move forward as one United country, United Kingdom, United continent, United planet.

    I love you my brothers and sisters, let's just move forward in peace together.

    1. Re:Fair to everyone by Cederic · · Score: 1

      Let us add into UK law that we need to renew our membership of Europe by referendum. Let's have one tomorrow and then one every 25 years.

      Wait, we had one in 2016. So surely you should be supporting one in 2041.

      Unless you refuse to accept the result and want to keep re-running referendums until you win. But you already said you're pro-EU so I guess you do.

  53. 67 KiB says you are wrong by tomxor · · Score: 1

    Let me guess: the fucking page was trying to push 1MB of HTML, 2MB of CSS, 5MB of javascript and 10MB of images for each page hit?

    That's a pretty fucking terrible guess... anyone who bothered to follow the link would see one of the most spartan sites on the web - then it's just a button (12) and a mouse click (network tab) away to find out that it's a whopping 67 KiB... so no, your completely and utterly wrong. Also serving static content is almost never the bottleneck in any website, pipes are enormous these days and static content is the easiest think in the world to distribute among a cluster.

    1. Re:67 KiB says you are wrong by mrbester · · Score: 1

      The page polled every 10s to get the latest count. A at the same time, the backend was regenerating a heat map based on the locations of those who had signed. It does this with every live petition on the site as a batch job, and couldn't cope with the load.

      --
      "Wait. Something's happening. It's opening up! My God, it's full of apricots!"
    2. Re: 67 KiB says you are wrong by fiddley · · Score: 1
      --
      If medicine were ever perfected, we'd all be the same.
  54. Re: Are you afraid of a new vote, Brexit traitors by phantomfive · · Score: 1

    Oh, she can remain as a mistress.

    --
    "First they came for the slanderers and i said nothing."
  55. Why stay in the EU? by Anonymous Coward · · Score: 0

    Every single reason I have seen for staying has been fear based, apparently the world will stop spinning on its axis.

    Every single reason I have seen for leaving has been for more personal responsibility, for example people want their vote to matter, not be ruled by unelected bureaucrats.

    There are over 100,000 legal acts, court verdicts and standards amongst many more things that cannot be voted on by citizens. What do people when they have zero recourse over their lives?

    1. Re:Why stay in the EU? by ledow · · Score: 1

      "people want their vote to matter, not be ruled by unelected bureaucrats"

      Brexit does absolutely nothing about that, in fact it just leaves our own unelected bureaucrats (did anyone vote for Theresa May? No, they voted for David Cameron / the party as a whole) unchecked and able to implement laws that the person on the street will never know about.

      The reasons for not leaving are many, the reasons for leaving are many. It's not that clear-cut that most people can even understand them.

      There's a reason that we took two years to come up with a deal that neither side really wants but it was the best they could do to compromise.

      "What do people when they have zero recourse over their lives?" Carry on, like they have for the last several thousand years of organised government?

    2. Re:Why stay in the EU? by Anonymous Coward · · Score: 0

      Am I missing something? Where did the parent post for this one go?

    3. Re:Why stay in the EU? by Anonymous Coward · · Score: 0

      why stay?
      Freedom of movement
      freedom of trade
      freedom of work
      Collective bargaining power
      Industry (UK on its own is a small relatively irrelevant country, as part of the EU they are a hub to base your business
      Don't get me wrong there are a heap of reasons to leave, but there are huge economic and free movement reasons to stay. Personally I think they should leave, but it is going to be bloody painful).

    4. Re: Why stay in the EU? by Anonymous Coward · · Score: 0

      It's not useful to leave, because the vast majority of reasons to leave are one of
      1) things that could be done anyway as EU members
      2) things that rely on other countries to do along with it, and they just won't
      3) things that the UK government is driving (often at EU level) and thus will continue that way unless the parties currently in power completely collapse, which historically seems unlikely.

    5. Re:Why stay in the EU? by Anonymous Coward · · Score: 0

      What about the votes of those who wanted to stay? Should nearly half the votes be discarded? Why? Especially since it had been voted to stay in 1972 and 1975, the latter with a supermajority (over two thirds). Why did their votes no longer count but YOURS has to?

    6. Re: Why stay in the EU? by Anonymous Coward · · Score: 0

      reasons for leaving that can't currently be addressed while staying
      Border control
      Membership by basketcase countries that should never have been allowed in
      no mechanism to leave the EU or more importantly be kicked out of the EU
      You pay a fortune to stay a member

      none of those can be effectively fixed while a member in the current state of affairs. Really the EU needs to be disbanded and recreated where they can make rules with the benefit of hindsight for all the mistakes they made with version 1.

  56. Re: Are you afraid of a new vote, Brexit traitors by dryeo · · Score: 1

    Mistress to her son?

    --
    https://en.wikipedia.org/wiki/Inverted_totalitarianism
  57. Titanic by Anonymous Coward · · Score: 0

    Theresa May and Jeremy Corbin have spent the past few years arguing about how the deck chairs on the Titanic should be arranged. Meanwhile, news organizations like BBC keep rooting for the iceberg to win. But none of them will listen to the best option of all: turn the ship around.

  58. #sourgrapes by Anonymous Coward · · Score: 0

    It's only democracy when it goes our way!
    WAAAAAHHHH.

  59. Shouldn't traitors be the ones selling out Britain by Xenographic · · Score: 1

    > The first vote was tainted by flawed information, lies essentially, presented to the distracted public. It barely won. Yes, a new referendum is a good idea, one based on new, rock-solid (and very economically sobering) information. ... which you seem to be keeping in a locked file cabinet in a disused lavatory in a basement where both the lights and stairs are out. I love the excuse though. "People stupidly voted against me, so we need to vote again!"

    > Don't be retarded. If your defense is you had a vote, another vote should not be a threat.

    It doesn't take a genius to figure out that "vote until things go my way" is at best a waste of time and at worst a good way to help people cheat. How about this, everyone else can use your idea, but only when they don't like the way you vote. Deal or no deal?

  60. Trying to steer a bus already gone off a cliff by Hallux-F-Sinister · · Score: 1

    Thatâ(TM)s not what happens today. FUD is doing a good job of helping those destructive to society get in power and stay in power. In the meantime a well researched stance is screamed at for being elitist, left wing, supporting already defeated candidates and non-patriotic

    Donâ(TM)t underestimate the power of the misinformed populist vote. It has hurt the US, the UK and other countries.

    Your opinion and votes matter more than ever. We should not need to resort to demeaning opponents (dead or alive) to try to make our arguments. Taking time to understand what scares a person will likely help make a better argument for trying to win them over.

    The changes our societies need are (or certainly seem) greater than can be effected by change within the current system. New laws need to be enacted to end corruption but never will be BECAUSE they would need to be drafted and passed by the very same people whose interests those new laws would be contrary to.

    Put simply:
    1. Complacent or stupid or lazy people install, or suffer to be installed by others, elected officials carelessly.
    2. Poorly chosen elected officials are bought off by people and/or corporations with lots of money.
    3. In exchange for that money, corrupt politicians write, rewrite, massage, amend, or repeal or otherwise strike down laws to the benefit of their wealthy paymasters.
    4. Corrupt governmental bodies (full now of mostly corrupt, morally bankrupt, criminal, conniving, or just downright stupid and/or unqualified, or any one or more of the foregoing up to and including possibly all of the above or worse,) continue to facilitate the hoarding of the wealth of the society in a few at the expense of all.
    5. Tendrils of corruption reach out into all subdivisions and branches; partisan, bought-and-paid-for politicians ignore reality and install judges likely to be sympathetic to their cause and either permissive of, or outright supporting, aiding, and abetting the furtherance of corruption. This includes the “Supreme Court”. If you need proof, how’s about “Citizens United”... for one?

    Government formed with the words, “WHENEVER ANY FORM OF GOVERNMENT BECOMES DESTRUCTIVE OF THESE ENDS, IT IS THE RIGHT OF THE PEOPLE TO ALTER OR TO ABOLISH IT” ends up, ironically, becoming destructive to these ends, but the disparity between the power of the oppressed and their oppressor, when these words were written and took their place in history, is today about a million times greater.

    American patriots who vastly outnumbered what the armies of their oppressor could bring to bear against them won as much by luck as anything else. Given the separation by an ocean and all that THAT entails, and the fact that the fastest means of communication between their government and their army and navy took months to convey information or instructions, (each way,) not to mention that they had other things on their mind, (like not being taken over by the French... again,) the odds, steep as they were, were immensely better than those of the citizens of the US being able to repair their broken government by force. Even during the American Civil War, with nearly half the country in open revolt, and things like airplanes, the telephone, radio communications, satellite communications and surveillance, rampant local surveillance, etc., still far-off, mostly undreamt, and definitely not yet available, they were unable to resist “Union” forces. Those forces they could not overcome, if combined and were to try to fight against the US government of today, would be crushed in seconds. What chance does the individual have today.

    I’m not even ending that question with a question mark because really there IS no question.

    So back to the U.K. , since this discussion is ostensibly about Brexit...

    The U.K. has very nearly, in the modern day, the same problems as her erstwhile daughter, the US, partially enumerated above. But at least they

    --
    Our reign has gone on long enough. Indeed. Summon the meteors.
    1. Re:Trying to steer a bus already gone off a cliff by angel'o'sphere · · Score: 1

      AND all members of Congress have a minimum of (letâ(TM)s say...) 4 years of completed, honorable, active federal military service, at least 4 years prior to taking office*
      And that should be _outside_ of gods own country ... to gain some perspective

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
  61. Re: Are you afraid of a new vote, Brexit traitors by Anonymous Coward · · Score: 0

    Can we use this excuse to impeach trump? The voters were lied to by RussianZ.

  62. Re: Are you afraid of a new vote, Brexit traitors by Anonymous Coward · · Score: 0

    Just prep and stock up the slashdot expert says. 4Head

  63. Re: Are you afraid of a new vote, Brexit traitors by Anonymous Coward · · Score: 0

    Someone post the Comic about too many standards ;)

  64. ah the unstoppable power of online petitions by hdyoung · · Score: 1

    Yes, very impressive. 4% of the population signed an online petition. Bow before the power of the people!

    Except an internet poll counts for very, very little. Try making your voice heard when it *really* matters. Like, say.... maybe in an election? If I recall, about 51% of the people who actually count (aka the ones that bother to vote) went for the collective temper-tantrum that is Brexit. It would take another referendum to stop it.

    The world is in some sort of retrenching phase right now. Far left and right wings on the rise, anger breaking out everywhere, treaties and alliances crumbling. Crap leaders taking power or getting elected all over the world and voters seem alright with it. It's not for lack of good candidates. It's just that most leaders who dare to be reasonable get rapidly replaced by autocrats or demagogues who are shouting the most extreme stuff at the most extreme volume. I'm not sure what's going on. It's not limited to any country or region, so it must be something emergent in the whole population. Brexit is a small part of a much larger human trend.

    We'll snap out of this eventually, but no country is gonna move forward for the next decade or two. I suspect that whatever country manages to backtrack the least will be the one that winds up on top. My money is on the U.S. or Europe.

    1. Re:ah the unstoppable power of online petitions by Anonymous Coward · · Score: 0

      It's not just an internet poll, it is official national petition service, where the Parliament is obliged to respond for some amount of votes, and actually have a debate for a larger amount of votes. These thresholds were surpassed in hours I believe.

      So it will amount to something.

  65. EU is not a good fit for Norway. by Anonymous Coward · · Score: 0

    You guys should start up a Nordic Union: Norway, Finland, Sweden and Denmark.

    1. Re: EU is not a good fit for Norway. by Anonymous Coward · · Score: 0

      That already exists, and these countries have had a free movement zone long before Schengen. If you mean them all leaving the EEA, they are not that stupid.
      And that's also the big difference with Norway, they are in the EEA and have free movement, which the UK rejected.
      And someone from Norway ridiculing the food shortage issue is pretty rich, considering Norway had an actual butter shortage a few years ago, including widespread empty shelves, which was partially caused by being outside the customs union. Sure, it was only butter, but it surely DOES prove that customs issues CAN result in real issues in the supermarket.

  66. a decade later and still no C10k? by Anonymous Coward · · Score: 0

    Really? A mere 1500 req/s killed it?
    Poor architecture decisions. Cancel his contract.

  67. Re:Guardian is the best news source about "Brexit" by Anonymous Coward · · Score: 0

    The Guardian is maybe the best news source if you only want anti-Brexit news.

  68. Hundreds of thousands protest in London. by Futurepower(R) · · Score: 1

    Mass London protest demands second referendum on Brexit. (Mar 23, 2019)

    Quote: "Hundreds of thousands of people have poured onto the streets of central London asking to have a final say on Britain's departure from the European Union."

  69. Accept your future, you voted for it. by Anonymous Coward · · Score: 0

    you and your red-headed dumb bitch daughter 'merka get what you deserve for spawning, and perpetuating greed, avarice, nihilism.

  70. Re: Are you afraid of a new vote, Brexit traitors by Anonymous Coward · · Score: 0

    The royal family has inbed before.

  71. Hard facts! by 3seas · · Score: 1

    Brexit legally scheduled for 29 March 2019 at 11 pm UK time. less than 6 days from now.
    Read https://petition.parliament.uk... which got a government response
    Consider https://petition.parliament.uk... which read We’ll have to reject your petition if: It calls for the same action as a petition that’s already open
    Ask: why did they allow the petition https://petition.parliament.uk... post nine days later when it is essentially the same?

    The government likes to play head games with the minds of the people.... shrug...

  72. It's not a bug... by BBF_BBF · · Score: 1

    It's a FEATURE!!!!

  73. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  74. Re:Why is this place against sovereignty? by Aighearach · · Score: 1

    Do you live in a sovereign state in the US? Does it have open borders with neighbor member-states? You seem to hate it without remembering where they got the idea.

    They won't let us prevent entry, but we did used to have a sign asking people not to come back.

    California has a border post on the freeway and refuses entry to fruits and vegetables, though humans and pets are allowed through unchecked.

  75. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  76. Hilarious? by Anonymous Coward · · Score: 0

    Hahaha, what is this? Russian democracy?

    Way to go UK. You guys arnt making a mockery of everything....

    Maybe we've simply reached peek freedom, once enough generations have gone by, the coddled masses forget how to be responsible adults and vote to enslave themselves

  77. In more online votes just in by AHuxley · · Score: 1

    Yugoslavia votes to make Croatia rejoin Yugoslavia.
    Argentina says its has millions of votes on the issue of the Falkland Islands.
    French voters vote for a return of the monarchy.
    The USA votes to become part of England again.
    Ireland votes to become part of England again.
    All of Korea votes to become part of Japan again.
    South Africa votes on getting South-West Africa back.
    East Germany votes to build a wall.

    --
    Domestic spying is now "Benign Information Gathering"
  78. Britain voted to GTFO by Anonymous Coward · · Score: 0

    Liberals are once again reminded that they are in the minority.
    Trump legitimately defeated Hillary.
    And Brexit was legitimately approved by the voters.

    Liberals, are you tired of losing yet?

  79. Time to Brexit by Anonymous Coward · · Score: 0

    Time to Brexit, fam. The vote's been had. Bye bye EU! Shouldn't have been such shit.

    1. Re:Time to Brexit by xenobyte · · Score: 1

      Time to Brexit, fam. The vote's been had. Bye bye EU! Shouldn't have been such shit.

      Exactly. That's why people want to leave in the first place.

      --
      "For every complex problem, there is a solution that is simple, neat, and wrong." -- H.L. Mencken (1880-1956) --
  80. Talk about asking for it by Anonymous Coward · · Score: 0

    "-you all need to try harder tomorrow."

      HAHA! So he just told every DDos botnet operator to "go ahead, crash my website"

      I bet he begged Tommy Tucker the school bully to dunk his head into the toilet back in his school years.

  81. 3 million is irrelevant by gravewax · · Score: 1

    some 16 million voted to stay and 17 million voted to leave. a petition of 3-4 million from either side is simply to small to be considered, now if they got 20 million then that would be something as it would actually demonstrate a change of mind, as it is this could just be the same people that were outvoted at the referendum trying to get their way.

  82. Re: Are you afraid of a new vote, Brexit traitor by Anonymous Coward · · Score: 0

    We had two votes. That must mean something. You don't get to browbeat the people and keep voting until you get the answer you seek. That's how the EU works and we want no part of that.

  83. But what sort of referendum? by shanen · · Score: 1

    Something tedious like no-deal Brexit versus remain?

    Naw, too boring. How about a new referendum to decide if the "Great" in "Great Britain" has become oxymoronic? Also the "United" in "United Kingdom".

    --
    Freedom = (Meaningful - Coerced) Choice != (Speech | Beer^2), and sad sock puppets' bad mods avail them naught.
    1. Re: But what sort of referendum? by Anonymous Coward · · Score: 0

      Great Britain is the largest island that makes up the British Isles. It's a geographical term, not political.

      In actuality Great Britain is pretty shite.

  84. oooooh by MahmoudAhmed · · Score: 1

    oh thats true ? ... my final review https://myfinalreview.com/

  85. The BBC is a globalist institution by Anonymous Coward · · Score: 0

    Not only is the BBC funded more or less by taxpayer money (and is therefore paid regardless of performance), but it's staffed by globalists who couldn't care less about Britain as a nation.

    The British natives (whites) have a long and storied history of fighting control by outsiders.

  86. Re:Shouldn't traitors be the ones selling out Brit by Anonymous Coward · · Score: 0

    The reality is that the referendum was barely won. In fact, Vote Leave expected to lose. Not only that, Nigel Farage is on record saying that winning my a couple of percent wouldn't count in his mind. Hours later, Vote Leave had won and he never mentioned that point again. As is so often the case with Nigel he was anally communicating. The reason many oppose a new vote isn't because it was already decided. They only see it in terms of a competition and therefore it was won and that's the end of it. The idea that this isn't meant to be about competition but about democracy and the best advantage for the country seems to escape them.

  87. Derry by Anonymous Coward · · Score: 0

    Rif12Å(TM)itjyjykywjjk29wroteell2Rif12Å(TM)itjyjykywjjk29wroteell292hpnklirnkxjlink6mlmlg01kxjdkkekjkk2k68kkklnk

  88. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  89. Anything you don't like is globalist. by Anonymous Coward · · Score: 0

    So your accusaiton is completely meaningless. All you've REALLY said is you hate the BBC's stance and therefore they must be evil people.

  90. The majority was 30million people. by Anonymous Coward · · Score: 0

    About a third didn't vote, and the exits were barely ahead of the remain (48-52). But trust the brexit bullshitters to lie about stats they don't even know.

    1. Re:The majority was 30million people. by Anonymous Coward · · Score: 0

      But they were ahead, and that's what counts.

  91. You haven't left yet. by Anonymous Coward · · Score: 0

    So I guess what happens when you leave is still in the future. Guess what a future prediction not yet come true means? FUCK ALL.
    PS where's that 740mil/day for the NHS gone???

  92. Hey, you started it, faggot by Anonymous Coward · · Score: 0

    So you don't get to pull "the old X trick" when you did the trick in the prior post, moron. And if the people can't change their mind, then you are not allowed to leave since it was decided to enter in 1972. Done deal.

  93. And said the NHS could get it. by Anonymous Coward · · Score: 0

    You know it lied, you know you're lying now, but you cannot admit to either.
    If all it said was "We are spending 350m on the EU", then your claim would be correct. Since you need to explain the inclusion of the apparently, according to the lying shithole you parrot's openly voiced claim, irrelevant NHS being included in that poster.

  94. No, just Wales and NI (via scotland) by Anonymous Coward · · Score: 0

    Wales is the one that got invaded and taken over, the welsh nobs all fought to the death against the English, so when it was lost by Wales, the only landowners left were dead and the land taken over by new landlords, English ones. Funnily enough they OK'd on the nod anything that England put forward, whether it was good for Wales or not.
    Scotland, however, half were fighting the English and the other half were fighting the Scottish (therefore were by default on the side of the English), much like Scotland had done for generations. So when THAT was lost by Scotland, for a start half of the nobs left were Scots, and Scotland didn't fight to the bitter end, so there were still plenty of Scots nobs who fought the English left alive when it ended. So Scotland got a damn good deal.

    Along with the union with Scotland, however, came along the Northern Ireland issue, since the Scots had generations earlier invaded Ireland because they were starving and Ireland was slightly less deadly so James (IIRC) decided to dig up family history and proclaim that his family were also Irish royalty, and therefore some of that land was his.

    The Irish at the time were Catholic. The incoming Scots were Protestant.

    Hence the religious divide that helped ensure that the troubles kept going. If nothing else, they could just complain about the others being devil worshippers to keep the hate going.

  95. The BBC shouldn't have a stance by Anonymous Coward · · Score: 0

    Why does a taxpayer-funded, quasi-governmental news agency even get to have a stance, especially on the matter of governance?

  96. Re:Crap posts by Anonymous Coward · · Score: 0

    Hell, I didn't even bother to read the summary.

    THIS. IS. SLASHDOT! /SpartanVoice

    Hahahahahahaha he said "spartan" so you just absolutely had to reference a movie about Sparta, oh man, wow, you are so very funny and clever and not predictable at all! How do you come up with this GENIUS stuff, man?? It's just SOOO cool the way you follow his lead like that, you original guy you!