HN user

bibabaloo

545 karma
Posts3
Comments124
View on HN

doesn't really work with a black box code generator.

Sure it does, just blame the vendor.

"Nobody ever got fired for picking IBM/OpenAI/whatever AI incumbent"

Having played both there's a lot of overlap in the social side. You can find games with randoms or join social match plays with little friction. From what I've heard, it's not that easy with other racket sports like tennis.

I agree the skill gap is wider in padel, which can be a good thing or a bad thing, depending on who you want to play with.

Asking that question just signals that you don't obey social cues.

Most hiring managers won't like this, as they don't want to be responsible for hiring someone volatile like this.

I think the only place you could get away with this is if you're interviewing with a C-Suite member who has nobody to answer to.

Yes I don't understand why Claude code needs to be a terminal app.

It doesn't compose with any other command line program and the terminal interface is limiting.

I'm surprised nobody has yet made a coding assistant that runs in the browser or as a standalone app. At this point it doesn't really need to integrate with my text editor or IDE.

I think you’re being a little pedantic here. Even if we assume "senior" is an arbitrary title, the article is still a useful description for how to be effective as an experienced engineer. The title is the least interesting part of it.

Magic Lantern Is Back 11 months ago

Uh, sure, maybe in a professional setting where you’re getting paid. But this was unpaid volunteer work. If, as a community, we start enforcing professional grade standards on people who are just contributing their free time to give us neat toys and tools, I kinda worry it makes the whole thing the whole thing less fun or sustainable. And if that happens, we probably stop getting these free toys altogether.

I just think it's ironic that this advice is useless to junior engineers but unneeded by senior engineers.

That's a good way of putting it. The advice essentially boils down to "do the right thing, don't do the wrong thing". Which is good (if common sense) advice, but doesn't practically really help with making decisions.

Vibechart 12 months ago

But how could have they used ChatGPT-5 if they were working on the blog post announcing it?

I feel, generally, with an aging population + rising unemployment due to AI, we'll reach a crunch point that puts governments under immense pressure to increase taxes (probably on megacorps & the wealthy) more in order to fund welfare. The most optimistic, utopian, solution would be UBI and an artisan economy, but I think we all know that capitalism isn't kind enough for that to play out so we'll probably end up with something much more dystopian.

You don't _have_ to, I think the parent poster is just giving an example of how this can be used.

The "Zero Knowledge" part is that you can tell me "for this particular program code, I know an input that gives an output of 'foobar'" and I can be convinced that you're telling me the truth without seeing what that input actually is.

I feel this so much. I feel like most of my job is playing politics to make sure people are happy and let them feel like they're adding value. Rather than shipping things to users to improve the product. It's honestly so depressing. Strongly considering going back to work at a small startup, to avoid having to work with these layers of middlemen that really add little to no value.

I know developers like to put their head in sand and pretend to the contrary, but credentials do matter. Things like security or cloud certifications and security clearances

Interesting, I've interviewed with and for a number of tech companies and it's never come up. What companies are you seeing who are interested in certs?

Looking online I see reports that FTX owes its creditors $3B. If Anthropic has 6.5x then the initial $500 million is now worth $3.25B.

Is it actually possible that all creditors will get their money back? Pretty crazy if so.

Errors are composable so this isn't such a problem in practice. Most of the prod code I wrote would do something like this

    use thiserror::Error;

    #[derive(Error, Debug)]
    enum Error {
        #[error("Could not open given decomp file: {0}")]
        FileOpen(#[from] std:io::Error),
        #[error("Compressed read error: {0}")]
        CompressedRead(#[from] gz::Error)
    }

    fn decomp(filename: &Path) -> Result<Vec<u8>, Error> {
        let fd = File::open(filename)?;  // File is automatically closed by its destructor.
        let zd = GzDecoder::new(fd);   // flate2::read::GzDecoder::new does not return an error.
        let mut data = Vec::new();     // Rust makes the caller allocate the buffer for reads.
        zd.read_to_end(&mut data)?;
        Ok(data)
    }

No different than writing software to a releasable stage.

It's extremely different, imo.

Releasing buggy software to prod: no biggy, hotfixed in a couple of hours

Releasing buggy hardware: recalls, mass customer dissastifaction.