spencerwi

joined 2 years ago
[–] [email protected] 2 points 2 years ago

Winning ugly beats losing pretty. And Jessie Bates is that man.

[–] [email protected] 13 points 2 years ago* (last edited 2 years ago) (1 children)

I'm really surprised to see Java ranked as less-verbose than OCaml.

Here's an equivalent code sample in Java 17 vs OCaml:

Java:

abstract sealed class Expr permits Value, Add, Subtract, Multiply, Divide {
  abstract long eval();
}
record Value(long value) extends Expr {
  @Override
  long eval() { return value; }
}
record Add(Expr left, Expr right) {   
  @Override
  long eval() { return left.eval() + right.eval(); }
}
record Subtract(Expr left, Expr right) {
  @Override
  long eval() { return left.eval() - right.eval(); }
}
record Multiply(Expr left, Expr right) {
  @Override
  long eval() { return left.eval() * right.eval(); }
}
record Divide(Expr left, Expr right) {
  @Override
  long eval() { return left.eval() / right.eval(); }
}

OCaml:

type expr = 
  | Value of int
  | Add of expr * expr
  | Subtract of expr * expr
  | Multiply of expr * expr
  | Divide of expr * expr

let rec eval = function 
  | Value value -> value
  | Add (left, right) -> (eval left) + (eval right)
  | Subtract (left, right) -> (eval left) - (eval right)
  | Multiply (left, right) -> (eval left) * (eval right)
  | Divide (left, right) -> (eval left) / (eval right)

....Java has so much more syntactical overhead than OCaml, and that's even with recent Java and being pretty aggressive about using boiler-plate reducing sugars like Records. And F# has even less, since it doesn't require you to use different operators for numerics or do as much manual casting between strings/numerics

[–] [email protected] 8 points 2 years ago* (last edited 2 years ago) (1 children)

Notably, Woz found out decades later, after Steve was dead already, when he was interviewed by someone who told him the whole story.

I like to think that if Jobs were alive today, the general public would see him as the Elon Musk type that he was. Instead, he died before his cult of personality could properly sour on him.

[–] [email protected] 9 points 2 years ago

Oh, I thought the point of enoughmuskspam was to funnel all the muskspam into it, so that you could block one community and be set.

[–] [email protected] 4 points 2 years ago

Conversely, I have a recent-ish (<5yrs old) Brother inkjet printer that's waiting to be dumped to recycling because it arbitrarily decided that it didn't ever need to be discoverable or respond to any print requests one day, and so even though there was nothing mechanically wrong with it, even hooking up a Raspberry Pi to run CUPS over USB didn't fix the issue -- because Brother explicitly refuses to publish drivers for the Raspberry Pi, and their inkjet drivers are proprietary.

I've since replaced it with the best-reviewed Epson printer I could find that supports a generic PCL driver, so that if Epson ever loses their minds in the way Brother did, I can fall back on an open-source implementation of good ol' PCL.

That thing's given us no issues so far.

[–] [email protected] 8 points 2 years ago* (last edited 2 years ago) (1 children)

The cropping is not accurate to the question asked at the debate, but every candidate there signed a pledge to back whoever wins the GOP primary, and right now that includes Trump as an option.

So for Hutchinson and Christie, the only way this image is not an accurate representation of their stances (if not how they answered the question on stage) is if we assume that they were lying when signing the "loyalty pledge" document that was a requirement for even being on the stage at all.

Christie in particular opposed Trump in the 2016 election....all the way until Trump got the nomination, at which point Christie became an ardent Trump supporter. I think it's reasonable to assume this is a repeat of that track record on his part.

[–] [email protected] 17 points 2 years ago (5 children)

Community's Subway arc was pretty good too, IMO.

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

Sadly, here in Georgia, pretty decent odds.

[–] [email protected] 20 points 2 years ago* (last edited 2 years ago) (4 children)

This is super cool!

I took a look, as an avid Obsidian user interested in an open-source tool, and saw that one key difference is your emphasis on encrypted notes, which I suspect is part of why notes are stored in SQLite rather than as plain markdown files.

I think that might be something to call out in docs somewhere, since Obsidian (and Logseq) are popular note-taking apps, as one key feature difference between your app and those.

[–] [email protected] 9 points 2 years ago

It seems mostly like a boomer thing to do, honestly; I don't really hear "I hate my wife/husband" jokes from folks my generation (Millennials) or younger. Honestly, I mostly hear "I hate myself" jokes there.

A lot of the "ol' ball and chain" etc jokes tend to be more frequently casting the wife as the enemy instead of the husband, too, so there's some definite boomer misogyny as key element.

[–] [email protected] 10 points 2 years ago* (last edited 2 years ago)

As someone who occasionally read Dilbert back in the day, I do have to say that the "author self-insert character is always right and always complaining, and everyone else is always an idiot" tropes are well-tilled soil for right-wing outrage culture.

Add in there that he already had an "perpetually angry woman" character and "Indian office worker stereotype" character, and it becomes even easier to see how he got there.

[–] [email protected] 9 points 2 years ago* (last edited 2 years ago) (1 children)

He's even dumber than that. He's not just saying "could be the vaccine, could be not"; he's literally saying "you can't say it's the vaccine and you can't say it's not."

He's managed to say less than nothing.

view more: ‹ prev next ›