Hacker Newsnew | past | comments | ask | show | jobs | submit | moomin's commentslogin

There’s a conflict here that’s nothing to do with the ethical dimension: Claude is regarded as a high quality model at least in part because its critical about what it’s doing. The military, on the other hand, doesn’t really encourage introspection. Even without ethical considerations there’s always going to be a tension between quality and obedience.

The military has its own mechanisms for assessing the quality of its own output. They might be imperfect, but they're there. They don't need that from claude.

What they need is it to not say "it seems you're trying to build a weapons system, can you please not do that" when someone asks it to sanity check something that's on the edge of their technical expertise. Like making sure their proposed antenna dome is aerodynamically sane at transsonic speeds so the aero guys don't have to waste time rejecting it outright. Or they need it to not paternalistically screech about safety when someone tells it to read the commercial user manual for some piece of equipment and then append into the usage sections all the non-osha stuff the military does when things don't work quite right.


No, military probably wants prompts like "how to make a missile" to be answered.

A lot of people’s problems with H1B visas has nothing to do with protecting American jobs. The truth is H1B visa are a method of exploiting foreign workers. Make H1B run for a fixed time period and not be tied to a specific job and you’ll simultaneously boost the supply of highly-skilled workers and ensure they get a fair market price.

> Make H1B run for a fixed time period

They already are.

> not be tied to a specific job

I agree, and lobbied for that on the Hill years ago but this was during the DREAM act battle [0] so it got nowhere.

> you’ll simultaneously boost the supply of highly-skilled workers and ensure they get a fair market price

I agree.

[0] - https://www.politico.com/story/2013/12/nancy-pelosi-immigrat...


One of the things I’ve noticed is that when leftists say “capitalism” they often mean “the ability of capital to set the rules of markets” rather than just “markets”. This causes people who use the latter interpretation and leftists to talk past one another quite a bit. Which is one of the reasons that leftists have sounded this alarm bell for at least twenty years and no-one has paid attention.

When leftists say "capitalism" they mean something closer to what conservatives and free market libertarians mean by "fascism."

Capitalism is a big money party. Leftists are the party poopers, actually just slightly less drunk than the rest of the guests, and pointing out that lighting up fireworks indoors isn't a good idea. Booo-hooo, shut up lefty! *BANG*

Command economies break too. Capitalism has occasional fires like a forest. This is good. It allows things to shake out. New growth comes from the destruction. Command economies don't. They just continue to grow weeds and tall trees until everything is choked. Then they wonder why everything is garbage.

The US is moving to a fascist economy. That is a form of command economy. For example the FDA is controlled by big pharma.


Capitalism with the ultra-wealthy is functionally the same as a command economy.

I see a very funny fight on our hands.

.NET has a _huge_ platform library and you know what? It’s a pleasure. So many things are just the standard way of doing things. When things are done weirdly, you can usually get a majority in favour of standardising it.

Yes, there’s always a couple of people who really push the boat out…


Yeah, IMO the small standard library in Rust is a big mistake, one of the few the language has made. When push comes to shove the stdlib is the only thing you can count on always being there. It's incredibly valuable to have more tools in the stdlib even if they aren't the best versions out there (for example, even if I normally use requests in Python urllib2 has saved my bacon before), and it doesn't hurt anything to have them there.

I don't think the situation is that comparable to python, since in python the library has to be present at runtime. And with the dysfunctional python packaging there's potentially a lot of grey hairs saved by not requiring anything beyond the stdlib.

With Rust, it's an issue at compile-time only. You can then copy the binary around without having to worry about which crates were needed to build it.

Of course, there is the question of trust and discoverability. Maybe Rust would be served by a larger stdlib, or some other mechanism of saying this is a collection of high-quality well maintained libraries, prefer these if applicable. Perhaps the thing the blog post author hints at would be a solution without having to bundle everything into the stdlib, we'll see.

But I'd be somewhat vary of shoveling a lot of stuff into stdlib, it's very hard to get rid of deprecated functionality. E.g. how many command-line argument parsers are there in the python stdlib? 3?


On the other hand, a worse implementation in the stdlib can make it harder for the community to crystalize the best third-party option since the stdlib solution doesn't have to "compete in the arena".

Go has some of these.

Maybe a good middle-ground is something like Rust's regex crate where the best third-party solution gets blessed into a first-party package, but it is still versioned separately from the language.


Non-system programmers like to trivialize choices of system programmers yet again. .NET is a GC platform running on a virtual machine. Bytecode compatibility and absolute performance are not that big of a deal on such platforms. You cannot / shouldn't run .NET on deeply embedded systems and bare metal where You want to strip as much standard library as possible and want as little magic in standard library as possible. In a language with big hosted system assumption this causes to runtime to be split and forces developers to define big API boundaries.

The use case of languages like Rust and C++ is that you can use the same compiler to write both bare-metal unhosted code (non-std for bootloaders, microcontrollers and kernels) and hosted code (uses std structures). As a system programmer that crosses the edge between two environments, I would like to share as much code as possible. Having a big standard library with hosted system assumption is a huge issue. In those cases you want the language works 99% the same and can use the same structs / libraries. Sometimes you also want to write non-std code on hosted environments for things like linkers.

Rust isn't even at the level of maturity of C yet in this regard. Rust's std / core is too big for really memory limited microcontrollers (<64 K space) and requires nasty hacks with weak ABI symbols to make things sane.

Having a huge baggage of std both causes issues like this for the users and also increases maintenance burden of the maintainers. Rust really wants to break its APIs as little as possible and small standard library is a great way to achieve that. C++ suffered a lot from this and it hampered its adoption for C codebases.


Some of these non-system programmers are ex-system programmers, coding since the mid-80's that foundly remember the days when C and C++ compilers had rich frameworks that would compete in features with what .NET and Java later came to be.

Unfortunelly too many modern system programmers never lived in that era, and are completly off on how nice the whole development experience could be like.


I think those two things are orthogonal. I'm not against somebody bundling up nice Rust libraries and providing a pre-install package or providing nice GUIs around (like Borland used to do and Qt still kind of does). Or an OS providing a nice set of libraries.

However, the standard library of a systems language has a special relationship with the compiler. This is the case for C and C++ where the compiler and the standard library also has a special relationship with the platform like GNU or musl with Linux, or MSVC and Windows. It makes changing APIs or modernizing infrastructure almost impossible without creating an entire new OS and porting all compilers and standard libraries to it. Moreover the newer C++ standards actually force you to define such a relationship (with std::initializer_list and threading stuff). It is basically impossible to make an OS-agnostic C++ compiler that doesn't leak its and platform's internals to the user.

Luckily Rust mostly abstracts around the platform-compiler boundary and its standard library so the platform dependencies are implementation details. Unlike C and C++, one can write Rust without caring about how the underlying OS does ABI. However, Rust compiler and Rust std has a special relationship. `Box` can only be defined as part of Rust standard library that's compiled together with the Rust compiler itself. Its special relationship is kind of a blocker for -Zbuild-std and std-aware Cargo which prevents size-optimizing std for embedded systems. Without that magic (i.e. compiling the compiler itself, or worse bootstrapping it) you cannot independently create a `Box`.

I want this kind of library to contain as little as possible since it is convenient to define these kinds of relationships and rely on magic. Modern C++ has too much such magic. Rust is mostly on a correct path with std, core, alloc etc. separations. These kinds of boundaries make it possible to share as much code as possible with many libraries without finding hacky ways around std (which you have to do with C++).

This doesn't mean that I wouldn't appreciate more actual functional libraries maintained by Rust Foundation-funded people and be part of the project or even easily installed. However those libraries should be effortlessly exchangeable. I think current Cargo ecosystem achieves this mostly. However I would appreciate a more curated Cargo repository that contains only a limited set of really well maintained packages (similar to Maven's repos in Java world).


Why didn't those artifacts/relics survive into the modern era?

There's also something about the early 00s that made software developers go crazy in Java land that they decided to over engineer software for no real benefit and come up with overly complex architectures that don't really address the core issues but rather imagined issues that turn out to not be that important in practice.


They did survive, Qt, VCL, FireMonkey, POCO, but the dark energy of the Electron force it too mighty.

Also in the 2010's we had the rise of scripting languages, thus we have a whole generation that never used compiled languages and are now re-discovering systems programming via Rust, Zig and co.

A history lesson, before OOP, there was Yourdon Structured Method, and plenty of C enterprise architects jumped into it.

The GoF book used Smalltalk and C++, predating Java by a couple of years.

The Booch Method used C++, and predates Java for a decade.

Ah and there was that whole operating system written in an OOP C dialect, including its drivers, NeXTSTEP, which also survives to this day, with more consumer deployments than the Year of Desktop Linux.


My prediction is that this strategy will work out better for the companies than the article expects. Why? Because firms are actually often absolutely lousy at recognising which of their employees are high performers in the first place.

It is a tough job market. Minus the very top echelon of talent, switching jobs today is a lot more challenging than in the past. Management knows this and can shave a few pennies off the books by capitalizing on this moment.

it is management that is successfully convincing people that it is a tough job market - it is not - it is same as before. I am a contractor, have more work offered than I can take (same as before, maybe even slightly more). four friends/former colleagues got new jobs since the beginning of December, each had multiple offers and got decent to significant pay increases compared to previous positions.

If we’re doing anecdata I haven’t been able to get w-2 work in over a year and have been taking sporadic contract work.

I’m several hundred applications in and have hired a recruitment firm to help me find positions. Multiple companies where I referred by friends of mine declined to even phone screen and then those respective friends reported that the position was closed and they were given zero info as to what was happening.


14 months can’t find IT ops remote work

I think remote work peaked and is slowly declining now, for better or worse.

remote work is pretty much done, if you are looking for 100% remote work you'll have a very hard time finding it unless you get a job through a referral of a former colleague or something like that

The risk-reward of over paying employees who are risk adverse is why this works for most employers.

Yup, it's a bad feeling hearing that lower performers are getting payed more than you.

Maybe that's because most jobs are Graberesque bullshit jobs where "high performance" is meaningless.

Most jobs shouldn't exist at all. The value captured by "firms" should instead be captured by the state and distributed peanut butter style to everyone.


How exactly should the state "capture" value generated by these firms? Would it pay the employees more? What would the competitive advantage be? If the jobs are bullshit, why wouldn't some other firm capture the same value without those jobs, making even more profit with less overhead?

I also found his thesis compelling, but it’s built on bad social science: https://open.substack.com/pub/gilpignol/p/bullshit-jobs-was-...

It’s been true for some time. That moat has been getting shallower and shallower everywhere it isn’t inherited wealth. Not entirely shocking, large amounts of human history have been organised that way.

Ironically, if you actually know what you’re doing with an LLM, getting a separate process to check the quotations are accurate isn’t even that hard. Not 100% foolproof, because LLM, but way better than the current process of asking ChatGPT to write something for you and then never reading it before publication.


The wrinkle in this case is the author blocked AI bots from their site (doesn't seem to be a mere robots.txt exclusion from what I can tell), so if any such bot were trying to do this it may have not been able to read the page to verify, so instead made up the quotes.

This is what the author actually speculated may have occurred with Ars. Clearly something was lacking in the editorial process though that such things weren't human verified either way.


Doesn’t seem to be free in the UK


It’s partly that JMS favoured stage actors. Partly that he grabbed a number of his favourite actors from “Murder She Wrote”. Honestly brilliant, taking a couple of murderers of the week and giving them lead roles in a show.


There's more to this line of thought. The pilot movie isn't space opera so much as it is a murder mystery in space, and it's not the only episode like that. The security chief, Garibaldi, is a hard-bitten alcoholic detective from film noir (and there are plenty of film-noir-like visual elements: fans, shadows, run-down industrial sectors unimaginable in Star Trek), and he plays a much larger role solving crimes than do his counterparts in other science fiction shows. The writing style, a long arc that drops clues up front to pay off in revelations down the line, also leans heavily on mystery writing.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: