Idk, but I use Boost and added some keyword filters. Stuff like “trump”, “musk”, “israel”, “slam”, etc. And any time I still run across political crap, I either block the community or the user. Lemmy has been great now afterwards, no politics.
Idk, but I use Boost and added some keyword filters. Stuff like “trump”, “musk”, “israel”, “slam”, etc. And any time I still run across political crap, I either block the community or the user. Lemmy has been great now afterwards, no politics.
OpenAI hasn’t even replaced their own developers, and they push out the biggest LLM turd around.
My #1 pet peeve is when someone comes to me with a problem, and the solution is in the fucking console output or error message.
On a bad day, if I had unilateral power, I would fire those people on the spot.
Don’t they use super statically verifiable code for these kinds of applications? Like, Ada?
Consistency is NOT the most important thing. Correctness is. This guy has been in the trenches flinging shit too long. I work with vendors and do my best to use the subset of their product that actually works correctly. I don’t want new features to work like shit just because the old ones did too.
Cheaper & faster development by leveraging large libraries/frameworks, but inability to automatically drop most unused parts of those libraries/frameworks. You could in theory shrink Electron way down by yoinking out tons of browser features you’re not using, but there’s not much incentive to do it and it’d potentially require a lot of engineering work.
Why is the village depopulated, if there’s a huge industrial zone nearby presumably with lots of employees? I was thinking workers might want to buy or rent low cost housing near their workplace if the land is zoned for it and you could get electric and a well, then build some simple small housing. But if they’re not buying in the village, might not be a great idea unless there’s something wrong or lacking with available properties in the village.
Try porting a very small bit of behavior into a new tiny library or module that is Typescript based and independently published. Enable the strictness checks in tsconfig - really, really resist the urge to use any, and enforce that any is disallowed in tsconfig. Familiarize yourself with its utility types that really trip new authors up. “Record” comes to mind here, and others that involve generics if you haven’t before worked with generics. Some of the type error messaging can be pretty obtuse - don’t be afraid to paste them into an LLM (or use Copilot enhanced Intellisense) to explain what it actually means. IMO the type violation messaging is a weak dev experience point for new authors, so don’t sweat it if you occasionally “struggle to make the squiggles go away”.
This is why I will never touch Javascript again. Long ago when I worked on web stuff, half my workflow was spent in the debugger tracing garbage to find where a typo was. The industry moved to Typescript, and now assuming the strictness checks are enabled, if some Typescript transpiles successfully, I can be 95% sure whatever fuckup I observe at runtime is a logic problem.
Weakly typed languages were an awful idea. But in general, if the compiler isn’t able to detect most runtime issues (like with C++ here), it’s not going to be the most productive language to use for building solutions compared to smarter alternatives.
If you plan to return
Maybe. But the biggest employers are national if not international. They’re gonna withhold federal tax.
No, businesses directly pay the federal government. More insidiously, it’s impossible to opt out if you’re employed full time; you have to be self employed to get to decide when/if/how much tax you send the federal government.
Apparently before 1943, people paid taxes individually once a year. Then a law was passed requiring their employers to do it regularly instead without their consent.
In this case, it is. The Republican candidate actually won the overall popular vote. Was this because of voter apathy? Probably. But we’re talking about “what the people who cared enough to vote” wanted.
https://en.m.wikipedia.org/wiki/2024_United_States_presidential_election
Technically speaking, you’re looking at what most voters thought they wanted. Seems like the people with the most means and influence are in favor of what’s happening too.
Are most voters easily conned? Sure. The NSDAP won its early seats freely until the other parties were outlawed.
You can at least take solace in that with the deconstruction of federal institutions, your state government and state institutions wield comparatively more power. Don’t live in a poor and/or conservative state I guess?
Yeah anything involving human behavior is ultimately…just based on how people feel and act. There’s (currently) no Robocop programmed to enforce laws to the letter.
It’s not so hard to understand. Let’s try.
ISIS wants your stuff. But, your government stops them from taking your stuff. Uh oh, the government is gone. Now ISIS shows up, and they take your stuff.
How did gangs take control of Haiti? How did warlords take control of Somalia? I guess those governments just decided to dissolve and hand over their monopolies on violence to other groups.
I think there’s a reason anarchists aren’t migrating in droves to anarchies like Haiti or Somalia.
I’ve gone through Visual Studio, JetBrains IDEs, Vim, Atom, Sublime, VSCode, probably others too, but frankly VSCode’s simplicity out of the box coupled with great plugin support is hard to beat. Folks who complain about VSCode not having some feature like to ignore that being relatively simple by default is a good thing. You can always add or enable what extensions you need to tailor it to your language and workflow of choice. Even if you’re used to Vim keyboard centric editing…guess what? There’s a well supported OSS extension to give you that functionality.
The power of being able to use one IDE on a diverse team across various languages is huge. You can even commit extension and settings defaults to a repo to immediately get new cloners up to speed with whatever workflow and tooling defaults are good starting points on a per project basis, but still leaving them the option to ignore/override as needed without dictating a team-wide workflow change.