spencerwi

joined 2 years ago
[–] [email protected] 1 points 26 minutes ago* (last edited 26 minutes ago)

Yeah! Let's start with Fort Sumner!

...wait

[–] [email protected] 12 points 2 days ago

Poor guy. I can't imagine what it's like to have people invade your privacy by sharing all your personal stuff with the internet.

(/s)

[–] [email protected] 92 points 1 week ago* (last edited 1 week ago) (3 children)

I feel like "noo it wasn't a Nazi salute, or uh, it wasn't intentional" is more of a "right of center" response instead of a "center" response, and "Elon Musk just did a Nazi salute on live TV" is closer to center, but otherwise this seems accurate.

Maybe the Overton window has shifted so far right that I'm wrong about that, though.

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

My interactions with that user have led me to believe that they're less Marxist and more just pro-Xi. As Stalin demonstrated pretty clearly, there's a difference between being the dictator of a nominally-communist country (or a fanboy of said dictator) and being an actual Marxist.

[–] [email protected] 2 points 2 weeks ago (3 children)

Maybe running an OwnTracks server or something?

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

This has real "Twoflower's Luggage" vibes.

[–] [email protected] 7 points 1 year ago (7 children)

I mean, is "other people are having fun" really something that demands a resistance?

Or could you, perhaps, just not do it and not care whether that makes you "cool" or not?

It's like that bit from Community: "wear it because of them, don't wear it because of them — either way, it's for them."

Just be you, without having to have some sort of faux "resistance" to justify yourself.

[–] [email protected] 18 points 1 year ago* (last edited 1 year ago) (17 children)

Thank u Jason, very cool !!

Seriously though, good for you I guess? Not sure why you're grandstanding about it.

Meanwhile, I'm doing it the way I have in years past: as a fun set of puzzles that let me write code I enjoy in a language I like, because I do actually enjoy writing code, and only until my real-life schedule no longer allows.

Nobody's saving the world by posting on their personal blogs about how they're bravely and boldly not doing a series of optional advent-calendar puzzles.

[–] [email protected] 7 points 1 year ago (1 children)

In the sort of dialect Charlie Daniels had, "went down to" means "went south to", meaning that Hell is north of Georgia. It's in Michigan, in fact — and based on my experiences there, it might just be Michigan.

 

Team wasn't at absolute peak, but they played well enough that I think if it had only been 11-on-11 they would've come away with a win.

[–] [email protected] 13 points 1 year ago* (last edited 1 year 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 1 year ago* (last edited 1 year 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 1 year 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.

view more: next ›