The cost is on the plaintiffs, whereas the federal govt has effectively unlimited money to spend even before ignoring g court orders. While my state is not on this list, the AGs office was funded with tens of millions of dollars extra this year. While we do have a good education system to protect, there are so many other illegal actions taken by this administration that no one has time for them all. We all do what we can and hope most illegal actions get some court time
Different rules per state. For example Massachusetts taxes prepared meals and a few other things but not “food”. There was a graphic a couple days ago posted to Lemmy, showing like 5 or 10 who tax food, a minority, including several who were trying to fix that. I guess Tennessee is one of those
I have a lot of hope for solar and EVs, if politics, lobbying, corruption can be kept out. While my country is having a moment of insanity. ….. for developing countries this is their chance to leapfrog older technologies. To never produce all that pollution. To never have to pay all those middlemen. To never have to build that distribution infrastructure. To never be beholden to foreign powers for energy supply.
I hope we can make huge strides in electrifying the developing world without them being stuck at the mercy of current fossil fuel suppliers
Yeah, jira is too customizable. I mean I wouldn’t give any of it up, but the one time someone let me have the reins, I mostly simplified. Removed workflows, removed customizations.
There needs to be better ways of defining standard projects and sticking to them. Currently everyone wants their little tweak and you can’t even pick out what’s consistent and what’s not until you run into problems
More automation. More manufacturing with many fewer workers. There will continue to be fewer manufacturing jobs. Even if manufacturing skyrockets. Even if someone succeeds in turning a wealthy developed country into a fascist dystopian hellhole
I gave a friend who said something like this and I didn’t find the words to respond. Anyway, he moved to Florida near the shore so asked if he was worried about insurance, flooding, or even being able to sell the house if sea levels rise too much. He replied that he looked at the flood and storm projections for his expected remaining life and decided he was ok. Since he has no descendants, he doesn’t care if the house loses value or it becomes uninsurable
30 years ago most people weren’t yet on the internet, there was very little entertainment media, you couldn’t use online accounts for most stuff, and most people didn’t have online bill paying. 30 years ago I helped bring my company online as the first full investment company, and my bank was still rare for doing online bill paying.
30 years ago, most of the US were in denial over climate change, renewable energy was expensive and there were no practical EVs.
Apple was never leading edge - their goal is to incorporate when it works well
But you’re both cherry picking and wrong. There’s huge lists of features on every new phone, you’re picking two and deciding that means no innovation. Take a look at the dozens of other features on models from each manufacturer.
SiC batteries that offer 6-8k mAh
You’re complaining about battery chemistry that you believe is innovation, yet current batteries are much larger. Why switch if the technology is not as good yet?
This is a big reason I still have optimism. In four years if we restore law and order, and get past MAGats yelling that it’s personal, all those groupies and hangers on can face justice for defrauding the country, flouting bribery laws, violating human rights, defying the constitution …… and turnip in chief won’t be there to pardon them.
I hope to see them all in jail. I hope to se his contemptuous children start a new dynasty in jail.
Interesting idea… we actually have a plan to go public in a couple years and I’m holding a few options, but the economy is hitting us like everyone else. I’m no longer optimistic we can reach the numbers for those options to activate
My guitar teacher got me with a good one. At one point we were discussing care and replacement of the strings, named by the notes they play (E-string, A-String, etc) ……. I wanted to be diligent about taking care of my guitar so innocent kid me spent days talking about buying a new G-string before someone had mercy on me and explained it
I can jot down a bunch of notes and have ai turn it into a reasonable presentation or documentation or proposal
zoom has an ai agent which is pretty good about summarizing a meeting. It usually just needs minor corrections and you can send it out much faster than taking notes
for coding I mostly use ai like autocomplete. Sometimes it’s able to autocomplete entire code blocks
for something new I might have ai generate a class or something, and use it as a first draft where I then make it work
Linter in the build pipeline is generally not useful because most people won’t give results time or priority. You usually can’t fail the build for lint issues so all it does is fill logs. I usually configure a linter and prettifier in a precommit hook, to shift that left. People are more willing to fix their code in small pieces as they try to commit.
But this is also why SonarQube is a key tool. The scanners are lint-like, and you can even import some lint output. But the important part is it tries to prioritize them, score them, and enforce a quality gate based on them. I usually can’t fail a build for lint errors but SonarQube can if there are too many or too priority, or if they are security related.
But this is not the same as a code review. If an ai can use the code base as context, it should be able to add checks for consistency and maintainability similar to the rest of the code. For example I had a junior developer blindly follow the AI to use a different mocking framework than the rest of the code, for no reason other than it may have been more common in the training data. A code review ai should be able to notice that. Maybe this is too advanced for current ai, but the same guy blindly followed ai to add classes that already existed. They were just different enough that SonarQube didn’t flag is as duplicate code but ai ought to be able to summarize functionality and realize they were the same. Or I wonder if ai could do code organization? Junior guys spew classes and methods everywhere without any effort in organizing like with like, so someone can maintain it all. Or how about style? I hope yo never revisit style wars but when you’re modifying code you really need to follow style and naming of what’s already there. Maybe ai code review can pick up on that
Here’s why you don’t put all your eggs in one basket