Open source transcribing tool. Respects the privacy of your data, can be plugged to many external tools.
Because I'm testing WebComponents with this project, you will have to use an up to date Chrome/Chromium version. Unfortunately Firefox support for WebComponents is pretty poor at the moment.
AHAH, you thought you wouldn't need any javascript stuff. You're screwed.
npm install
bower install
Install dependencies by running elm make src/elm/Main.elm
. It should start downloading dependencies and then complain about Dom.Size
module.
I cannot find module 'Dom.Size'.
Module 'Main' is trying to import it.
Open the elm-stuff/packages/elm-lang/dom/1.1.1/elm-package.json
file and change
"exposed-modules": [
"Dom",
"Dom.Scroll",
"Dom.LowLevel"
],
to
"exposed-modules": [
"Dom",
"Dom.Scroll",
"Dom.LowLevel",
"Dom.Size"
],
Then open elm-stuff/packages/elm-lang/dom/1.1.0/src/Dom/Size.elm
and change the first line from :
module Dom.Size exposing (height, width, Boundary)
to
module Dom.Size exposing (height, width, Boundary(..))
Then, the code should compile just fine.
npm start
Open http://localhost:8080/ in your browser and enjoy.
- RichText model: https://gist.github.com/avh4/bbd7b8153df0ef00896e6e34e83d42cb / https://twitter.com/janiczek/status/784291419405942784
- https://drive.googleblog.com/2010/05/whats-different-about-new-google-docs.html
- https://github.com/eeue56/elm-server-side-renderer
- https://github.com/ritzyed/ritzy