Spray-On Computers 155
Jack William Bell writes "Edinburgh University has funding for a program to create spray on computers. The basic idea is to make thousands of tiny 'silicon specks' or 'smart sand' (a step larger than smart dust) which work together via wireless networking to provide 'ubiquitous computing.' No, the idea itself isn't new. But it is interesting to see someone actually working on it. The initial application is a spray you apply to the chest of heart patients, creating a sensor array to report their health back to the hospital."
Does this mean (Score:5, Funny)
Already done (Score:1)
I already do that on my Handspring Visor.
joke (Score:4, Funny)
_
Might it work with the linux micro kernel? (Score:5, Funny)
boy I sure would not give out my root password.
Re:Might it work with the linux micro kernel? (Score:4, Funny)
Re:Might it work with the linux micro kernel? (Score:2, Funny)
Colon cancer.
Re:Might it work with the linux micro kernel? (Score:2)
Re:Might it work with the linux micro kernel? (Score:2)
Re:Might it work with the linux micro kernel? (Score:1)
Re:Might it work with the linux micro kernel? (Score:2)
Far too advanced (Score:5, Funny)
Re:Far too advanced (Score:1)
Spray??? (Score:1, Offtopic)
This could be dangerous (Score:5, Informative)
The idea of spraying silicon chips directly onto patients should be approached with caution.
bone's medicalkit (Score:5, Interesting)
On the other hand poisonous smart sand would make a fantastic weapon. Make it be able to hop or crawl by giving it little piezoelectric actuators and you could make an ordinary looking patch of sand suddenly come to life when activated by an enemy soldier's touch, swarming over his body and forcing itself under his gas mask seals and into his eyes, nose, ears and mouth. And then it could hide out in the body, waiting for the next victim.
lastly, a listening device the size of a grain of sand could be put into your bedroom and you'd never find it. (hands up who regularly even vaccuumes their room? I always forget. I don't even know how to spell the verb properly.) They say that the goal is to computerise objects by simply spraying smart sand onto it: What if somebody decided to (without your knowledge) computerise your pillow stuffing? Do you know how many Americans pray out their deepest darkest secrets on their knees by their bedsides each night?
If these walls could talk...
Re:bone's medicalkit (Score:1)
Re:bone's medicalkit (Score:1)
Re:bone's medicalkit (Score:3, Funny)
In America? This happens? Ooooh, you mean those two wierd guys, yeah I think they are all that're left.
Re:bone's medicalkit (Score:2)
I don't think that many. You can never be sure if your wife's asleep deep enough.
Re:bone's medicalkit (Score:2)
That technology is far.... far....... far off (that is, if it is even POSSIBLE).
Stop your ranting and raving and just listen to your own words.
Re:bone's medicalkit (Score:1)
First first he'll have to wave that glowey thing over himself [obits.com] .
Re:This could be dangerous (Score:5, Insightful)
I'd be less concerned for the patient, but rather for the medial personal who have to work with this stuff. Day at the beach level exposure is probally acceptable risk. Everyday exposure I'd agree with you 100%.
Re:This could be dangerous (Score:1)
Re:This could be dangerous (Score:1)
Even if the spray-on computer particles were made up of hazardous materials I suspect the risk to the patient would be mitigated by two factors: 1)they are "sand-sized" not "dust-sized" and therefore are not respirable, and 2)they will probably be expensive enough that the researchers won't be producing a lot of overspray. I just can't see the doctors
whee! (Score:4, Funny)
generated by a squadron of albino spray-on paint.
I doubt that this ubiquious stuff will ever work. (Score:4, Interesting)
Sometimes I wonder if this effect i planned by the IT industry. With quantum and DNA computing on the way, we will see in a few decades computers which are extremely powerful but also also extremely cheap. Obiviously the profit margins of the industry will drop below vaccuum energy levels. Therefore they have to find a way to make people more and more computers besides the incredible power of a single machine. The easiest way to do this is the make computers more powerful but less efficient.
I would even conjecture that this idea is behind the introduction of XML, web services and grid computing. Normal computer operations are overlayed with bloated protocols and documents to decrease to efficiency of modern servers and workstations forcing people into new upgrade cycles.
Ever wondered by why XML is not binary based ? Computers don't care if humans can read their data. Or why bloated XML is used for web services where simple binary based RPC would do the same job ? Or ever the perversion of putting it on top of HTTP, introducing new security holes by making trditional firewalls useless ?
Answers to your questions (Score:4, Interesting)
Ever wondered by why XML is not binary based ? Computers don't care if humans can read their data.
Oh, but humans do. If you're developing such systems it's many times easier to debug human-readable text instead of binary stuff. You can also see what's going on more easily. See below.
Or why bloated XML is used for web services where simple binary based RPC would do the same job ?
Because being plain text allows for easier access, modification and searching by humans AND computers. No more locking in to proprietary binary formats. Would you like each manufacturer to have their own binary RPC protocol, all of them being incompatible with all others?
Or ever the perversion of putting it on top of HTTP, introducing new security holes by making trditional firewalls useless ?
It needs to have something as bearer, so why not use something tried and tested. What would you have suggested? A completely new protocol? What a waste of time and resources. Besides, a firewall alone does not quarantee your safety. It's not like if you allow web traffic, suddenly everyone and their dog is able to r00t your box. You allow port 80 but you disable RPC stuff in the server and that's it.
Have I been trolled?
Re:Answers to your questions (Score:1)
Re:I doubt that this ubiquious stuff will ever wor (Score:5, Interesting)
Also, you are correct that it is not feasable for a network to achieve linear time speed-up in the number of processors. Theta(n/log(n)) would be great, though, and sufficient for most applications.
Re:I doubt that this ubiquious stuff will ever wor (Score:2)
Yes, the novel is not that realistic and I suspect that Neal Stephenson WUI (Writing Under Influence) :-)
DNA involvement amount hard limit (Score:1)
Re:I doubt that this ubiquious stuff will ever wor (Score:2, Informative)
Local communications, seeking global behaviour (biological-like way) seems to be a better way.
Solved. (Score:2)
This is an existing and solved problem with application intercommunication. Everything
Re:I doubt that this ubiquious stuff will ever wor (Score:5, Informative)
XML's textual nature keeps XML documents "open". I did a Google search a while ago when trying to determine whether there was a standard scheme for putting binary data into XML, and came across somebody discussing parse times for XML. He'd written a program which parsed XML and saved the parsed version in a binary format, and found that it was actually faster to just parse the XML again than to reconstruct the information from his binary format.
On one hand, sure, perhaps his coding wasn't up to the level of those who'd written the XML parser, which might account for the slower loading.
On the other hand, there's a good chance that someone writing an XML parser intended for general inclusion within other programs is paying a lot more attention to doing things right (in terms of speed, security, etc.) than the person who writes a quick data-parsing routine.
Computers don't care if humans can read their data, sure. But, humans do. Parsing a simple, well-defined text format isn't computationally expensive, and makes the job easier for those who might have cause to view the data.
Finally, XML tags can and do carry important semantic information. It's much easier to write a program to parse an arbitrary unknown XML schema (say, GnuCash's file format) than to have to reverse-engineer an arbitrary unknown binary format (yes, I've done both). This is important because it helps to ensure that the data isn't quite as bound to the program -- parsing and conversion between schemas is generally much easier than, say, translating a WordPerfect document to MS Word format.
Hans Reiser has even decided to use text in his transaction-control syscalls:
Text parsing isn't as bad as people like to make it, as long as you aren't parsing a horribly ugly specification (like, say, C++ code).
Besides, how is carrying something on top of HTTP going to introduce new security holes? I haven't been able to decide where you are implying the issues might arise.
Re:I doubt that this ubiquious stuff will ever wor (Score:2)
Paintball? (Score:5, Funny)
Okay, I'll just stick with Unreal Tournament for now. Proper exercise can be a unimplemented goal, can't it...?
One question. (Score:2, Insightful)
depends if you're an early adopter (Score:2)
eventually, the dime bag would be worth more if you filled it with dimes.
that's the way all legal technologies go...
(for instance: me sitting on my back porch, typing on a $200 second hand laptop with a $30 wi-fi card)
oblig. j&sb (Score:1)
put that spray in your hand
if that money doesn't show
then you owe me owe me oh,
my jungle love
Does anyone else not get it? (Score:5, Insightful)
I don't know about you, but I don't really see the point of using an aerosol can to make computers. Yeah, I get the medical thing (and I think it's a good idea) but why do you have to spray it on? Why not simply apply it with some tweezers and glue? Is it funner to shake up a can, say "Close your eyes!" and press down on the little button?
With this you could take a pen and spray it and it becomes an interface in its own right.
Umm... okay... So everyone has a can of "Kwik-n-Ez Spray-on computers" sitting on their desk and then they say, "I want to interface with my computer!" shake up the can and spray their pen. "There! I typed a command, now I'd better throw the pen out and when I need to interface again I'll shake it up and spray!"
1.3 million pound grant eh?
do they care about security? (Score:5, Interesting)
Re:do they care about security? (Score:3, Insightful)
do you really want your heart status to be "broadcast out"?
I bet shop owners would pay a lot for ability to read this. They could monitor your heart rate as you walk around the shop and notice which products make jump it up.
Combine this with RFIDs and you've got very advanced system to monitor customer,s habits.
Re:do they care about security? (Score:2)
Re:do they care about security? (Score:1)
They only forgot one thing - power (Score:5, Interesting)
I am afraid this is just another grant hunt. There is no battery that would be suitable for this project.
Re:They only forgot one thing - power (Score:2)
If they can power pocket calculators with indoor light, maybe some dispersable form could be engineered...
Re:They only forgot one thing - power (Score:4, Informative)
With these spray-on computers, you could easily add a small circuitry that could provide power just from stray radio waves. IIRC you would just need a magnetic coil, a diode and a transistor. That would provide plenty of power for the scale we're talking here.
Re:They only forgot one thing - power (Score:4, Informative)
There is only one working solution: to etch the antenna on the surface of the chip, and then to point some radar transmitter at it. However it will cook you within seconds :-)
As I said, those guys need to come up with a battery before they can think of anything else. This is especially important if they want to use wireless, since it involves parting with the energy.
Re:They only forgot one thing - power (Score:1)
Re:They only forgot one thing - power (Score:1)
Re:They only forgot one thing - power (Score:2)
This is the reason why workers can climb on live 500 kV power lines and walk on the wires - there is no "other" contact to kill them (except their own capacitance, which is low.)
Re:They only forgot one thing - power (Score:1)
ok, just draw chemical energy (Score:2)
Re:They only forgot one thing - power (Score:1)
I am afraid this is just another grant hunt. There is no battery that would be suitable for this project.
And that is why we have grants. So people can build a bettery that is suitable.
Re:They only forgot one thing - power (Score:5, Interesting)
Then again, the RFID tags in the supermarket don't even need any direct power source.
Cheers.
Unexpected bonus: (Score:3, Funny)
Re:Unexpected bonus: (Score:3, Funny)
-- I was trying for a moderation of "grim", but nobody picked it.
Re:They only forgot one thing - power (Score:1)
Secondly; these things use very very little power. Check the spec http://www.cs.berkeley.edu/~jhill/spec/index.htm
Someone has to say it... (Score:3, Funny)
Re:Someone has to say it... (Score:1)
Re:Someone has to say it... (Score:2)
How much do they know? (Score:2, Interesting)
Finally... (Score:2, Funny)
Isn't this a too-big step? (Score:1)
On another note, they can use that tech the japanese made declarations about a week ago about using glucose to generate power for these things...
Re:Isn't this a too-big step? (Score:1)
Obviously the reason for stating the grant proposal this way is that it's very hard to get a big grant for a supercluster communicating with bluetooth
Geek pr0n (Score:1)
Re:Incorrect language. (Score:1, Informative)
Obligatory Trek Post (Score:2)
Prey (Score:2, Interesting)
If you spray a flash mob with this stuff... (Score:3, Funny)
Smart sand! (Score:1)
Spray-on 'Nanocomputers' Are Coming (Score:2)
Public service announcement (Score:2)
Imagine the applications... (Score:3, Interesting)
Re:Imagine the applications... (Score:1)
Obligatory rain on parade (Score:2)
Someone has been on too much whisky. That much money wouldn't keep a serious nanotechnology project in whores and cocaine for the marketing department.
Re:Obligatory rain on parade (Score:4, Interesting)
[steps back, looks at post]
Wow, that was a bit of a rant, wasn't it? I didn't realize I had that much venom stored up on this subject.
Well, I'll reply seriously. (Score:2)
Power (Score:2, Interesting)
Let the toner wars begin! (N.Stevenson reference)
A Dream (Score:3, Interesting)
I had a dream once. In this dream, you could get a PDA applied to the back of your hand. It was sort of applied on the surface. It would wear off after about a month.
Just think, PDA functionality for everyone, and you can't lose it.
Everyone wanted one. But you have to pay by the month, because the PDA would wear off. For people who couldn't afford the PDA, there was an alternative. Corporate sponsorship. You could get a free low-end PDA on your hand if you also agreed to let them apply a higher end color animated advertising banner to your forehead.
Especially among young people, which particular animated advertising banner you had on your forehead would become a status symbol. After all, only so many Brand-X sponsorships were available in a certian period of time. So it would have more sex appeal to have, say, an ad for a leading soft drink, than to have, say, an ad for an auto tire repair shop.
Perfume Ladies at the mall again.. (Score:1, Interesting)
Another little thought... (Score:2, Interesting)
If we can find a power source for each component, what's the likelihood of designing spray-on computers that can ultimately reform themselves into a larger, more workable design?
One previous poster made mention the possibility of making them move (I forget the method they suggested), and they are going to have communicative abilities, so it seems reasonable to assume that with a schematic in a main computer somewhere, and a capable enough transmitter, the "sp
Re:Another little thought... (Score:1)
I wonder if it's flammable (Score:1)
holy shit! (Score:2)
another early morning mistake (Score:1)
Great. Something else to mistake as a can of deodorant early in the morning.
Future history repeats itself (Score:1)
State of sensor networks (Score:2, Informative)
Its interessting to reflect a bit on current technology when discussing "science fiction" like this.
Reseachers at Berkely have developed a single chip sensor node called the spec [berkeley.edu] . Although this node lacks sensors, it clearly demonstrates the potential of the approach, even using existing technology and implements the basic platform for a sensor node in 5 mm (thats 2.379E-5 cubic furlongs for the metricly challenged). This node have very low power requirements and are capable of communication of more than
Priorities: Electrons Before Silicon (Score:1)
Pardon my belligerence, but I just spent some time looking for electric generators. Electricity. Remember that? It's what makes your goddamn computer go in the first place. And for the life of me, I can't find a generator (especially one fueled by natural gas or propane) to save my life for less than 400 bucks.
Priorities! We are lac
Re:Priorities: Electrons Before Silicon (Score:2)
You must be a software guy/gal.
Try reading this faq first [survivalistbooks.com]
And then try pricing 1 kw electric motors. I think you might be surprised at how much they cost (new). If you are really interested in making a generator for under $400, try using a lawnmotor engine with a used pump AC motor. I'd give more advice, but I'm in a hurry. Best advice, get a friend to help you who is an electrician!
Re:Priorities: Electrons Before Silicon (Score:2)
Anything electronic should be the benefit of our modern age. My particular quote "gee, electronics
The West has been making electric motors for over 100 years. In fact, this page [peerlesselectric.com] shows a company that started making
Used vs. New Prices (Score:2)
You are correct in that electric generators are a "mature" technology. I've always been of the opinion that there is no such thing as a "mature" technology, only a stagnant one, but until I come up with a ch
what tha? (Score:2)
Cleanliness is next to godliness (Score:2)
Re:Slashdotted, and not one comment! (Score:1, Informative)
2. the "repost" has the following: "micael's retardnesses "
Re:Slashdotted, and not one comment! (Score:1, Informative)
Just in case you missed it, here's a little line toward the end:
"The money will allow the scientists to see the technology working to cre ***micael's retardnesses*** within four years."
The stars were added for emphasis.