Skip to content

Recursion

kimschles edited this page Nov 21, 2018 · 1 revision

Emily Platzer Lightning Talk November 14, 2018

  • Recusion is something that is self refrencing
  • When you hit the basecase, you return
  • If you don't hit the basecase, you return the thing that was passed in -1
  • Everytime you call a recursive function, it takes up one frame of the stack and is therefore prone to stack overflow
  • for loops often do the same thing

React and Web 3

  • Web1: read only
  • Web2: read and write (we're using this now)
  • Web3: read, write, execute
    • Blockchain

What do you need for Web3?

  • Network simulator
  • Main Net is a chrome extension that lets you change your network

Offline Ready

  • Service Workers and Progressive Web Apps
  • Apps are always usable
  • Stores images or videos locally
  • Cache important assets and network requests
  • Service workers
    • JS which runs in the browser
    • No DOM access
    • Installed the fitst time you visit the website (like a cookie
  • Why SW?
    • cache page assets
    • cache network requests custom offline landing pages
  • Design a PWA
    • Responsive Design
    • Touch cabable

Parcel

  • Set up a build process fast

Colorado Community Currency

Clone this wiki locally