• 0 Posts
  • 81 Comments
Joined 2 years ago
cake
Cake day: June 7th, 2023

help-circle
  • I pay to avoid ads on Amazon Prime… Now i have to endure unskippable ads every 10 minutes, and my annual fee is up over 50% since i started.

    Fuck them. No matter what, these mercantilists will extract everything they can, and they will break any promise or contract they sign as soon as it bemefits them. We, however, cannot do the same.



  • The problem with these tariffs, implemented in this way, is that the less wealthy has to shoulder the shock and most of the loss of wealth, while the most wealthy solidify their place in society on several levels. The social balance of power further shifts toward the billionaires.

    Tarriffs are better applied for protecting existing small and mid-size businesses in danger of being wiped out by huge foreign operations, and protecting industries that have national security roles.

    The key here is they would be applied before we lose the capacity - not decades after we already adjusted to the loss.

    On this side of the curve it is more productive to subsidize operations that can (re)build the capacity we seek. Biden’s work with TSMC was a prime example. This approach is less disruptive. Even then, targeted tarriffs can be productive.

    We could have saved our solar industry. We decided to let China sell priduct at a loss until their competition went out of business or left because no profit could be achieved. This is where tariffs make sense.








  • He said Capitalism, not Corporate Capitalism. Pure, unfettered Capitalism leads to the same place facism, communism, and feudalism go.

    The issue is “unfettered”. Regulations enforced upon the operation of the markets, maintained by rule of law, enables achievement of greater agency and success upon much larger parts of society.

    People understand they can prosper from creating real value, which pushes society toward greater advancements to quality of life and enable more individual freedom than any prior economic and political system.

    Kill the illness, not the patient.







  • Others have covered this well. From my experience (35 years), most “developers” write stream of thought code. It reflects how their brains process, without regard to others. When I have agency, I can steadily refactor the code to reduce indirection, nested if.then, etc. When I don’t, I’m in danger of being too slow in completing the work. Just lost my job for that reason while working with a 1000 line service entry method with a cyclomatic complexity of 310 and 34 class parameters. Coupled with being the acceptance tester as well, it makes it near impossible to succeed.

    For extremely complicated code I used to create simple diagram sketches that illustrated the dependencies. It acted as a series of bookmarks to help keep my place. I think I have a smaller “working space” in my mind than non ADHD programmers. I think they can keep all that complexity in their mind at once while I cannot.

    In a way, I turn that into an asset by writing code that I can reason about, which by definition requires it to be SOLID, and with minimal responsibility per function.

    Lately, I’ve been using AI to generate sequence and class diagrams of the code to act as a high-level view of what’s going on. Major time saver.