idk if being annoying is against the rules of your instance but it def should be
idk if being annoying is against the rules of your instance but it def should be
What do you mean by a file being displaced? Like do you want it to be unreadable, or unmodified, or just not deleted?
It’s not really possible to have a level of protection that would require more than sudo
because with root access you bypass anything else.
You could put the files on an encrypted volume that uses a special password when it is mounted. Or you could use the chattr
command to set special ext4 attributes that would make it unmodifiable (but could be removed with sudo). Or just record the file’s hash, and that way you know it hasn’t been modified later.
It seems like that port needs to be accessible from the public Internet. Your local computer probably has at least one more firewall between it and the Internet, running on your router. You need to also forward the port on your router, which is what it says in the second half of the guide.
The link is broken. It tries to save the page instead of showing an already saved version.
Also wondering about this. No one has package Godot 4 with dotnet support for my distribution yet and I’m wondering if that’s a sign of the overall state of C# support or just bad luck.
I think that it’s a great project, and I hope it succeeds. My sense is that there is more momentum around Nix, so for a lot of uses it just makes more sense.
Guix and Nix both have the same issue imo, which is using a loosely typed language with an odd syntax. I feel like something both strongly typed and with a more common syntax would be easier to edit and faster to evaluate.
Huh, do you have any cultures in mind?
Most people hate this. It’s just impossible for the average person to do anything about it because very few politicians support changing the current system. In the 2020 election for instance there were like 2 dem candidates and 0 Republican candidates who wanted a public option for health insurance. Nationalizing the whole thing, NHS style, is completely off the table.
The American economy is built in a very specific way to make certain things cheap and certain things very expensive. The cheap things are gas, toys, commodities, clothes, unhealthy food. The expensive things are education, good food, healthcare, and, in certain areas, housing. That means there are a ton of Americans who live extremely precarious lives, where losing their job would be the end, but they still have a higher level of material comfort than many people would in other countries.
The other thing about the American economy is that wealth is extremely biased towards older people. For a long time, the system was built around normal working class people buying a house, and building wealth through that. As long as housing prices went up at a controlled rate, everybody slowly got richer. Now, older people own most of the houses. Like I grew up in a small town that was sort of the ideal American dream neighborhood. There were a bunch of other kids on my street, including some good friends. We rode the bus together and spent the weekends hanging out in my friend’s loft. Now, when I go back there, there’s like one family with kids on the street, and everyone else is a retired couple in a huge house that they don’t really need. They have no particular incentive to move out, because it would be expensive and they’re comfortable.
So if you’re a younger person without in-demand education you really are extremely poor. 5k could really improve your quality of life by letting you get some dental work or something. Although the unemployment rate is low right now, companies are able to collude to some degree to keep entry level jobs precarious.
Obviously things are worse in red statea, but poverty is a constant in America. The only reason rich dem areas seem rich is because they force all the service economy workers who make their lattes and teach their kids to commute hours into work every day.
Try using a different profile? (about:profile)
As long as there’s a neovim extension
Suburban car culture. People can go on and on about the how they like driving, and like the freedom to drive everywhere, even if it makes them fat and lonely. But what about their kids? It’s insane that kids are essentially trapped at home unless a parent happens to have the ability to drive that somewhere. Your convenient lifestyle comes at the cost of raising neurotic introverts who won’t go outside.
Is the Singleton accessed by one thread or many?
If it’s one thread, couldn’t you just wrap the Vec
in an Rc
and then clone your singleton every time you need it in a new scope?
If it’s many, you should use channels and a dedicated logging thread imo.
Didn’t know about that one, thanks!
If you want to accept a user input of any length, you have to read the input piece by piece and allocate a new buffer if the original becomes full. Basic steps would be:
malloc
to make a char *
buffer\0
to your buffer and break the loop. You’re done!memcpy
to copy the stuff from the old buffer to the new one. Use free
to get rid of the old buffer.This will work until you fill the entire memory of your computer. You should probably set a max length and print an error if it is reached.
It creates a flat network between all of your devices anywhere, so if you have a home server that you want to connect to from elsewhere you can do that without port forwards.
What’s your use case? Maybe you would be better off with Tailscale or something like that
Maybe you could just try a different Transmission docker image or build your own? Sounds like some weird instability in that particular version.