Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment There was a Google Tech Talk... (Score 2) 203

...about a trip to "mars". http://www.youtube.com/watch?v=aZo36huahoI Summary:

"Presented by David D. Levine.

In January 2010 I spent two weeks at the Mars Desert Research Station, a simulated Mars base in the Utah desert. Although the Martian conditions were simulated, the science was real, as were the isolation, hostile environment, and problems faced by the six-person crew. Although my official title was Crew Journalist, I soon found myself repairing space suits, helping to keep the habitat running, and having interplanetary adventures I'd never before imagined. My talk on the experience is profusely illustrated with photographs and has gotten rave reviews. Please see http://bentopress.com/mars/ for more information."

Comment Re:Reflections (Score 1) 960

That is true. Software developers don't know anything about maintaining a network and are probably a pain in the ass to support. But they do have special needs in that they need to be able to use the web freely, to try out software and keep their own up to date. They need to be able to have a nightly version of a browser updated and install the latest version of Node.js. When firewalls and policies get in the way the company is shooting itself in the foot.

Comment Re:What about iOS? (Score 2) 519

It is part of the core system. There are 3 ways you can use Mobile Safari: opening it, using an installed web app and through WebViews inside other apps. All of them are WebKit and to a certain level Mobile Safari. And Apple explicitly forbids the publication of browsers that don't use WebKit or that use another JavaScript runtime. That's why there's even talk about Firefox for jailbroken iOS devices.

Comment Re:Speaking of missing the point... (Score 2) 402

I think the ones that missed the point were the developers and reporters. The whole point of an AI helper is that it behaves as if it were alive, and there is absolutely no way you can accomplish that in 8 hours of work. It's the details that matter for the life-like experience, not the general idea.

Comment Re:can you patent a hypothetical material? (Score 2) 85

It will probably be patentable, and even the algorithm could be patented, but that would hardly be a useful patent. See what the creators of Graphene said about it

We considered patenting; we prepared a patent and it was nearly filed. Then I had an interaction with a big, multinational electronics company. I approached a guy at a conference and said, "We've got this patent coming up, would you be interested in sponsoring it over the years?" It's quite expensive to keep a patent alive for 20 years. The guy told me, "We are looking at graphene, and it might have a future in the long term. If after ten years we find it's really as good as it promises, we will put a hundred patent lawyers on it to write a hundred patents a day, and you will spend the rest of your life, and the gross domestic product of your little island, suing us." That's a direct quote.

http://www.techdirt.com/articles/20101008/09595411336/why-this-year-s-physics-nobel-winner-never-patented-graphene.shtml

Comment Performance tips (Score 2) 39

Some performance tips make sense. CSS transforms basically paint an image into GPU memory, so this makes a lot of sense:

Keep layers small
– Don’t inadvertently create gigantic layers
– Memory consumption = width x height x 4 (bit depth)

However, other tips don't make as much sense:

Use closures sparingly & only where necessary

Closures are in the heart of JavaScript. You can't avoid them even if you want to. Instead, learn to write destruction lifecycles for your objects in which you expressively remove references that may cause leaks.

Slashdot Top Deals

"The four building blocks of the universe are fire, water, gravel and vinyl." -- Dave Barry

Working...