There's plenty of racism around, but I wouldn't worry about it as tourists. What you read about is the general systemic problems related to living here in the day to day. That's pretty different from visiting as a tourist. As a tourist, you're pretty unlikely to experience anything like that.
Just to point out, with the median mortgage at $2349 a month, it's more like you need a household income of $93,000 a year (probably closer to $100k with utilities and other expenses) for your housing costs to equal 30% of your income. That is steep for a lot of people, but still much more attainable than 7 figures. A quick Google says that makes up around 37% of US households as of 2022. Still doesn't quite add up to their figures, admittedly, unless "nearly half" is doing a lot of work in that sentence.
I assume you're just memeing siince he never actually wrote about that?
Not voting is the same as voting for Trump.
That's certainly what we do in my workplace. Shocked that they don't.
It's actually hot sauce specifically that has a tendency towards intentionally weird names. Don't know how it started exactly, but at this point it's a pretty common marketing gimmick.
Yeah it's not all that uncommon in school, just increasingly uncommon in industry.
GDPR is really designed to target software controlled by a single entity, but this isn't that. The instances are responsible for their content, full stop. There's no way of forcing an instance to delete content, and even if there were, since the admins are running it, there's nothing stopping them from removing such a feature.
There's also nothing stopping admins from deleting content from their servers (it's just a database, after all).
For sure. If 32-year-old vim can handle multi-GB files smoothly, you don't need a GPU.
With a quick search on Zillow for Lincoln, Nebraska (~300k pop college town), cheapest I can find is $90k for a 1 bed/1 bath 500 sqft condo. $100k for a 1 bed/1 bath 500 sqft house, though technically that's a foreclosure so you might not consider that to count. The cheapest normal house for sale that I can find is $110k for a 2 bed, 1 bath 1500 sqft house. It's an older home, but actually a pretty decent location (close-ish to downtown).
It's very well-known and common knowledge. It's certainly something that I will talk about without feeling the need to define terms or something. I would assume anyone unfamiliar with it either didn't pay attention in school or never went to school to begin with.
It looks pretty normal to me as a professional Haskeller, though I suppose it's perhaps slightly cleaner to write it as
conditionalBaptize p = fromMaybe p $ baptize p
. It's largely just a matter of taste and I'd accept either version when reviewing an MR.Edit: I just thought of another version that actually is far too clever and shouldn't be used:
conditionalBaptize = ap fromMaybe baptize
, making use of the monad instance for->
. But yeah, don't do this.