qualia.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>Qualia Computing</h2>
  7. <p>On the 13<sup>th</sup> of May 2020, I woke up to find an email from <a href="https://www.linkedin.com/in/nicholas-rayner-2251903a/?originalSubdomain=uk">Nicholas Rayner</a> about this project of his, Qualia Computing.
  8. I was copied with a Professor I had collaborated with in the past, and the text referenced subjects of our past collaboration, so I assumed this was a student asking for a final year project for their undergraduate degree.</p>
  9. <blockquote><p>I am Nicholas Rayner, i'm a former Ravenbourne College Interaction Design student.
  10. I finished the course in 2002 and since have been designing a integrated operating system
  11. called Qualia. Having recently moved to Manchester i have enrolled on a course in Innovation
  12. to further progress the design of the operating system. I am also looking for people to code the
  13. system for production. The idea is to design a website with the skeleton for the system;
  14. then have people fill it in remotely. I would be co-ordinating this via a website. You would
  15. be coding specific parts of the system to work together. First the build for PC then Mac,
  16. Linux, maybe others too.</p>
  17. <p>For code and web applications Qualia would follow the W3, i am trying to get them interested
  18. as well as the Turing Insitiute; further universities Britian wide, including Cambridge, Oxford,
  19. Bristol, Manchester,Birmingham, Edinburgh and London.</p>
  20. </blockquote>
  21. <p>I am not knowledgeable enough to know that Ravensbourne College
  22. is not part of the University of Cambridge so I just flew past
  23. that reference, but the start of the second paragraph was
  24. when I began thinking it wasn't my morning slumber preventing
  25. me from making sense of the email: it was in fact the email that
  26. wasn't making any sense at all.</p>
  27. <p>&raquo; <a href="/files/qualia/Qualia Computing email 01.pdf">Read the first message</a>.</p>
  28. <p>I sent the message around to some friends as an amusement and then forgot about it. Until the 29th of May 2020.</p>
  29. <h3>Nicholas, prophet of God, is back.</h3>
  30. <p>&raquo; <a href="/files/qualia/Qualia Computing email 02.pdf">Read the second message</a>.</p>
  31. <p>The saga continues.<br />Last updated: 2020-05-29 10:00 BST.</p>
  32. </article>
  33. </div>
  34. </NuxtLayout></template>
  35. <script lang="ts" setup>
  36. definePageMeta({
  37. layout: false
  38. });
  39. const headline = "";
  40. const tagline = "";
  41. const title = `${headline} ••• Andrea Franceschini, PhD`;
  42. useState('pageClasses', () => ['qualia', 'page']);
  43. useHead({
  44. title
  45. });
  46. </script>