AbelianGrape

joined 2 years ago
[–] [email protected] 5 points 1 week ago (2 children)

Are you calling for people's deaths?

Regardless of how serious their crimes are, calling for people's deaths is not a great way to be(e) nice.

Most of the unfortunate people who support the current administration are suffering from a lack of funding for education and other systemic issues that are not their fault. If the system were to collapse and be restructured, we should aim to help those people, not punish them.

[–] [email protected] 2 points 2 months ago (1 children)

"quantum teleportation" is the correct technical term. The problem is articles being written by people who don't realize this is a technical term that needs explanation.

[–] [email protected] 1 points 2 months ago* (last edited 2 months ago)

I use vim, or spacemacs with evil mode (emacs distribution with sensible shortcuts and vim emulation). Or VSCode with spacemacs emulation.

You will pass your current productivity in less than a month. All of the things you describe are easily done in VSCode with vim emulation (I prefer the full spacemacs emulation but it's not actually a huge difference). You won't have to move your hands away from the normal typing spot on your keyboard -- no home and end, just 0 and $. No control+arrow keys, just w and b (or e or even more motion options). Highlighting is as easy as v and then motion commands. And there are so many more useful things that vim (and vim emulation) make simple and fast. Orthogonal VSCode features like multi cursors still work.

[–] [email protected] 8 points 2 months ago

The appropriate comparison is to hate speech -- speech which is never tolerable. The kinds of things I wouldn't say in this comment. Some racial slurs might qualify, in my opinion, but it would be particular phrases using them and not necessarily the slur itself. The N word is obviously not hate speech when certain people say it, otherwise lots of rap music would be illegal. But there are certainly hate speech phrases that use it that are just as bad as a Nazi salute.

Freedom of speech, like any tolerance, needs to have limits and this is a very reasonable one.

[–] [email protected] 1 points 6 months ago

You have to be explicit about which module you're using at all times, even though 99% of the time only one could apply. When the type class resolution is unique, but complicated, there's no mental overhead for the Haskell programmer but getting all the right modules is a lot of overhead for the OCaml programmer. It also lets us write functions that are polymorphic under a class constraint. In OCaml you have to explicitly take a module argument to do this. If you want to start composing such functions, it gets tedious extremely fast.

And then even once you're using a module, you can't overload a function name. See: + vs +.. Basically modules and type classes solve different problems. You can do some things with modules that you cannot ergonomically do with type classes, for example. create a bit-set representation of sets of integers, and a balanced search tree for sets of other types, and expose that interface uniformly from the same module functor. But Haskell has other ways to achieve that same functionality and more.

OCaml's type system cannot replicate the things you can do with Haskell's higher kinded types, type families, or data kinds at all (except for a fraction of Haskell's GADTs).

[–] [email protected] 1 points 6 months ago (2 children)

Largely reasonable?

Haskell is not good for systems programming which sums up about 60-70% of that post. Laziness is lovely in theory but many industry uses of Haskell use stricthaskell for all or most of their code, so I certainly agree with that part too.

Their largest complaint about using Haskell for small non-systems programs seems to be the mental overhead induced by laziness. But for me, for small programs where performance isn't a huge concern (think Advent of code or a script for daily life) laziness reduces my mental overhead. I think that author is just especially concerned about having a deep understanding of their programs' performance because of their systems background. I worry about performance when it becomes relevant. Debugging Haskell performance issues is certainly harder than strict languages but still totally doable.

The lack of type classes or other form of ergonomic overloading in OCaml is easily the single "feature" most responsible for the language never taking off.

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago) (4 children)

As a Haskell programmer, "OCaml has the nicest type features" hurts just a little bit.

I sometimes teach a course in OCaml. The students who are very engaged inevitably ask me about Haskell, I encourage them to try it, and then they spend the rest of the semester wondering why the course is taught in OCaml. Bizarre how different that is from when colleagues in industry want to try Haskell.

[–] [email protected] 1 points 6 months ago (1 children)

Is Printf.printf not a good generic print function? It's even variadic!

[–] [email protected] 4 points 6 months ago

Yeah, I like subleq.

  • compiler is extremely fast, faster even than tinycc
  • strongly statically typed: all values are ints. Since it's all of them, you don't even need to write it!
  • memory safe: the entire (virtual) address space is guaranteed to be accessible at all times so there's no way to leak any of it (can't release it anyway) or to segfault (it's all accessible).

Subleq is the obvious winner in my mind.

[–] [email protected] 3 points 6 months ago

There is no official definition, in part because there isn't any formal way to define the term that satisfies our intuition.

Most treatments will handle "transpiling" as a special case of "compiling" and some will even handle decompilation as a special case where the object language is higher level than the source. Of course, even defining "higher level" can be quite hard.

Plenty of languages "compile to C" and I see no issue with saying something "compiles to js," especially given that js mostly lacks features of purescript rather than the other way around.