jxxcarlson | 3 years ago | on: Ask HN: What Happened to Elm?
jxxcarlson's comments
jxxcarlson | 4 years ago | on: Fullstack Elm with Lamdera
jxxcarlson | 6 years ago | on: A nice app on Elm street
I've worked with many languages, beginning with Fortran in my student days that I had to punch my own cards, then doing Basic, Pascal, C, C++, Python, Ruby, Javascript, Lisp, Scheme, some Haskell, not necessarily in that order. I've never had more fun and felt more productive than with Elm. The ability to do "extreme refactoring" and come out on the other side with everything working is liberating, exhilarating, and makes code maintainable and growable over the long term.
Been using it now for three years.
jxxcarlson | 6 years ago | on: Asset minification with Elm (2018)
I've also written a bunch of small mathy apps, e.g. https://jxxcarlson.io/apps/
Elm has been a joy to work with.
jxxcarlson | 6 years ago | on: Asset minification with Elm (2018)
jxxcarlson | 7 years ago | on: Small Assets without the Headache in Elm 0.19
type LatexExpression
= LXString String
| Comment String
| Item LatexExpression
| InlineMath String
| DisplayMath String
| SMacro String (List LatexExpression) (List LatexExpression) LatexExpression
| Macro String (List LatexExpression) (List LatexExpression)
| Environment String (List LatexExpression) LatexExpression
| LatexList (List LatexExpression)
| LXError (List DeadEnd)jxxcarlson | 7 years ago | on: Small Assets without the Headache in Elm 0.19
See
- Demo: https://jxxcarlson.github.io/app/miniLatexLive/index.html
- Blog post: https://medium.com/@jxxcarlson/elm-0-19-its-parser-and-minil...
Many thanks to Evan for this amazing release. The wait for it was very much worth while. Faster compiling, smaller asset size, and more. Yay!!
jxxcarlson | 7 years ago | on: Small Assets without the Headache in Elm 0.19
jxxcarlson | 7 years ago | on: Small Assets without the Headache in Elm 0.19
jxxcarlson | 7 years ago | on: The Hitchhiker's Guide to Elm
I couldn't be happier with Elm in this project. Many major refactors: instead of the usual white-knuckle experience with prior languages/frameworks, it was, like, zen.
jxxcarlson | 8 years ago | on: Elm at Pacific Health Dynamics
jxxcarlson | 8 years ago | on: Towards LaTeX in the Browser
$$ \newcommand{\bra}{\left<} \newcommand{\ket}{\right>} $$
$$ \bra a | b \ket $$
If you go to https://jxxcarlson.github.io/app/minilatex/src/index.html, press the "Clear" button, then paste the above text, then press "Render", you should see the macros \bra and \ket properly rendered.
jxxcarlson | 8 years ago | on: Towards LaTeX in the Browser
jxxcarlson | 8 years ago | on: Towards LaTeX in the Browser
jxxcarlson | 8 years ago | on: Towards LaTeX in the Browser
jxxcarlson | 8 years ago | on: Towards LaTeX in the Browser
jxxcarlson | 9 years ago | on: Hanami – web framework for Ruby
I use postgres for persistency -- mostly throgh Hanami's model component, though I do some parts directly in sequel.
jxxcarlson | 9 years ago | on: Hanami – web framework for Ruby
jxxcarlson | 9 years ago | on: Hanami – web framework for Ruby
jxxcarlson | 11 years ago | on: Announcing noteshare.io
Also, my own project, https://scripta.io. About 45kloc of code split between the app (lamdera/elm) and the MicroLaTex-to-HTML compiler (elm).
Have been working with Elm for five years and have been happy with both the experience and the results. E.g. radical refactors of core data structures are simply no big deal.