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

> Oxfmt got it, and then won.

This doesn't align with the data.

  - 650k npm downloads for oxfmt this week [0]
  - 4.3m npm downloads for biome this week [1]

  - 19.1k gh stars for oxfmt [2]
  - 23.7k gh stars for biome [3]
  - gap widening in favor of biome [4]

  [0] https://www.npmjs.com/package/oxfmt
  [1] https://www.npmjs.com/package/@biomejs/biome
  [2] https://github.com/oxc-project/oxc
  [3] https://github.com/biomejs/biome
  [4] https://www.star-history.com/#oxc-project/oxc&biomejs/biome&type=date&legend=top-left

There's an active proposal for rendering html in canvas to control styling. Text rendering and accessibility are main focuses for the proposal.

https://github.com/WICG/html-in-canvas


He's changed wild-type planarians to grow the heads of other species. It reverts after a few weeks, because the system has error-correcting mechanisms, but the DNA of these worms is unchanged.

He once compared tinkering with DNA as pulling out a soldering iron to fix a software bug.

In the case of morphology, DNA may not be the best level of abstraction. It's certainly possible, just as one can use chemistry for social problems, but for some problems, affecting cell-to-cell communication may be a more direct path.



> The only thing I see in the QC space, are QC stocks and funding paying for the employment of scientific experimentation

Then invest accordingly, and later reinvest your winnings in a different direction.


I've had to switch from SSE to WebSockets to navigate a corporate network (the entire SSE would have to close before the user received any of the response).

Then we ran into a network where WebSockets were blocked, so we switched to streaming http.

No trouble with streaming http using a standard content-type yet.


> Find me a “lights out” factory. They don’t exist.

"Inside China's 'dark factories' where robots run the production lines" https://www.youtube.com/watch?v=ftY-MH5mdbw

"China’s Dark Factories: So Automated, They Don't Need Lights" https://www.youtube.com/watch?v=MCBdcNA_FsI


Seriously? They show people on the floor within the first 30 seconds of the video. I guess it’s technically “lights out” if you make people work in the dark, but I meant, and the article implied, production without jobs.


Standard .env is unencrypted, while a dotenvx .env file has plaintext keys and encrypted values. Anyone with access to the repo would also need the DOTENVX_PRIVATE_KEY variable to decrypt the env file.

One key deployed to your hosts means adding new secrets doesn't take operations effort. Also, the process uses a public/private key pair, so adding a new variable doesn't expose existing variables.


I agree. From where I'm sitting, Seedream just bent the neck while Nano Banana Pro actually shortened the neck.


Your example template and the others here are almost jsx after it's compiled (handwritten below). This jsx discussion seems more about removing the compile step, which you can do with https://github.com/developit/htm

    import { createElement as m } from "your-jsx-compatible-library";
    
    var ListComponent = () => {
      let count = 0, selected = null;
      return {
        view: ({ attrs: { items }}) =>
          m("div", null,
            m("p", null, "Clicked: " + count + " times"),
            m("ul", null, items.map((item) =>
              m("li", {
                onclick: () => { count++; selected = item; },
                style: { cursor: "pointer", color: item === selected ? "blue" : "black" },
              }, item)
            )),
            selected && m("p", null, "Selected: " + selected)
          )
      };
    };


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

Search: