gitextract_ku31l5mv/ ├── .gitattributes ├── .gitignore ├── .gitmodules ├── Cakefile ├── Gemfile ├── Guardfile ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── app/ │ ├── controllers/ │ │ ├── account.coffee │ │ ├── browser.coffee │ │ ├── editor.coffee │ │ ├── modal.coffee │ │ ├── note.item.coffee │ │ ├── notebook.item.coffee │ │ ├── panel.coffee │ │ ├── popover.coffee │ │ ├── settings.coffee │ │ ├── sidebar.coffee │ │ ├── sync.coffee │ │ └── upgrader.coffee │ ├── index.coffee │ ├── init.coffee │ ├── lib/ │ │ ├── setup.coffee │ │ └── splitter.js │ ├── models/ │ │ ├── .gitkeep │ │ ├── note.coffee │ │ └── notebook.coffee │ └── views/ │ ├── .gitkeep │ ├── note.handlebars │ └── notebook.handlebars ├── css/ │ ├── font.scss │ ├── keyframes.scss │ ├── new.scss │ └── normalize.scss ├── package.json ├── public/ │ ├── about.html │ ├── default.json │ ├── emojify.js │ ├── handlebars.runtime.js │ ├── images/ │ │ └── emoji/ │ │ └── emojify.css │ ├── index.html │ └── sublime.css └── src/ ├── AboutWindow.coffee ├── Springseed.coffee └── main.coffee