“North America” is the name of the continent. It can stay.
I guess the entirety of America is in dark corners?
I feel like I didn’t really recognize having different “platforms” like Mastodon, PixelFed, etc would give multiple opportunities for the fediverse to make a “first” impression with people.
Corporations have learned long ago the importance of properly identifying your audience, and the Fediverse is not exempt from that rule. Lemmy is the Fediverse version of Reddit and Mastodon is the Fediverse version of Twitter, and just like these two giants could live together with each other and also with Instagram without stepping on each other’s toes, so do their Fediverse versions can live with the Fediverse version of Instagram, PixelFed.
Now we’re just missing a Fediverse version of Facebook.
The other four distros they use are Lubuntu, Xubuntu, Gobuntu and Mythbuntu.
This is still better than the opposite tactic of sending your opponent to google it and when they don’t find anything saying that it’s because they are not trying hard enough.
Source: google it
They are not made of straw, either.
You are assuming here that I know what I want. What if there is no obviously correct answer, and even in the Everett branch that generates the optimal content for the file I’ll still think it can be improved and tell it to destroy the universe?
What if there is no correct answer?
I just use this:
#!/bin/bash
keep_generating=1
while [[ $keep_generating == 1 ]]; do
dd if=/dev/random of=$1 bs=1 count=$2 status=none
echo Contents of $1 are:
cat $1
echo
read -p "Try generating again? " -s -n1 answer
while true; do
case $answer in
[Yy] )
echo
break
;;
[Nn] )
keep_generating=0
break
;;
*)
esac
read -s -n1 answer
done
done
I vote for “OF-Model/Simp”.
Why parse the HTML manually when sed
is a standard utility and you can use it to parse it with regex?
Windows uses AI to determine what’s best for you. GNOME just decides it generally in advance.
What do you mean by “improving”? This alarming warning appears because Firefox requires permissions. Let us look at the permissions listed there:
App permissions should not be about “this app cannot be trusted because it asks for scary scary permissions”. They should be about “take a look at the list of permissions the app requests and determine whether or not it make sense for such an app to need such permissions”.
Nearly every app should have a warning
No. If you put a warning on every app (except for the most trivial ones that don’t actually do anything useful) then the warnings mean nothing. The become something more than ass-covering legal(ish) BS.
What if Windows decided to update after you finished checking the equipment? I mean, they do use AI to determine the worst time for an update…
For extra irony, sell him an NFT to the source code.
I don’t think this metaphor is correct. The automatic gear’s analogy would be the Garbage Collector, which almost every mainstream language has. Rust’s memory management, in comparison, is still manual. Maybe not as manual as C or Zig - but I’d say about as manual as C++. The difference is not that it has some weird gear-changing (memory cleanup) scheme that does not require human intervention - it’s that it yells at you when you don’t do the regular gear changing (memory management) properly.