

for a more readable output
df -ht tmpfs


for a more readable output
df -ht tmpfs


it can use up to that number, but it won’t allocate that much when not needed, which is the case here. tmpfs can also use swap, so the maximum space available is system RAM + swap
It’s manageable if you pass along these rules to the LLM. I’ve actually had more success asking the LLM than giving code reviews to some interns, and even someone who coded professionally before.


oh well, it was good while it lasted


configure dolphin -> View -> Content Display -> Sorting Mode -> choose Alphabetical (defaults is Natural)


That, and the fact they’re playing tag with people trying to sell it, which are breaking down these dolls into parts and selling them separately. And what for? In the end it’s just an object which sales ban won’t solve any real issues.
If it was for free, I’d consider supporting it. But it has a cost, it’s subjective (to some extent), and has no tangible benefit other than making some people feel good about themselves.


I saw your comments in other threads, and you don’t sound happy at all, but whatever. Have a nice life.


I wish it was just trump. Remember Snowden in 2013? I can only imagine the level of surveillance they have nowadays.


It’ll never be normalized because it’s fucking weird, whether that’s legal or not. And you can stop calling anyone with a different opinion a bot, it makes you sound like one.


ah, the point is that it’s disgusting, thanks for confirming the emptiness of the argument
next time I’m before an unflushed toilet I’ll call the authorities


idk about you, but when I use a VPN I want all the device’s traffic to go through it, not just the browser. So I’d always disable the built-in feature in that case.


lol they’re not arguing against because it’s a pointless measure
you’re confusing picking your fights with being supportive


ofc, this is a free alternative, not a mullvad competitor


with a 50GB quota, I actually believe it’s free. I use 15-20x that much on an average month.


“that look like children” is not enforceable. Are you requiring a minimum height? A minimum number of ageing features? A certain breast size? What about cartoon/anime stylized products?
But the core issue is that this literally won’t solve anything and it’s, therefore, a waste of time and public money.


and it finally makes sense, because I don’t think the average billionaire spends money on garbage as much as their average customer


I don’t think that banning this kind of product will solve the fact that there are people with a disorder. So what’s the point? Moralism?


right, those names are also useful when importing your package in tests
you can also create a __version__ string and append it to __all__ to have a mypackage.__version__
to pull version from pyproject.toml:
LIB_NAME: str = "mypackage"
__version__ = importlib.metadata.version(LIB_NAME)
...
__all__ = [
"__version__",
...
]
tmpfs is a memory filesystem, they all do
https://man7.org/linux/man-pages/man5/tmpfs.5.html
one-liner to get the total used size
/usr/bin/df --type=tmpfs | awk 'NR>1 {sum+=$3} END {print "tmpfs used (MiB): " sum / 1024}'