This is my favorite language: GHC Haskell
GHC Haskell:
GHCi> length (2, "foo")
1
This is my favorite language: GHC Haskell
GHC Haskell:
GHCi> length (2, "foo")
1
I guess running. About 4 years ago, I started on the treadmill with an exhausting 30min/mi. Earlier this week I completed my first 7min/mi. Along the way, I added a 28min/[email protected]% and am working on a 60min/10k (today did 62min/10k).
I saw one that claimed "plumber approved" and it made me so mad we don't have meaningful laws against deceptive advertising.
I'd like really sewer-safe wet wipes. If tried several bidets and did not like them, definitely worse than wipes IMO.
Rachet theory. R moves one direction; D refuses to move in the other.
It's not entirely false, but it's also not the whole story. Voting D is better than staying home. It might not be better than direct action -- but given the size of the voting window, it's probably not completely eclipsed by your activism. (If it is, watch out for the FBI and keep working for a better world, comrade.)
ISTR that canonically, Earth is under non-interference by The Culture (except for Special Circumstances) as a "control group".
I guess it's a hot take, but dynamic range is a very useful tool, not limited to movies but also music and almost any audio that isn't just "talking heads".
I do want explosions to be significantly louder than whispers.
Not everything is a podcast / video essay that needs to be mixed to minimal dynamic range.
🌮ACO
T🌮CO
TA🌮O
TAC🌮
They are still U S. citizens, just not citizens of any state. Same thing can happen if you are born in DC or a military base not in a state.
American Samoans are the ones that really get screwed. They are just U S. nationals. All the responsibilities of citizens (including the draft when it exists) but not all of the benefits.
They won't do it, but it would be baller to set it up like a debate, and have the moderator prompt the empty Trump lecturn and have the camera hold on it for 5-10 seconds each time. It would effectively just be a Kamala campaign interview, but with a bit of shade casting between each question.
New messages will show on all your devices, but yes, it is intentional that old messages are not available to new devices.
Oddly enough, in Haskell (as defined by the report), length is monomorphic, so it just doesn't work on tuples (type error).
Due to the way kinds (types of types) work in Haskell, Foldable instances can only operate over (i.e. length only counts) elements of the last/final type argument. So, for (,) it only counts the second part, which is always there exactly once. If you provided a Foldable for (,,,) it would also have length of 1.