We will navigate around it. The rest of the US will be forced to use X and Facebook where content will be controlled by Musk and Zuckerberg and Trump and Putin.
Looks like they have some kind of lines under tension, possibly staked into the ground. Could be done without a wall. But a wall would make it easier.
Yeah I really feel like I’m missing something here. I really like doing steaks on a George Foreman grill. Not sure about the rest of his life or career. But the grill (which presumably he just paid to put his name on) is decent.
It’s not ironic at all.
Gen Z will complain about the next generation, and blame problems on the previous generation(s).
Why is this surprising?
I predict at some point Fedibook will become the new Faceverse.
They also told us all this stuff was recyclable. They got us to separate our trash. Municipalities changed their waste collections services. Added new trucks. For 40 years. Then they were like “yeah, none of this stuff can actually be recycled”. lol. And THEN after they got called out on that, they’re like “yeah, we lied last time. But now we really are working on a way to recycle these things. And it’s really really going to work this time totally for sure.”
Also thought of mentioning Hong Kong. Might be an even better example actually.
Much truthiness
Such verisimilitude
There was a website posted on Lemmy a few days ago that showed up in my all feed, where you could look up where protests were planned. I imagine platforms like X instantly remove links to it. So it’s probably difficult to get the word out.
lol yeah I was just thinking it’s like the very first chapter in the book. Which I haven’t read in like 30 years.
I used to know a girl who was DTF.
Yes, in English we have the expression “does a bear shit in the woods?” Which is asked in response to some other question where the answer is clearly “yes.”
“You didn’t say thank you!”
“You didn’t say sorry!”
This is the kindergarten asshurt bully.
iOS app dev build setting CFBundleShortVersionString
When I build with what is on the main branch, I get an error about invalid CFBundleShortVersionString, which appears to come from here:
ios/App/App/Info.plist
``` <key>CFBundleShortVersionString</key> <string>$(MARKETING_VERSION)</string>
```
I can workaround / hack a fix by modifying the Info.plist file with something like:
``` <key>CFBundleShortVersionString</key> <string>1.0.0</string>
```
But I assume that's not the right thing to do. What is the correct way to set CFBundleShortVersionString or $(MARKETING_VERSION) ?