Readit News logoReadit News
ahupp commented on Exit Tax: Leave Germany before your business gets big   eidel.io/exit-tax-leave-g... · Posted by u/olieidel
bluecalm · 21 days ago
Capital gain tax is stupid anyway. It's one of the first tax that should be removed.

You can tax business at home by land/revenue/resources usage/ip protection taxes. As it is owners in different jurisdictions pay a different (or sometimes no) tax on selling shares. Selling itself is something you want to encourage, not discourage. It's a pointless tax that penalizes exactly the things you want to encourage.

You think that someone moving to Portugal to avoid it is unfair but then a share holder living in 0 cap gain jurisdiction in the first place would pay 0 anyway.

ahupp · 20 days ago
IMO corporate income tax is the first that should be removed, with a corresponding shift to income taxes. Those can be as progressive as you want, have much lower compliance costs, and don’t distort behavior in the same way. Thought in practice I’m not sure how tax collection from foreign owners would work.
ahupp commented on Dict Unpacking in Python   github.com/asottile/dict-... · Posted by u/_ZeD_
IshKebab · 2 months ago
You shouldn't be using kwargs! That is also well known to be bad practice (or it should be anyway).

https://medium.com/codex/stop-using-kwargs-as-method-argumen...

http://ivory.idyll.org/blog/on-kwargs.html

Give me another one.

ahupp · 2 months ago
I’d agree with this, unless the kwargs is typed with the new-ish PEP-692: https://peps.python.org/pep-0692/
ahupp commented on Denmark to raise retirement age to 70   telegraph.co.uk/world-new... · Posted by u/wslh
StopDisinfo910 · 3 months ago
It is entirely arbitrary. Society heavily favours capital above labour. That’s why we have very rich inheritors never working and people toiling until they are 70. It’s entirely a choice. This issue has solutions we collectively decide not to put in place.
ahupp · 3 months ago
Can you quantify what you think that choice looks like?

Say you seized the entirety of Elon Musk’s assets: that could pay for a year and a half of the Dept of Transportation. Say you seized all the wealth (somehow) of the world’s 100 richest people. That’s 2 years of US non-discretionary spending (social security, Medicare and Medicaid). I often see comments that assume all problems could be solved by just taxing the rich more, but I just don’t think that’s true.

The Nordic countries pay for their social safety nets by taxing the middle class more heavily than we do in the US. If you want to change that, it’s less about capital vs labor, and more about your dentist vs labor (dentists be the classic example of jobs that earn high incomes without being “capital owners”).

ahupp commented on A Man Out to Prove How Dumb AI Still Is   theatlantic.com/technolog... · Posted by u/fortran77
globnomulous · 5 months ago
I tried my own test recently:

"Write a history of the Greek language but reverse it, so that one would need to read it from right to left and bottom to top."

ChatGPT wrote the history and showed absolutely no awareness, let alone, "understanding" of the second half of the prompt.

ahupp · 5 months ago
With o3-mini-high (just the last paragraph):

civilization Mycenaean the of practices religious and economic, administrative the into insights invaluable provides and B Linear as known script the in recorded was language Greek the of form attested earliest The

ahupp commented on Cleveland police used AI to justify a search warrant. It derailed a murder case   cleveland.com/news/2025/0... · Posted by u/rntn
ahupp · 7 months ago
Say they, hypothetically, the police just looked at every drivers license photo of people living in a 1 mile radius. And they find the suspect, and go to a judge saying a combination of appearance, perpetrator in suspects driveway, and criminal history gives probable cause for a search. I don’t think that’s any different.

If they came to the judge and said “an informant said we’ll find the gun here” and the informant was actually Clearview, thats obviously a problem.

ahupp commented on Is the world becoming uninsurable?   charleshughsmith.substack... · Posted by u/spking
iandanforth · 7 months ago
"Correctly" is doing a lot of work here. Some readers might miss that this is double edged. Insurance is a mandated product. You don't have a choice if you want a mortgage, or want to run a business. So while it is true that the sustainable price for insurance in many areas is higher than what current regulations allow, let's not forget what happens in an unregulated insurance market; price gouging.
ahupp · 7 months ago
The big risk that we need regulation for is not that insurance charges too much, but too little. There will always be the temptation to charge less than the other guy, get lots of customers and hope nothing really bad happens.
ahupp commented on Debian's approach to Rust – Dependency handling (2022)   diziet.dreamwidth.org/105... · Posted by u/zdw
llm_trw · 8 months ago
Apart from the fact building it the 'non-C way' results in a magic meat package that you have no idea what it contains: https://hpc.guix.info/blog/2021/09/whats-in-a-package/

Guix is also a distro that allows for any number of versions of the same package globally, something that language specific dependancy managers do not.

Distors are there for a reason, and anyone who doesn't understand that reason is just another contributor to the ongoing collapse of the tower of abstractions we've built.

ahupp · 8 months ago
Using language-native packaging doesn't imply that you have to use binaries from wherever. In the pytorch example you can still build it as a regular part of the distribution, using the C++ dependencies/toolchain, it just means you don't try to stuff it into a versioning/distribution/install model that doesn't match the languages expectations.
ahupp commented on Debian's approach to Rust – Dependency handling (2022)   diziet.dreamwidth.org/105... · Posted by u/zdw
XorNot · 8 months ago
Except from a management and maintenance perspective...this is a nightmare. When a security vulnerability drops somewhere, everywhere needs to be patched ASAP.

Distros (and the people who run most scales of IT org) want to be able to deploy and verify that the fix is in place - and its a huge advantage if it's a linked library that you can just deploy an upgrade for.

But if it's tons and tons of monolithic binaries, then the problem goes viral - every single one has to be recompiled, redeployed etc. And frequently at the cost of "are you only compatible with this specific revision, or was it just really easy to put that in?"

It's worth noting that docker and friends also while still suffering from this problem, don't quite suffer from it in the same way - they're shipping entire dynamically linked environments, so while not as automatic, being able to simply scan for and replace the library you know is bad is a heck of a lot easier then recompiling a statically linked exe.

People are okay with really specific dependencies when it's part of the business critical application they're supporting - i.e. the nodejs or python app which runs the business, that can do anything it wants we'll keep it running no matter what. Having this happen to the underlying distributions though?

(of note: I've run into this issue with Go - love the static deploys, but if someone finds a vulnerability in the TLS stack of Go suddenly we're rushing out rebuilds).

ahupp · 8 months ago
This is conflating static linking with how the distribution handles updates. If a language is always statically linking dependencies (like Go or Rust), the distribution will have to rebuild everything that depends on a patched package whether or not they are using the language's native tools or some import into the distro package system.

What I'm specifically suggesting is:

  * Distributions package *binaries*, but not the individual libraries that those binaries depend on.
  * Distributions mirror all dependencies, so that you can (in principle) have a completely offline copy of everything that goes into the distribution.  Installing a binary uses the language-specific install tools to pull dependencies, targeting the distribution's mirror.  
  * Enough dependency tracking to know what needs to be rebuilt if there's a security update.
  * Any outside dependencies (e.g openssl) will continue to depend on whatever the distribution packages.
  * Dependencies are not globally installed, but use whatever isolation facilities the language has (so e.g, a venv for python, whatever npm does)

ahupp commented on Debian's approach to Rust – Dependency handling (2022)   diziet.dreamwidth.org/105... · Posted by u/zdw
davexunit · 8 months ago
It's frustrating to see the "rewrite it in Rust" meme continue spread to all sorts of projects when there is no reasonable packaging story for the language and no solution in sight because the community does not see it as a problem. Cargo has introduced a huge problem for distros that didn't exist with languages like C. Compared to Rust, packaging C projects for distros is easy. Because of these problems, developers are receiving more issue reports from distro maintainers and are becoming more hostile to distro packaging, adopting a "use my binary or go away" mentality. Of course, this is a general problem that has been happening for all languages that come with a language-specific package manager; developers love them but they're typically unaware of the massive downstream problems they cause. It's getting harder to harder to exercise freedom 2 of free software and that's a shame.
ahupp · 8 months ago
It’s not like this is unique to rust; you see similar issues with node and python. Distributions have many jobs, but one was solving the lack of package management in C. Now that every modern language a package manager, trying to apply the C package management philosophy is untenable. Specifically, the idea of a single version, globally installed, and producing distro packages for every language specific packages.
ahupp commented on Feds help health insurers hide their dirty secret: denials on the rise   nypost.com/2024/12/12/opi... · Posted by u/mancerayder
carlgreene · 9 months ago
I'm trying to figure out if these deaths caused by insurance denials could actually be considered murder. I think they would definitely qualify as being premeditated, but can you consider them "killing"? They are causing death due to omission of expected care, but can the omission of something like medical care be considered the cause of death?
ahupp · 9 months ago
The doctor / hospital that refuses to treat when insurance declines is also involved in the “omission of expected care”. Would they also be guilty of premeditated murder?

u/ahupp

KarmaCake day1664November 12, 2008
About
https://hupp.org/adam
View Original