eumyths.vue 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template><NuxtLayout name="default">
  2. <template #headline>{{ headline }}</template>
  3. <template #tagline>{{ tagline }}</template>
  4. <div class="container mx-auto max-w-screen-lg sm:px-12 px-2 prose">
  5. <article class="body grid grid-cols-1 gap-x-12 gap-y-0">
  6. <h2>British EU Myths</h2>
  7. <h3><strong>A <a href="https://en.wikipedia.org/wiki/Internet_bot">bot</a> that <a href="https://en.wikipedia.org/wiki/Debunker">debunks</a> <a href="https://en.wikipedia.org/wiki/Fake_news">fake news</a></strong></h3>
  8. <p class="text-pink-800 font-bold"><strong>The bot is currently on hiatus.</strong></p>
  9. <p>
  10. <a href="https://twitter.com/eumyths"><img src="/images/eubot.webp" style="width: 150px; height: 150px; float: right; margin: 0 16px" /></a>
  11. The European Commission <a href="https://blogs.ec.europa.eu/ECintheUK/euromyths-a-z-index/">has archived an astonishing 426 lies</a> that the British press told about the European Union between 1992 and 2017.
  12. It is widely accepted that <a href="https://www.theguardian.com/commentisfree/2016/jul/15/brexit-boris-johnson-euromyths-telegraph-brussels">this trend was started by Boris Johnson</a>, a man who has a track record that would make Pinocchio blush, while he was posted as the Daily Telegraph's Brussels correspondent between 1989 and 1994, and was happily followed by pretty much every other newspaper in the United Kingom ever since.
  13. </p>
  14. <p>Boris Johnson became the UK's Prime Minister on the 23<sup>rd</sup> of July 2019, on what <a href="https://www.independent.co.uk/news/uk/politics/brexit-no-deal-adverts-boris-johnson-michael-gove-eu-a9085201.html">it is feared</a> to be a covert operation to leave the European Union without a deal**.</p>
  15. <p>Anyway, this bot will tweet a timeline of EU myths that are to this day widely believed by the British public.
  16. There will be hourly tweets 9:00-17:00 (London time<sup>*</sup>), every day excluding weekends, because our shiny friends deserve reasonable working hours and rest days too!
  17. </p>
  18. <p>The bot is operated by <a href="https://andreafranceschini.org">me</a>, and I may occasionally tweet through it, if necessary.</p>
  19. <p>I also tweet as <a href="https://twitter.com/morpheu5">@morpheu5</a>. Come say hi. 🙂</p>
  20. <hr />
  21. <p><sup>*</sup> That's assuming that the UK will not do away with Daylight Savings straight after leaving the EU.</p>
  22. <p><sup>**</sup> This turned out to be false. However, what happened is much, much worse.</p>
  23. <p>&nbsp;</p>
  24. </article>
  25. </div>
  26. </NuxtLayout></template>
  27. <script lang="ts" setup>
  28. definePageMeta({
  29. layout: false
  30. });
  31. const headline = "";
  32. const tagline = "";
  33. const title = `${headline} ••• Andrea Franceschini, PhD`;
  34. useState('pageClasses', () => ['eumyths', 'page']);
  35. useHead({
  36. title
  37. });
  38. </script>