Skip to content

Instantly share code, notes, and snippets.

@anka-213
Created June 18, 2020 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anka-213/2b8882b25b82038b976764019228c874 to your computer and use it in GitHub Desktop.
Save anka-213/2b8882b25b82038b976764019228c874 to your computer and use it in GitHub Desktop.
Contents of /nix/store/j6w8a63v99z8hhyay1di6k8f7chxmzqq-source
/nix/store/j6w8a63v99z8hhyay1di6k8f7chxmzqq-source
├── neuron.cabal
├── src
│   ├── app
│   │   ├── Data
│   │   │   └── Structured
│   │   │   └── Breadcrumb.hs
│   │   ├── Main.hs
│   │   └── Neuron
│   │   ├── CLI
│   │   │   ├── New.hs
│   │   │   ├── Rib.hs
│   │   │   ├── Search.hs
│   │   │   └── Types.hs
│   │   ├── CLI.hs
│   │   ├── Config
│   │   │   └── Alias.hs
│   │   ├── Config.hs
│   │   ├── Version.hs
│   │   ├── Web
│   │   │   ├── Generate
│   │   │   │   └── Route.hs
│   │   │   ├── Generate.hs
│   │   │   ├── StructuredData.hs
│   │   │   └── View.hs
│   │   └── Zettelkasten
│   │   └── ID
│   │   └── Scheme.hs
│   └── lib
│   ├── Data
│   │   ├── Graph
│   │   │   ├── Labelled
│   │   │   │   ├── Algorithm.hs
│   │   │   │   ├── Build.hs
│   │   │   │   └── Type.hs
│   │   │   └── Labelled.hs
│   │   ├── PathTree.hs
│   │   └── TagTree.hs
│   ├── Neuron
│   │   ├── Markdown.hs
│   │   ├── Orphans.hs
│   │   ├── Web
│   │   │   ├── Query
│   │   │   │   └── View.hs
│   │   │   ├── Route.hs
│   │   │   ├── Theme.hs
│   │   │   ├── Widget
│   │   │   │   ├── AutoScroll.hs
│   │   │   │   └── InvertedTree.hs
│   │   │   ├── Widget.hs
│   │   │   ├── ZIndex.hs
│   │   │   └── Zettel
│   │   │   ├── CSS.hs
│   │   │   └── View.hs
│   │   └── Zettelkasten
│   │   ├── Connection.hs
│   │   ├── Graph
│   │   │   ├── Build.hs
│   │   │   └── Type.hs
│   │   ├── Graph.hs
│   │   ├── ID.hs
│   │   ├── Query
│   │   │   ├── Error.hs
│   │   │   ├── Eval.hs
│   │   │   ├── Graph.hs
│   │   │   ├── Parser.hs
│   │   │   └── Theme.hs
│   │   ├── Query.hs
│   │   ├── Zettel
│   │   │   ├── Meta.hs
│   │   │   └── Parser.hs
│   │   └── Zettel.hs
│   └── Text
│   ├── Megaparsec
│   │   └── Simple.hs
│   └── URI
│   └── Util.hs
├── src-bash
│   └── neuron-search
├── src-dhall
│   └── Config
│   ├── Default.dhall
│   └── Type.dhall
├── src-js
│   └── search.js
└── test
├── Data
│   ├── PathTreeSpec.hs
│   └── TagTreeSpec.hs
├── Neuron
│   ├── Config
│   │   └── AliasSpec.hs
│   ├── VersionSpec.hs
│   └── Zettelkasten
│   ├── ID
│   │   └── SchemeSpec.hs
│   ├── IDSpec.hs
│   ├── Query
│   │   └── ParserSpec.hs
│   └── ZettelSpec.hs
└── Spec.hs
38 directories, 62 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment