<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>A mind exercise experiment. One idea per day.</description><title>nomel.org</title><generator>Tumblr (3.0; @nomel)</generator><link>http://nomel.org/</link><item><title>Idea: If I were to make a virtual globe</title><description>&lt;p&gt;Earth globe:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        ideally, Full google earth integration&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        realtime weather display with forecasts on touch&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        “pinch” zoom, with display centered at touch point&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        flick rotate&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;                tap drag -&gt; rotate with friction&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;                tap tap drag -&gt; continuous rotate&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        begin rotate after timeout&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        realtime/selected night/day display&lt;/p&gt;
&lt;p&gt;rotating information banner&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        rotates, flick support&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        stock ticker&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        forecast&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        date/time&lt;/p&gt;
&lt;p&gt;rotating notification banner&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        alerts (news, voicemail, email triggers, etc)&lt;/p&gt;
&lt;p&gt;bluetooth phone integration&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        caller id display&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        from iphone/android contacts sync&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        speaker phone&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        contact selector and dialer&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        music control&lt;/p&gt;
&lt;p&gt;touch screen&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;        probably ftir, meaning transparent dome, projection screen separate (how do you get it in there, heat form?)&lt;/p&gt;</description><link>http://nomel.org/post/15587260929</link><guid>http://nomel.org/post/15587260929</guid><pubDate>Mon, 09 Jan 2012 18:11:00 -0500</pubDate></item><item><title>Python Tip: Properties with a parameter</title><description>&lt;script src="http://pastebin.com/embed_js.php?i=FSrq1AF0"&gt;&lt;/script&gt;&lt;p&gt;&lt;iframe src="http://pastebin.com/embed_iframe.php?i=FSrq1AF0"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;This is probably”unpython” and whatever, but I do a lot of automation, and being able to access properties based on some index (like a port number) is pretty important. This is especially true since getting a property isn’t reading a variable, it’s actually reading the value from some piece of equipment.&lt;/p&gt;
&lt;p&gt;And, in case pastebin dissapears:&lt;/p&gt;
&lt;p&gt;# This was created based on a response from Alex Martelli at:&lt;br/&gt;# &lt;a href="http://bytes.com/topic/python/answers/35919-property-parameter#post133951"&gt;http://bytes.com/topic/python/answers/35919-property-parameter#post133951&lt;/a&gt;&lt;br/&gt;# There’s probably a way to do this with an object (without the .property)&lt;br/&gt;&lt;br/&gt;class ParameterProperty(object):&lt;br/&gt;    # Allows using a property with a parameter, such as&lt;br/&gt;    #   portSpeed[3] = 1000&lt;br/&gt;    #   print portSpeed[3]&lt;br/&gt;    &lt;br/&gt;    def __init__(self,getparam,setparam):&lt;br/&gt;        # Initialize by specifying the getter and setter functions.&lt;br/&gt;        self.getparam = getparam&lt;br/&gt;        self.setparam = setparam&lt;br/&gt;        &lt;br/&gt;    def getPropertyAccessor(self):&lt;br/&gt;        # create a class with get and set&lt;br/&gt;        &lt;br/&gt;        class PropertyArrayAccessor: pass           # class to return&lt;br/&gt;        &lt;br/&gt;        def getter(__, parameter):                  # create getter function&lt;br/&gt;            return self.getparam(parameter)         # return the value from the function specified during init&lt;br/&gt;            &lt;br/&gt;        def setter(__, parameter, value):           # create setter function&lt;br/&gt;            self.setparam(parameter,value)          # call the function specified during init&lt;br/&gt;&lt;br/&gt;        # property will use these get and set functions&lt;br/&gt;        PropertyArrayAccessor.__getitem__ = getter&lt;br/&gt;        PropertyArrayAccessor.__setitem__ = setter&lt;br/&gt;            &lt;br/&gt;        return PropertyArrayAccessor()                # return the class object&lt;br/&gt;    &lt;br/&gt;    property  &lt;/p&gt;</description><link>http://nomel.org/post/11962145214</link><guid>http://nomel.org/post/11962145214</guid><pubDate>Wed, 26 Oct 2011 17:18:00 -0400</pubDate><category>python</category><category>properties</category><category>parameter</category><category>properties with parameter</category><category>programming</category><category>tip</category></item><item><title>Silly Idea: Clockless Watch</title><description>&lt;p&gt;Using a metal brush, a low pass filter, and a schmit trigger as digital clock source for the calculation circuit, you could make a horribly inefficient electronic watch that used the position of the sun (by a low res ccd or even photodiodes) and a compass to calculate the time. Can’t use a crystal or rc, because that would be cheating! Might as well just have it keep the time!&lt;/p&gt;</description><link>http://nomel.org/post/11942031771</link><guid>http://nomel.org/post/11942031771</guid><pubDate>Wed, 26 Oct 2011 02:35:51 -0400</pubDate></item><item><title>Idea: Cracked wafers?</title><description>&lt;p&gt;Relating to the bandwidth segregated data transmission…&lt;/p&gt;
&lt;p&gt;I picture chips &lt;/p&gt;
&lt;ol&gt;&lt;li&gt;|=======| - photoelectric layer&lt;/li&gt;
&lt;li&gt;|=======| - charge storage&lt;/li&gt;
&lt;li&gt;|=======| - adjacent storage distribution&lt;/li&gt;
&lt;li&gt;|=======| - logic&lt;/li&gt;
&lt;li&gt;|=======| - diode and transistor junctions (photo).&lt;/li&gt;
&lt;/ol&gt;&lt;ol&gt;&lt;li&gt;photoelectric layer to supply power, probably wouldn’t have to be too efficient&lt;/li&gt;
&lt;li&gt;store and filter the power&lt;/li&gt;
&lt;li&gt;some sort of low voltage drop rectifier to allow adjacent, power hungry, cells to continue being power hungry&lt;/li&gt;
&lt;li&gt;logic - maybe a mix of fixed functional blocks and programmable logic&lt;/li&gt;
&lt;li&gt;diode and transistor junctions to act as silicon pn junction leds and photodiodes &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;When the wafer cracks, the diode and transistor junctions would act as data paths between the cracks. Since the power is supplied locally, each section of the crack would only need light, some surviving logic blocks to handle addressing each cracked section for handling communication (select best diode/transistor junctions, handle programming, handle data network addressing of the cracked piece, dead space identification, etc).&lt;/p&gt;
&lt;p&gt;Maybe the bandwidth segregated communication could help quickly program the devices in the different tiers of bandwidth capability. Some bandwidth related identification could be used as well. Send some pseudo-random signal, take incremental time averages and apply a threshold to end up with a code that would help identify the sections parameters (bandwidth capabilities, addressing blocks, task assignment, etc).&lt;/p&gt;
&lt;p&gt;For the programmable logic, I suppose it would be something like an &lt;a title="FPGA" target="_blank" href="http://en.wikipedia.org/wiki/Field-programmable_gate_array"&gt;FPGA&lt;/a&gt;, with functional blocks that acted as programmable logic, or more analog like a neural network.&lt;/p&gt;
&lt;p&gt;I picture window sized pieces, with all of their flaws and cracks, computing away, covering the face of every building.&lt;/p&gt;
&lt;p&gt;In the dream that I saw these buildings in, they were powering some AI that was governing the world…but I suppose society would probably use it for some futuristic version of Angry Birds. :)&lt;/p&gt;</description><link>http://nomel.org/post/11308373614</link><guid>http://nomel.org/post/11308373614</guid><pubDate>Tue, 11 Oct 2011 01:35:00 -0400</pubDate></item><item><title>Scrambled for distribution?</title><description>&lt;p&gt;Is it possible to scramble data so that the signal can be broken into channels based on an average over time? Usually in communication, the average is kept to zero using a known and syncronized psuedo-random sequence (a scrambler). Could the sequence be modified (by observation and modification or sub-channel) to allow distribution of data based on bandwidth capability? This would allow a bus with fast and bandwidth limited devices to receive and automatically segregate data based on bandwidth, on a shared line. This could also work for chained, bandwidth limiting, series connections, like analog repeaters.&lt;/p&gt;
&lt;p&gt;Maybe for transmission, slower devices could disrupt the signal for faster devices, causing the faster devices to modify the sequence to correct.&lt;/p&gt;
&lt;p&gt;The goal wouldn’t be signal speed, but signal distribution based on bandwidth.&lt;/p&gt;</description><link>http://nomel.org/post/11308281967</link><guid>http://nomel.org/post/11308281967</guid><pubDate>Tue, 11 Oct 2011 01:31:07 -0400</pubDate></item><item><title>Idea: Wireless turn signal</title><description>&lt;p&gt;Fancy mirror turn signals LED strip activated by wireless transmitter attached and powered to the actual turn signal light. The LED strip would be powered with 12v accessories.&lt;/p&gt;</description><link>http://nomel.org/post/5921501543</link><guid>http://nomel.org/post/5921501543</guid><pubDate>Sat, 28 May 2011 01:10:32 -0400</pubDate></item><item><title>Idea: Tire wear measurement</title><description>&lt;p&gt;A low power, inductor powered, cheap microcontroller embedded in a tire could be used to detect and warn of tire wear. The microcontroller could measure the change in resistance of thin wire molded into the tires surface. When these filaments broke, from being exposed to the roads surface, a tire wear indication could be sent to the driver. When deeper filaments break, a warning indicator could be displayed.&lt;/p&gt;
&lt;p&gt;The filaments could be arranged many ways:&lt;br/&gt;  Resistance measurement of bundles,&lt;br/&gt;  individual strands at multple depths,&lt;br/&gt;  bundles at multiple depths.&lt;/p&gt;
&lt;p&gt;In all cases, resistance or open/closed type measurements could be made. As filaments broke in the bundles, the resistance would increase. The depth, spread, and number of the bundles or individual filaments could be chosen to give smoother or coarse steps in depth detection.&lt;/p&gt;
&lt;p&gt;I assume this was patented a looong time ago.&lt;/p&gt;</description><link>http://nomel.org/post/5921364276</link><guid>http://nomel.org/post/5921364276</guid><pubDate>Sat, 28 May 2011 01:04:11 -0400</pubDate></item><item><title>Idea: Automated map generation for driving video games using Google Maps</title><description>&lt;p&gt;Pretty obvious idea. Using the aerial and street view of Google Maps, and some simple texture/feature recognition and “design rules”, maps for driving video games could be made. Actual road data would be pretty reliable. Stop lights and signs could either be found using street view at each intersection, or randomly assigned since players will  fly through them anyways. Buildings, trees, and general terrain could be extracted from the satellite views. Accuracy isn’t all that important, but some fairly realistic level structures could be made.&lt;/p&gt;</description><link>http://nomel.org/post/5920962766</link><guid>http://nomel.org/post/5920962766</guid><pubDate>Sat, 28 May 2011 00:46:00 -0400</pubDate></item><item><title>Useless Idea: Diffraction pattern on linear CCD for position sensing?</title><description>&lt;p&gt;&lt;img align="top" src="http://sites.google.com/a/nomel.org/pics/Home/ccd_position.png" width="250" height="132"/&gt;&lt;/p&gt;
&lt;p&gt;For a cheap, high precision position sensor, could use a linear ccd from a scanner, project a laser through a diffraction grating (or pinhole) with a known diffraction pattern, then do some simple curve fitting/energy minimization of the visible pattern to find the position. Curve fitting rather than point tracking would be used to get sub pixel resolution. Since the light is directly from the laser (bright), short “shutter” times could be used. By knowing a 2d diffraction pattern, x and y position could be calculated (and rotation if the pattern isn’t polar).&lt;/p&gt;
&lt;p&gt;The higher precision would come from the averaging of the noise across the sensor width. Using a wire shadow, slit, or “knife edge”, you can only use the intensity information from the pixels at the edge(s) of the feature casting the shadow. Although, with the diffraction pattern, there would be a slight reduction of usable area caused by any fringes out of the dynamic range of the sensor. This could be helped by using a pattern with a limited intensity range (translate sensor so main lobe isn’t visible).&lt;/p&gt;
&lt;p&gt;Something like this might provide an extended range compared to a capacitive or mirrored method, and might be more robust! The pin hole/grating movement could be pretty extreme compared to the active sensing area and not cause damage, like a capacitive sensor. &lt;/p&gt;
&lt;p&gt;Expense would be in the microcontroller. DSP type features might be needed to process complicated patterns at reasonable speeds.&lt;/p&gt;
&lt;p&gt;Of course, using a more standard system with a time average would most likey be just as good, but much more boring.&lt;/p&gt;</description><link>http://nomel.org/post/4820400489</link><guid>http://nomel.org/post/4820400489</guid><pubDate>Thu, 21 Apr 2011 20:16:00 -0400</pubDate></item><item><title>Idea: Cell phone traffic lights</title><description>&lt;p&gt;Sniff cell phone control channel data to find ESN. Calculate CRC32 or something similar for privacy, track movement by watching where the number pops up. Do this to all “visible” cellphones to create traffic flow pattern in town for light timing.&lt;/p&gt;
&lt;p&gt;???&lt;/p&gt;
&lt;p&gt;Edit: I suppose the cell companies could probably sell the data.&lt;/p&gt;</description><link>http://nomel.org/post/4819943629</link><guid>http://nomel.org/post/4819943629</guid><pubDate>Thu, 21 Apr 2011 19:59:00 -0400</pubDate></item><item><title>Idea: Baby temperature monitor</title><description>&lt;p&gt;Just a simple temperature monitor that you put in your babies blanket that starts beeping if the temperature gets too high or low.&lt;/p&gt;</description><link>http://nomel.org/post/3882958590</link><guid>http://nomel.org/post/3882958590</guid><pubDate>Tue, 15 Mar 2011 16:46:37 -0400</pubDate></item><item><title>Idea: Cloud redirect service</title><description>&lt;p&gt;To post a link to an image or a document, the link, rather than  pointing directly to the document resource, would point to the redirect  service. This would check to see if the cloud resource was available  and, if not, change the redirect to an available/redundant  resource….maybe even hosted by a different provider. It could even  perform load balancing by randomly choosing the redundant sources or  always choosing those with the lowest response time.&lt;/p&gt;

&lt;p&gt;Since cloud resources will always go down, might as well have a live backup.&lt;/p&gt;</description><link>http://nomel.org/post/1583834512</link><guid>http://nomel.org/post/1583834512</guid><pubDate>Mon, 15 Nov 2010 16:24:43 -0500</pubDate></item><item><title>Speckle interferemotry for blood glucose level detection</title><description>&lt;p&gt;Maybe use speckle interferometry to measure blood glucose level by looking at the index of refraction of the aqueous humor of the eye (the clear bulge part in front of the iris).&lt;/p&gt;
&lt;p&gt;Using a single laser&lt;/p&gt;
&lt;p&gt;&lt;to be continued&gt;&lt;/p&gt;
&lt;p&gt;Using absorption: &lt;a href="http://iopscience.iop.org/1742-6596/277/1/012053/pdf/1742-6596_277_1_012053.pdf"&gt;&lt;a href="http://iopscience.iop.org/1742-6596/277/1/012053/pdf/1742-6596_277_1_012053.pdf"&gt;http://iopscience.iop.org/1742-6596/277/1/012053/pdf/1742-6596_277_1_012053.pdf&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Patent using interferometry to measure index of refraction: &lt;a href="http://www.patentgenius.com/patent/6836337.html"&gt;&lt;a href="http://www.patentgenius.com/patent/6836337.html"&gt;http://www.patentgenius.com/patent/6836337.html&lt;/a&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;2004 :(&lt;/p&gt;</description><link>http://nomel.org/post/1583822086</link><guid>http://nomel.org/post/1583822086</guid><pubDate>Mon, 15 Nov 2010 16:23:00 -0500</pubDate></item><item><title>Kids Toy: Squeaky Feet</title><description>&lt;p&gt;Kids toy!&lt;/p&gt;
&lt;p&gt;For a fancy version, using pressure sensors in or under the shoe, for a cheap version, using an accelerometer or spring mass switch. Controller could be leg or belt mounted.&lt;/p&gt;
&lt;p&gt;When you walk, the controller would play back different sounds. Stomping, squeaky floor, etc. For the two sensor version, the sounds could be multi part or just segments played back as you moved forward. That way, using the squeaky floor example, the squeak could be gradual when moving slow, or faster when walking fast.&lt;/p&gt;
&lt;p&gt;Ideally, pressure sensors/switches would be used. Multiple or even a accelerometer could be used, but then, outside the shoe.&lt;/p&gt;
&lt;p&gt;I would have loved it when I was a kid (and now).&lt;/p&gt;</description><link>http://nomel.org/post/1213260874</link><guid>http://nomel.org/post/1213260874</guid><pubDate>Wed, 29 Sep 2010 20:30:08 -0400</pubDate></item><item><title>Temperature Sensor Array</title><description>&lt;p&gt;Use the top metal layer of a CMOS process to build structures that resonate at a specific frequency. Use the layer below to excite the resonance. Use the layer below that to build a similar structure and use as a reference. By measuring the difference in frequency between the two, small changes/differences in the structure (like length) could be detected. If possible, coat the top layer to a dark color. Stick a lens in front of it and maybe you have an un-cooled thermal imaging system with decent sensitivity and probably pretty good response time?&lt;/p&gt;
&lt;p&gt;The response time for heating would be a function of the thermal mass, the absorbed/long energy, and conduction through the vias. Maybe by holding the lower metal that the via is attached to at a temperature lower than the ambient or observed, better response times would be seen (by Newtonian cooling, greater temperature difference, greater rate of heat transfer).&lt;/p&gt;
&lt;p&gt;The reference would just act as a way to make a differential measurement and, possibly, reduce the speed of the logic required since beat frequencies could be detected using mixing rather than using the fundamental of each. Localized heating (heating that warmed the whole structure, reference and detector) would most likely be somewhat widespread and slow allowing diode temperature sensors, spread all over the chip on the silicon layer, to be used to compensate.&lt;/p&gt;
&lt;p&gt;If this ran at hundreds of MHz or GHz, this would probably be pretty sensitive.&lt;/p&gt;
&lt;p&gt;The sensor resonant frequency would be measured capacitively, maybe by looking at the time between voltage peaks (changing the plate separation in a capacitor with a fixed charge changes the voltage) or be looking at a sweeping excitation frequency and the maximum sensor displacement (by measuring the capacitance directly.&lt;/p&gt;
&lt;p&gt;Maybe having the excitation “plate” be a similar structure, and then looking at the beat frequency in the impedance between the two would be easier.&lt;/p&gt;
&lt;p&gt;Some fancy deconvolution could probably be used to help get rid of the motion blur cause by the slow response time of the sensors, especially since the heating and cooling response would probably be non linear (from Newtonian cooling).&lt;/p&gt;
&lt;p&gt;For densities…using a 0.18um CMOS process…and using a 2um minimum top metal trace width (double that to include spacing) and an aspect ratio of 5, and a 20mm by 15mm sensor, that would be something like 277 by 370 pixels (assuming square pixels). Or, for 35mm frame (34mm by 24mm), 629 by 533 pixels. This could be made greater by rearranging the sensors, using non-square pixels, or having smaller aspect ratios (which would lower sensitivity).&lt;/p&gt;
&lt;p&gt;I assume someone is already doing this.&lt;/p&gt;
&lt;p&gt;Edit: Here is a paper on making structures using the metal layer and etching away the silicon to free them: &lt;a title="Experiments on the Release of CMOS-Micromachined Metal Layers" target="_blank" href="http://www.hindawi.com/journals/js/2010/937301.html"&gt;Experiments on the Release of CMOS-Micromachined Metal Layers.&lt;/a&gt; This might mean that it’s not possible to have a hanging structure in the upper metal layer…only on the lowest layer.&lt;/p&gt;</description><link>http://nomel.org/post/1157440902</link><guid>http://nomel.org/post/1157440902</guid><pubDate>Mon, 20 Sep 2010 16:47:00 -0400</pubDate></item><item><title>Idea Idea: Compass belt implementation</title><description>&lt;p&gt;In the &lt;a title="wired article about compass belt" href="http://www.wired.com/wired/archive/15.04/esp.html"&gt;wired article&lt;/a&gt; about the compass belt, a complaint was that the motors were always buzzing away. I think a better implementation would be to only vibrate the motors on a change.&lt;/p&gt;
&lt;p&gt;So, if you’re facing north, as you rotate, the motors would vibrate with direction change, but only remain vibration for a maximum of 500ms.&lt;/p&gt;</description><link>http://nomel.org/post/795182946</link><guid>http://nomel.org/post/795182946</guid><pubDate>Sat, 10 Jul 2010 18:16:00 -0400</pubDate></item><item><title>Idea: Fluidised flour bed for opticle table stability?</title><description>&lt;p&gt;So, when making holograms, the total movement between the light, film, and object can’t be more than 1/2 to 1/4 the wavelength of the color of light you’re using (red is around 650nm). The less movement, the better.&lt;/p&gt;
&lt;p&gt;Would flowing air into a block of flour (baking soda, or something similar), supporting the optical table, work to isolate vibrations? It would act like a super dampened spring. Adjusting the airflow would increase the amount of air in the block which would, I assume, increase the spring effect and lower the spring constant. Since the exposure time for a hologram is less than 30 seconds, only a small amount of air would be required. Ideally the air would come from a compressed tank since pumping usually creates pulses of air. The air could be let in through a grid of openings at the bottom or an array throughout the block. I’m guessing that letting the air flow then lowering the table would be best. I assume settling would be very fast, maybe a few minutes.&lt;/p&gt;</description><link>http://nomel.org/post/764499363</link><guid>http://nomel.org/post/764499363</guid><pubDate>Sat, 03 Jul 2010 02:12:28 -0400</pubDate></item><item><title>Software Idea: Jump alarm clock</title><description>&lt;p&gt;An alarm clock that looks for a “jump” pattern from the accelerometer. This should be pretty hard to copy with your hand once “calibrated” with a real jump. Yeah, so I have trouble waking up.&lt;/p&gt;</description><link>http://nomel.org/post/764469118</link><guid>http://nomel.org/post/764469118</guid><pubDate>Sat, 03 Jul 2010 02:02:31 -0400</pubDate></item><item><title>Software Idea: Excersize Helper</title><description>&lt;p&gt;This has probably been done…but…&lt;/p&gt;
&lt;p&gt;A little program that uses the accelerometer on a phone to count push-ups (not the diapers), jumping jacks, and sit ups…things you can do in your living room. It would be somewhat game oriented, where it would have a silly little beat and a fun “Wii” type voice counting your repetitions and encouraging you. For instance, if you started to slow down, it could reduce the “goal count” and say something like “come on, two more”. There could also be a twitch mode like the “Bop it” game. “2 sit ups”, “One jumping jack”, and it would go faster and faster until you started to screw up. I guess I imagine something between “Bop it” and the Wii type experience.&lt;/p&gt;
&lt;p&gt;It should work okay while in a pocket, but a belt holder would be best. Orientation would be used to detect between the difference exercises.&lt;/p&gt;</description><link>http://nomel.org/post/764433651</link><guid>http://nomel.org/post/764433651</guid><pubDate>Sat, 03 Jul 2010 01:51:00 -0400</pubDate></item><item><title>Idea: Touch Pad Typing</title><description>&lt;p&gt;&lt;span&gt;Copy paste from chat, cause I’m lazy…&lt;br/&gt;&lt;span class="kn" dir="ltr"&gt; me: &lt;/span&gt; &lt;span dir="ltr" id=":1e1"&gt;Hrmm…I just had a thought for the toupad typing problem.&lt;/span&gt; &lt;span class="kn" dir="ltr"&gt;me: &lt;/span&gt; &lt;span dir="ltr" id=":1e0"&gt;You can’t feel the keys, so it’s easy to drift.&lt;/span&gt;So, why not have a vibrate that changes depending on how close to the edge of teh key you are?so, the more on center, the more “right” it will feel.the closer to the edge of the key you get, the more “wrong” it will feel.that way, you’re able to “feel” if you’re on the key or not. wouldn’t do much for the initial touch, but, while typing, it’d let you stay on center.&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Maybe the edge vibration could feel less sharp (slow frequency, softer, or boing a little), on center being the sharpest and quickest feel.&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Pretty obvious, but might work.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Sense pattern might look something like this, with a smooth gradient. Center would give center feel, where it would change as you moved to the edge. The edge would give a distinct feel, something where a person would go, “Oops!” and look down and fix their position.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_l587x5nStT1qzpj6d.png"/&gt;&lt;/p&gt;</description><link>http://nomel.org/post/719052827</link><guid>http://nomel.org/post/719052827</guid><pubDate>Sun, 20 Jun 2010 14:23:00 -0400</pubDate></item></channel></rss>

