back
user profile
adius
1,765karma·280submissions·January 14, 2015
about
CEO & full stack developer at airsequel.com.
Occasional blogger at adriansieber.com.
recent activity (280 total)
comment
I use light mode during the day and dark mode in the evening, with the OS switching automatically based on the sun’s position. To me, this seems like the obvious way to decide when to use dark mode, b…
comment
https://adriansieber.com
comment
As a similar, yet more powerful data format I started using Nickel ( https://nickel-lang.org ). It has very sophisticated typing and transformation features. Highly recommended!…
comment
Yes agreed! I already started implementing it for some subset. Hope to get it finished soon.
comment
With all the integrated standard functions Mathematica is such an incredible tool. We really need an open source version of it. Even if we implement only 10% of the features it would be already incred…
comment
This works really well, great work!
How many MB is the whole bundle?
comment
Definitely on the todo list, but since it is only a side project, I don't know when I'll get to it. Any contributions would be highly appreciated! =)
comment
I basically did the same thing a few weeks ago! =)
=> https://flatcv.ad-si.com It will be interesting to see what you did differently!…
comment
Reason ( https://reasonml.github.io/ ) is the JS like syntax for OCaml.
ReScript is a fork that explicitly removes the connection to OCaml and focuses on JavaScript output.…
comment
PHP getting a pipe operator with ways to implement a Maybe Monad was definitely not on my 2025 bingo card. But any changes making mainstream languages more functional are highly welcome! It’s just mor…
comment
I’ve had all my personal projects in Dropbox for years without any problems. I tried the same with Google Drive at work and had lots of issues, but recently it seems to have stabilized.
comment
I think it would be better to use a an existing programming language for CAD so that the LLM has more training data already. Therefore im working on LuaCAD ( https://github.com/ad-si…
comment
I'm working on https://ad-si.github.io/LuaCAD/ LuaCAD is a scripting library which uses OpenSCAD as engine to create 2D and 3D models. The OpenSCAD language itself is quite …
comment
My new go-to language for any calculations is https://numbat.dev . It’s a statically typed programming language for scientific computations with first class support for physical dimensions …
comment
Sounds cool! How is this different than https://asciimath.org ?
comment
PureScript! https://www.purescript.org/ In my opinion currently the best solution if you want to write frontend and backend in the same language!…
comment
Elm is not dead. Here some recent commits: https://github.com/search?q=stars%3A%3E1+language%3Aelm&type... Since Elm compiles to JavaScript, all the new development features from …
comment
Related: Fornjot - b-rep CAD kernel in Rust
https://github.com/hannobraun/fornjot
comment
I created a list of all companies that hire for jobs with functional programming languages.
I know you all would prefer working with your favorite FP language, but I guess any FP job would still be pr…
comment
This is just plain wrong. SQLite supports concurrent read connections and concurrent write operations if you activate WAL mode ( https://sqlite.org/wal.html ). Admin and analysis tasks …