Skip to content
Snippets Groups Projects
Select Git revision
  • 658eb226dae7eb28b485b2f6f68e1bb028b3919b
  • BaseButton default
  • main
  • linux2
  • linux
  • newboxes
  • offlineupdates
  • qol
  • cryptotest2
  • css-cards
  • crypto-test
  • draganddrop
  • height3
  • height
  • zindex
  • connection2
  • v-forupdate
  • connections
  • v-for
  • organise-forlarger
  • kebabcase
  • lowercase
22 results

About.vue

Blame
  • About.vue 2.33 KiB
    <template>
      <div class="about">
        <h1>About</h1>
        <p>
          nodenogg.in is designed to support a new type of co-creation, a messy
          spatial area in which you work together creating and connecting ideas and
          concepts
        </p>
        <p>
          Made by Adam Procter and Toby Milner-Gulland.
          <em>
            (+ many helpers (Mathew Parker, im looking at you) &amp;
            <a href="https://patreon.com/procterbot">supporters</a>)
          </em>
        </p>
        <ul>
          <li>
            Co-create and contribute ideas, with text, links and attachments with
            other people in realtime.
          </li>
        </ul>
        <h3>
          version {{ myVersion }} - See full
          <a
            href="https://gitlab.adamprocter.co.uk/nn/nodenoggin/-/blob/master/CHANGELOG.md"
            >Changelog</a
          >
        </h3>
    
        <h3>Considerations</h3>
        <ul>
          <li>&nbsp;Data is not yet encrypted.</li>
          <li>&nbsp;There is no Export yet.</li>
    
          <li>
            Please
            <strong>UNDERSTAND</strong> all data as not backed up, data structures
            and data will ocasssionaly be deleted or changed remotely which may
            effect and break your local data.
          </li>
        </ul>
        <h2>Design-led ethical Edutech</h2>
        <ul>
          <li>
            &nbsp;
            <a href="https://discourse.adamprocter.co.uk">discuss</a>(and feedback)
          </li>
          <li>
            &nbsp;
            <a href="https://discursive.adamprocter.co.uk/categories/phd/"
              >discursive (phd catergory link)</a
            >
            (blog)
          </li>
          <li>
            &nbsp;
            <a href="https://researchnot.es">researchnot.es</a> (blog)
          </li>
          <li>
            &nbsp;
            <a href="https://manifold.soton.ac.uk">manifold</a> (writing)
          </li>
          <li>
            &nbsp;
            <a href="https://fragmentum.adamprocter.co.uk">fragmentum</a>
            (microcast)
          </li>
          <li>
            &nbsp;
            <a href="https://gitlab.adamprocter.co.uk/nn/">gitlab</a>
            (code)
          </li>
          <li>
            &nbsp;
            <a href="https://github.com/adamprocter/couchdoc-mirror/issues"
              >issues</a
            >
            (raise and review)
          </li>
        </ul>
      </div>
    </template>
    <script>
    import { mapState } from 'vuex'
    
    export default {
      name: 'About',
    
      data: function() {
        return {}
      },
      computed: mapState({
        myVersion: state => state.version
      })
    }
    </script>