HN user

bwhitty

94 karma
Posts3
Comments22
View on HN

It’s a massive supply chain, so, yes, both. But also a hundred other companies. TSMC and other foundries bring together many technologies from many companies (and no doubt a lot of their own) to ship a full foundry solution (design-technology-cooptimization, masks, lithography, packaging, etc).

The 3D Foveros packaging technology is critical as it allows some path lengths to be much shorter than if you had to traverse that same path but only in the horizontal 2D plane.

Very excited to see how this plays out in practice.

6800U is awesome from what I’ve seen — better efficiency by far, and legit integrated graphics better than Xe — but it is vanishingly rare, even months after announcement.

The scale Intel has in manufacturing mobile CPUs is still unmatched.

These are poor communities. I know you realize how much lawyers cost.

Could a firm step in in hopes of getting a big pay day going up against the huge titans of the Chemical industry? Probably. Just hasn't happened yet, I'd say.

Is neoprene really the only way to make wet suits? I doubt it.

Regulate. A dirty word on HN, surely. Regulate the production of and, possibly, the import of neoprene, etc. Force industries to innovate - I know that's not a dirty word here - in order to sell these goods to Americans. Maybe then America becomes the sole producer of environmentally-friendly wet-suits to the whole of the word.

I think this is the only solution since your proposed solution of just "put the plants somewhere else" is, as you've pointed out, untenable.

JSC loves ES6 9 years ago

"Registration requires an Apple developer license."

Hmm, not the open web I'm familiar with.

Firefox 51.0 9 years ago

Very cool demo. Worked fine on my 2015 rMBP even if Ultra settings ran at about 10 FPS.

The web really has come a long, long ways.

Is there any talk within Facebook on amending this clause or moving React to a standard license? I believe it's stopping a lot of large companies (whom the patent clause could actually affect) from using React, and all other like-licensed Facebook software.

Reactive GraphQL 10 years ago

Meteor is about the UX.

The ease of getting up and running, the ease of tools, and the ease of deployment. On no React stack can you (and in the future this will be more simple) run

  meteor create my-react-project
  npm init && npm install react
And start coding JSX, ES2015/2016 immediately. There is a non-trivial amount of boilerplate and configuration you need to do to get this working my hand, and while it can provide a greater level of control, it undoubtedly adds to the overall weight of code you need to maintain.

Then hypothetically after some time of development, do

  meteor add-platform ios
  meteor add-platform android
  meteor add-platform desktop (this is theoretical currently, but there exist packages which do exactly this)
And have Cordova iOS and Android builds, and an Electron desktop app. Then in a few weeks, do
  meteor deploy
and have a fully monitored application up and running on AWS with Meteor's monitoring and deployment tools. Meteor's play is in the ease of these tools. It is absolutely non-trivial the amount of glue and knowledge you need to create, understand, and maintain the current (and ever-rapidly expanding) Javascript toolchain.

This announcement touches on one of their most thorny issues of being tightly coupled to Mongo. Adding this abstraction layer allowing any UI and any data source is Meteor's ticket to the masses.

[dead] 11 years ago

This could be interesting for using Node on embedded devices. V8 is pretty memory hungry right now, and this could provide a nice way to sacrifice some speed for memory space which would be in short supply on an embedded device.