research.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 sm:grid-cols-2 grid-cols-1 gap-x-12 gap-y-0">
  6. <section class="sm:col-span-2">
  7. <p>I am a trained computer scientist and I have done qualitative research. This means I'm comfortable with analysing numbers and words alike.</p>
  8. </section>
  9. <section class="left col-start-1 col-span-1">
  10. <figure>
  11. <picture>
  12. <source srcset="/images/reactable-2x.webp" type="image/webp" />
  13. <source srcset="/images/reactable.jpg 1x, /images/reactable-2x.jpg 2x" />
  14. <img class="rounded" srcset="/images/reactable.jpg" alt="Reactable" />
  15. </picture>
  16. <figcaption><span>An interactive musical tabletop.</span></figcaption>
  17. </figure>
  18. <p>When I started my doctoral studies, there was an alarming lack of empirical studies in the area of <strong>interactive tabletops</strong> as <strong>music learning tools</strong>. It is not clear what happens when you give people a giant touch screen, and teach them music with it. This means you have to sit down and watch them, record their actions, and analyse their conversations.</p>
  19. </section>
  20. <section class="right sm:col-start-2">
  21. <h2>Qualitative research</h2>
  22. <p>Qualitative research is hard and fascinating work: it gives you insight on what people do and think &ndash; like reading minds, if you think about it.</p>
  23. <p>QR is at the heart of <strong>user experience research</strong>, among other applications &ndash; that means figuring out what people think about the things you make, and how they use them.</p>
  24. <p>You can look at pretty much anything for information. Typical data sources include interviews, journals, videos, and so on. However, it is a common misconception that qualitative findings are less rigorous than quantitative findings: they are simply different, and they can even work together to strengthen each other and produce even more rigorous research.</p>
  25. </section>
  26. <section class="full sm:col-span-2 pt-6 border-t-2">
  27. <h2>What can I help you with?</h2>
  28. <p>Do you have a pressing question that needs answer? Do you want to make your app better and easier to use? Do you have a brilliant new idea and want to know if it's worth developing it?</p>
  29. <p>Things I <strong>can</strong> help you with include</p>
  30. <ul>
  31. <li><strong>User research</strong> (ethnographies, surveys, focus groups, A/B testing…)</li>
  32. <li><strong>Interaction design</strong> (UX, prototyping, behaviour, patterns, iterative design…)</li>
  33. <li><strong>Usability</strong> (web sites, graphical and tangible interfaces…)</li>
  34. </ul>
  35. <p>I can work with your designers and developers to help you look into ideas and products, prototype and evaluate them, and finally build and release amazing solutions.</p>
  36. </section>
  37. <section class="full col-start-1 sm:col-span-2">
  38. <p class="calltoaction">Curious? <a href="/contact">Get in touch!</a></p>
  39. </section>
  40. </article>
  41. </div>
  42. </NuxtLayout></template>
  43. <script lang="ts" setup>
  44. definePageMeta({
  45. layout: false
  46. });
  47. const headline = "Research";
  48. const tagline = 'Not the same as "google"';
  49. const title = `${headline} ••• Andrea Franceschini, PhD`;
  50. const keywords = "research, science, qualitative, quantitative, experiments, music, learning, tabletop, research, the open university, university of cambridge, isaac physics, reactable";
  51. const description = "Science!";
  52. useState('top-banner-image', () => '/images/banner_research-2x.webp');
  53. useState('pageClasses', () => ['research', 'page']);
  54. useHead({
  55. title,
  56. meta: [
  57. { property: 'keywords', content: keywords },
  58. { property: 'DC.Title', content: title },
  59. { property: 'twitter:title', content: title },
  60. { property: 'og:title', content: title },
  61. { property: 'description', content: description },
  62. { property: 'DC.Description', content: description },
  63. { property: 'twitter:description', content: description },
  64. { property: 'og:description', content: description },
  65. ]
  66. });
  67. </script>