truthfultemporarily
@truthfultemporarily@feddit.org
- Comment on Valve makes almost $50 million per employee, raking in more cash per person than Google, Amazon, or Microsoft — gaming giant's 350 employees on track to generate $17 billion this year 17 hours ago:
They could definitely lower their 30% cut for indie devs. Even just making the first 50k free would be huge (epic takes no cut for the first million).
- Comment on I'm in a hotel in America with no kettle in my room, if I want tea I have to microwave it. 23 hours ago:
Because of lower voltage in the US, total available power of a wall socket is lower. So kettles take forever.
- Comment on Is Kagy web browser worth it? 2 weeks ago:
Yes absolutely. The results are actually useful, they don’t have an incentive to keep you from finding what you are searching for. There is way less copywritten content and if there is, you can just block it.
Whenever I have to go back to “free” alternatives I am shocked by how much worse it is.
- Comment on Any advice for me a guy turning 18 yo old?? 3 weeks ago:
Let’s say you’re a student and poor. You live cheaply, eat ramen every day, etc.
Now you get your first real job. The amount of money at first will seem crazy. There will be the temptation to just splurge, buy watches, fancy apartment, fancy car on loan, etc. This happens every time your income increases significantly.
Now let’s say you get fired. Suddenly you have the loans, the bigger apartment, etc but no way to pay for it. This will be very stressful and you may have to do things you don’t want to.
Imagine instead you didn’t have the car. You got a modest apartment, and saved some money. You have no debts, and can easily take half a year to get a new job no stress.
So when I say live below your means, I mean do not give in to the temptation to splurge. Spend less money than you make.
Try to put at least 30% or so of your income to the side (aim for 50%). Make an emergency fund of at least 3 months worth of expenses. Then start putting money into tax-deductible retirement funds and ETFs.
Most importantly, never take loans and keep monthly expenses like subscriptions to a minimum.
- Comment on Any advice for me a guy turning 18 yo old?? 5 weeks ago:
Live below your means.
- Comment on Getting old and would like a better way to track health the self hosted way 1 month ago:
I’ve seen this haven’t tried it out though
- Comment on When a humble bard Graced a ride along 1 month ago:
- Comment on 1 month ago:
Try /sys/firmware
- Comment on Radicale - What am I supposed to do? 1 month ago:
Everything should run under their own user when possible. This software is not using a privileged port (< 1000) so it doesn’t need root.
The docs seem a bit lazy if that is not recommended, possibly it will try to access some files it does not have access to.
- Comment on EU tax officials confront the most pressing legal question of our time: If you sell RuneScape gold to someone and they use it to buy a magic sword, do you still have to pay taxes? 1 month ago:
This is actually really interesting!
This taxable individual, Kokott explains, was found to have bought and resold through “various forums, groups, and platforms such as Facebook, Discord, and Skype” enough RuneScape gold to earn €415,484—approximately $488,000 USD—between 2021 and 2023.
They then were ordered to backpay VAT because they made above 45k. Defendant says trading virtual currencies is like trading crypto, and VAT exempt. Government says its like selling a voucher instead.
Its corner cases like this one that make taxes complicated for regular people.
I also find it hilarious that tax lawyers and accountants will have to read that court decision.
- Comment on GitHub introduces hybrid post-quantum SSH security to better protect Git data in transit 2 months ago:
The threat model is that all communication is recorded and will be decrypted once the technology becomes available. The question then becomes for how long you want your data to be secure. If its for example 40 years, you need to chose an algorithm today that is still secure in 40 years.
- Comment on Have you tried self-hosting your own email recently? 2 months ago:
I would recommend something like stalwart, which is just a single binary and works. Gives you a zonefile you can just copy paste into your DNS including all correct DMARC DKIM SPF and autodiscovery records. Setting it up yourself can be a bit time consuming and annoying.
Deliverability depends on where it is hosted, many VPC providers IP space is completely blocked in spam filters.
- Comment on Rust 2 months ago:
When oxygen was first released during the great oxygenation event, it killed all other life on earth.
- Comment on Who plays like that x_x 2 months ago:
If the first game you ever played with a stick was a flight simulator, then down is up.
- Comment on Elephant 2 months ago:
Its a thing in Thailand. Family elephants.
- Comment on AI experts return from China stunned: The U.S. grid is so weak, the race may already be over 3 months ago:
Let’s be fair: no one ever warned that this could happen.
- Comment on Valhalla awaits 3 months ago:
You can also hang yourself from an ash tree!
- Comment on [deleted] 3 months ago:
I understand this, but this is inconsistent behavior. You now use 22 inside your network and something else outside. Whenever you create inconsistent behavior, everyone using it has to have an awareness of all these inconsistent behaviors.
Also, it is hard to troubleshoot because the tool most admins would want to use (netstat) will not give you useful information to understand the situation.
- Comment on AI chatbots are becoming popular alternatives to therapy. But they may worsen mental health crises, experts warn 3 months ago:
If you have a drink that creates a nice tingling sensation in some people and make other people go crazy, the only sane thing to do is to take that drink off the market.
- Comment on AI chatbots are becoming popular alternatives to therapy. But they may worsen mental health crises, experts warn 3 months ago:
I’m not sure LLMs can do this. The reason is context poisoning. There would need to be an overseer system of some kind.
- Comment on [deleted] 3 months ago:
If you change it, definitely change it on the server so it shows up in netstat and is consistent.
- Comment on [deleted] 3 months ago:
The idea behind keys is always, that keys can be rotated. Vast majority of websites to that, you send the password once, then you get a rotating token for auth.
Most people don’t do that, but you can sign ssh keys with pki and use that as auth.
Cryptographically speaking, getting your PW onto a system means you have to copy the hash over. Hashing is not encryption. With keys, you are copying over the public key, which is not secret. Especially managing many SSH keys, you can just store them in a repo no problem, really shouldn’t do that with password hashes.
- Comment on [deleted] 3 months ago:
This is mostly nonsense.
- Why block outgoing? Its just going to cause issues for most people. If you’re going to do that, do it centrally (hw firewall)
- Why allow http and NTP incoming, when there is no http / NTP server running.
- If there is http server running no mention of ssl-config.mozilla.org and modsecurity
- If you’re using ufw anyway why not go with applications instead of ports?
- In a modern distro, the defaults are usually sane (maybe except TCP), most of the stuff in the SSH config is already default.
- Why change the SSH port of a home server, which most likely is not reachable from the outside anyway?
- Actually potentially impactful stuff like disabling services you don’t need, such as cups, is not mentioned
- unattended-upgrades not mentioned
- SELinux / AppArmor not mentioned
- LKRG not mentioned lkrg.org
- Fail2ban not mentioned
Don’t just copy random config from the internet, as annoying as it is, read the docs.
- Comment on AI chatbots are becoming popular alternatives to therapy. But they may worsen mental health crises, experts warn 3 months ago:
It’s not better than nothing - it’s worse than nothing. It is actively harmful, feeding psychosis, and your chat history will be sold at some point.
Try this, instead of asking “I am thinking xyz”, ask " my friend thinks xyz, and I believe it to be wrong". And marvel at how it will tell you the exact opposite.
- Comment on The Substack app sent a push notification promoting a Nazi newsletter to several users. 3 months ago:
Its probably talking about the UK stratospheric aerosol injection research. Like all conspiracy theories, just enough of a grain of truth.
- Comment on Is it okay to cover the outside of a microwave in aluminum to prevent or lessen microwave WiFi interference? 3 months ago:
I mean don’t see why not, but you need complete coverage around it, including underside.
You could also try switching to 5 GHz wifi if your walls allow it.
- Comment on Study Reveals How Mobile Apps Track Users Through WiFi and Bluetooth: 86% of these apps collect at least one type of sensitive data, such as GPS location or unique device identifiers 3 months ago:
Could use mullvad DNS.
- Comment on YSK: Deezer, the music streaming service, is owned by a company whose Founder and CEO is a Russian Oligarch with connections to the Kremlin and donates to the American Republican party. 3 months ago:
So deezer is owned by a geezer.
- Comment on Looking for recommendations for a multi home NAS solution 3 months ago:
If you are sure that every household can only change their own data, and not that of anyone else, meaning there is only one “true copy” for every file, then yes, you can just replicate that to the other locations.
- Comment on Authentik vs Authelia? 3 months ago:
I do not consider Authelia secure from an architecture point of view.
That is because there is, by design, no authentication between authelia and the backend. That means that if anyone ever manages to directly access the backend services, they can impersonate anyone, including admin.