note-5

This is an untitled note with some quick thoughts...

Sometimes the best ideas come when you're not trying to organize them into a specific structure. This is one of those stream-of-consciousness notes.

Random Ideas

  • What if we could visualize code dependencies as a 3D graph?
  • Need to remember to water the plants
  • That article about hypergraphs was fascinating
// Quick code snippet I don't want to lose
const fibonacci = (n) => n <= 1 ? n : fibonacci(n-1) + fibonacci(n-2);