

59 / 49 = 1.2 Hegseconds / Truss.
Alternatively, the Truss / Scaramucci conversion would be 49 / 11 = 4.45
Linux server admin, MySQL/TSQL database admin, Python programmer, Linux gaming enthusiast and a forever GM.
59 / 49 = 1.2 Hegseconds / Truss.
Alternatively, the Truss / Scaramucci conversion would be 49 / 11 = 4.45
Messaging is important. While the Republicans are saying “There’s some temporary pain, but it’ll all sort itself out in the end. We just need to get through this transition, and the tarrifs and deportations will MAGA”, there needs to be a counter-argument.
They’re (thankfully) not preaching to the choir. They’re going to Republicans and independents and explaining in these rallies that there’s an oligarchy that has taken control, made them poorer, and it will get worse.
If they can convince enough people of the real causes, they have a broader base, and potentially even some new progressives.
No, this is a very old joke that uses the fact the command has “fr” in it to trick people about what the command does. Joking aside, here’s what the command actually does:
rm
is the command to delete files and folders
-f
is the force modifier. This means it’ll keep going even if it encounters problems and just delete as much as it can
-r
is the recursive modifier. That means it’ll go down every folder it sees in the target and delete the contents as well, and delete the contents of folders of folders, etc.
/
is the target. This is the root of the filesystem. If you’re used to Windows, that’s like targeting C:
.
Put it all together, and this command basically deletes your whole filesystem. A safeguard was put in place a while back due to people meming about this and causing newbies to delete their whole system. Now it won’t work unless you put in --no-preserve-root
, which tells rm
that yes, you really mean it, please delete my whole system.
/*
as the target works around that safeguard, because technically deleting everything in root is not the same as deleting root itself.
And to avoid annoying error messages about preserving the root of the language, add a *
at the end. Final command should look like this:
sudo rm -fr /*
Please don’t lump trademarks with the rest. Makers have stamped their goods with their mark since ancient times, both as advertising and to signify quality products (and not knockoffs). Swords were especially commonly marked with the smith’s trademark.
It was illegal to sell bread in ancient Rome without a trademark, for example. The punishments for doing so were harsh, as they wanted to be able to track down the baker if someone sold tainted bread.
In modern days, they’re useful for customers to know what company they’re buying from.