<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7100809375778933296</id><updated>2012-01-16T01:11:37.280+04:00</updated><title type='text'>Get A Soldering Iron</title><subtitle type='html'>A place to leave technology ideas. That could make some impact.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-197584278327340814</id><published>2012-01-12T03:34:00.001+04:00</published><updated>2012-01-16T01:11:37.287+04:00</updated><title type='text'>Code validation advocacy</title><content type='html'>&lt;p&gt;It was said many times that static code validation sucks, validation warnings are false and senseless.&lt;/p&gt;&lt;p&gt;Well, it is a common mood despite numerous words to support code validation. So just my 2 cents.&lt;br&gt;&lt;/p&gt;&lt;h4&gt;What code validation tools do&lt;/h4&gt;&lt;p&gt;So what is the code validation about - starting from most simple topics. Some are not covered - such as API analysis.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;b&gt;Copy-paste&lt;/b&gt;&lt;br&gt;&lt;p&gt;Detects chunks of duplicated code. It is bad, obviously.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Formatting&lt;/b&gt;&lt;br&gt;&lt;p&gt;Checks if the source code follow certain formatting rules.&lt;br&gt; Well, these rules may differ from Sun, Microsoft or Google ones. That doesn&amp;#39;t matter. The only things that matters is that the rules must be the same. For the whole project. For all projects around. Soon you will get used to them. And the project code will be like a book printed with a good font but not a hand-written notes on a napkin.&lt;br&gt; And we don&amp;#39;t write in Brainfuck, right?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Bad words&lt;/b&gt;&lt;br&gt;&lt;p&gt;Checks for certain typical words in comments - such as TODO, FIXME, DEBUG, etc.&lt;br&gt; Imagine - you are a Big Company and your contractor sent you a piece of code. In the middle of the code:&lt;/p&gt;&lt;p style="margin-left:40px"&gt;/* TODO: implement it according to the spec */&lt;/p&gt;&lt;p&gt;What will you say? &amp;quot;WTF, what did they send?!&amp;quot;&lt;br&gt; Put TODOs to your code in development. But clean them out prior to submission to a repository. Not just delete the comment but solve its cause. Leave the code in a stable state. If there is a problem - create a task in an issue tracker.&lt;br&gt; Finally we are coders. Our product - those text files that we submit to the repository. Those lines of text brings us our money. They must shine.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Documentation&lt;/b&gt;&lt;br&gt;&lt;p&gt;Checks that all relevant code items have inline documentation.&lt;br&gt; Sure good inline documentation is the must. Lack of proper inline docs leads to misuse, time waste and re-invention the wheel. And don&amp;#39;t bother to choose what should be documented and what should not. You are not a prophet and cannot predict how and when this code will be used. So just document everything.&lt;br&gt; Checks for legal stuff - such as license headers. Remember - nowadays is the era of lawyers. So don&amp;#39;t feed the trolls.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Anti-patterns&lt;/b&gt;&lt;br&gt;&lt;p&gt;Looks for coding patterns that are either bad practice or directly dangerous.&lt;br&gt; Most developers can argue that in this specific case it won&amp;#39;t cause problems. Nobody can predict all execution flows. Nobody can imagine all possible uses in the future. All these anti-patterns may cause problems. So take for granted that if they can cause problems they will - according to the Murphy law.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h4&gt;How do code validation tools affect developers work?&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;Difficulties?&lt;/b&gt;&lt;br&gt;&lt;p&gt;Everyone has habits. Everyone has own taste for formatting. OK, IDE will do it for you.&lt;br&gt; Everyone has own code tricks. That is good sometimes - for sole coding. For team work it is not acceptable. We are speaking the code to our colleagues and need to understand and to be understood.&lt;br&gt; It takes precious time. But bugs takes more. Bugs by you, by users of your code. Maintenance takes even more.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;Profit!&lt;/b&gt;&lt;br&gt;&lt;p&gt;It really helps to avoid some bugs.&lt;br&gt; It makes more transparent and easier to understand for teammates - so developers can switch faster and accustom better with a new code. They will use the existing functionality better and make less bugs.&lt;br&gt; It makes code look more clear and professional. That means - more valuable. That means higher customer satisfaction.&lt;br&gt;The more professional is code look, the less tension it will cause with the customer-side reviewers - they are seldom benevolent. &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h4&gt;What should we do?&lt;/h4&gt;&lt;p&gt;Just follow the code validation rules. Always. But switch brain on and do not invent constructions to just shut the validation rule up.&lt;br&gt;&lt;/p&gt;&lt;p&gt;It is not difficult, is it?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-197584278327340814?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/197584278327340814/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2012/01/code-validation-advocacy.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/197584278327340814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/197584278327340814'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2012/01/code-validation-advocacy.html' title='Code validation advocacy'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-3922188103832235871</id><published>2010-04-08T12:36:00.003+04:00</published><updated>2010-04-12T21:35:22.633+04:00</updated><title type='text'>Oracle says</title><content type='html'>&lt;p&gt;An Oracle official &lt;a href="http://oracle.com.edgesuite.net/ivt/4000/8104/9236/12627/lobby_external_flash_clean_480x360/default.htm" id="vqff" title="Oracle + Sun: Java Developer Tools Strategy"&gt;states Oracle position&lt;/a&gt; regarding development tools:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;NetBeans will continue with strong Java focus and &lt;i&gt;more resources&lt;/i&gt;. Other languages will be transferred to (supported) community.&lt;br&gt; Though the primary Java development tool (for RIA) is JDeveloper.&lt;/li&gt;&lt;li&gt;NetBeans will remain free. &lt;/li&gt;&lt;li&gt;Eclipse will be supported too.&lt;/li&gt;&lt;li&gt;Hudson continuous integration server will be moved forward with power:&lt;br&gt;&lt;blockquote&gt;&amp;quot;... Increase the investment in Hudson, lots of synergy with Team Productivity Center. ...&amp;quot;&lt;/blockquote&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;It&amp;#39;s an important clarification after the Sun acquisition.&lt;/p&gt;&lt;p&gt;Another point is the Hudson value. It is recognized as a similar importance tool as major IDEs. And Oracle has ambiguous plans regarding to Hudson. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-3922188103832235871?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/3922188103832235871/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2010/04/oracle-says.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/3922188103832235871'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/3922188103832235871'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2010/04/oracle-says.html' title='Oracle says'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-1325186606177001331</id><published>2009-06-18T11:52:00.002+04:00</published><updated>2009-06-18T11:53:03.881+04:00</updated><title type='text'>Would you lease a software?</title><content type='html'>&lt;p&gt;Not you as a private person. Your company or, better, your &lt;i&gt;own&lt;/i&gt; company. &lt;/p&gt;
&lt;p&gt;Typical interaction between a software provider and a consumer often belongs to one of the following ways:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;
&lt;p&gt;Provider sells you a Box, you pay big bucks. Provider is happy.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Provider sells you a set of Boxes ("licences") and a expensive service contract, you pay very big bucks first and some bucks later. Provider is happy for a time.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Provider crafts a Software suited to your needs (at least promulgates it) and ties you with the maintenance service. You pay huge bucks now and big bucks for a while.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;But a business never needs a software. Because it is not an asset. It is just a tool. And a specific tool can be utilized only by a specific professional. For example a wholesale FMCG company needs some furniture for its office. Does it need a saw and a hammer? No! It doesn't need even a carpenter who uses these tools to make tables and cabinets. It needs &lt;i&gt;furniture&lt;/i&gt;.&lt;/p&gt;
&lt;p&gt;In the cases "1" and "2" above a software provider sells me "saws" and "hammers". The last case gives me the desired &lt;i&gt;service&lt;/i&gt; but for enormous price - it is rarely justified. And in every case I pay first and take all risks of later tool (software) use, efficiency and ROI. Why?! Because the current software market is a seller's market.&lt;/p&gt;
&lt;p&gt;Aside from software - what tools do I buy for my company? That are proved to be used for a reasonable time by my staff for my primary business activities. For the rest I lease them or even order a professional service. For example: I am a wholesale company. Do I need a shiny box titled "SuperDuperCRM version 1.2.3 configuration XYZ" for my business? No, I need an &lt;i&gt;up-to-date&lt;/i&gt; CRM system tailored to my &lt;i&gt;current&lt;/i&gt; requirements (no more). While I interact with a large customer base (no longer). I.e. I need a service. And I ready to pay for the service at the rate I consume it. Obvious?&lt;/p&gt;
&lt;p&gt;For every other subject it is obvious. We know - it's better to pay later. But for software we waste our money for shiny cartons. A hurtful habit.&lt;/p&gt;
&lt;p&gt;So the question is neither technical nor financial. It is rather psychological. And the answer relies on habits. And (if the answer is "no") its change will boost software &lt;i&gt;service&lt;/i&gt; market. All the current SaaS (software as a service) media buzz is because of it.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-1325186606177001331?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/1325186606177001331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/06/would-you-lease-software.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/1325186606177001331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/1325186606177001331'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/06/would-you-lease-software.html' title='Would you lease a software?'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-1326990934309339258</id><published>2009-05-23T01:09:00.002+04:00</published><updated>2009-05-23T01:10:38.145+04:00</updated><title type='text'>Tao Ma's IC inspired</title><content type='html'>&lt;style type="text/css"&gt;
div.figcell {
  display: inline-block;
  text-align: center;
  margin: 1ex;
  padding: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: silver;
}
&lt;/style&gt;

&lt;div style="text-align: center;"&gt;
&lt;div id="wytj" class="figcell" style="text-align: center;"&gt;&lt;a title="Tao Ma's IC kid learning device" href="http://www.coroflot.com/public/individual_set.asp?individual_id=124172&amp;amp;set_id=127461&amp;amp;is_featured=%2D1&amp;amp;"&gt;&lt;img style="border: medium none ; width: 362px; height: 400px;" alt="Tao Ma's IC" src="http://lh4.ggpht.com/_UGMIkxl8YJ0/ShcQe_XpkPI/AAAAAAAAANc/9_hR-s4jc9Q/s400/Tao_Ma-IC-1.jpg"&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;&lt;a title="Tao Ma's IC kid learning device" href="http://www.coroflot.com/public/individual_set.asp?individual_id=124172&amp;amp;set_id=127461&amp;amp;is_featured=%2D1&amp;amp;"&gt;The gadget&lt;/a&gt;
is just a learning tool. But a similar device could be a glass to read
between lines. You direct the device to a thing, the device requests
the thing, it replies. And a "how-to" icon about the thing is displayed.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-1326990934309339258?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/1326990934309339258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/tao-ma-ic-inspired.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/1326990934309339258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/1326990934309339258'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/tao-ma-ic-inspired.html' title='Tao Ma&amp;#39;s IC inspired'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_UGMIkxl8YJ0/ShcQe_XpkPI/AAAAAAAAANc/9_hR-s4jc9Q/s72-c/Tao_Ma-IC-1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-6442286536056046118</id><published>2009-05-21T03:44:00.008+04:00</published><updated>2009-05-23T01:12:21.285+04:00</updated><title type='text'>Bracelet cell phone calls you gently</title><content type='html'>&lt;style type="text/css"&gt;
div.figcell {
  display: inline-block;
  text-align: center;
  margin: 1ex;
  padding: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: silver;
}
p.figcap {
  margin-top: 1ex;
  margin-bottom: 0ex;
  font-size: smaller;
}
&lt;/style&gt;

&lt;p&gt;Bracelet cellphone - an inexhaustible theme for designer exercises. Just a short glimpse over the Web:&lt;/p&gt;

&lt;div style="text-align: center;"&gt;
&lt;div id="onil" class="figcell" style="text-align: center;"&gt;&lt;a title="liteon 2006 bracelet cell phone" href="http://www.coroflot.com/public/individual_set.asp?individual_id=124172&amp;amp;set_id=57990&amp;amp;is_featured=-1&amp;amp;"&gt;&lt;img style="border: medium none ; margin: 14px 0px 15px; width: 288px; height: 202px;" alt="liteon 2006 cellphone" src="http://lh5.ggpht.com/_UGMIkxl8YJ0/Sg9Gf9o6_sI/AAAAAAAAAJo/pdzt_ZLmD04/s288/Tao_Ma-liteon2006-1.jpg"&gt;&lt;/a&gt;
&lt;p class="figcap"&gt;&lt;a title="liteon 2006 bracelet cell phone" href="http://www.coroflot.com/public/individual_set.asp?individual_id=124172&amp;amp;set_id=57990&amp;amp;is_featured=-1&amp;amp;" id="z9om"&gt;liteon 2006&lt;/a&gt; by &lt;a title="Tao Ma" href="http://www.coroflot.com/public/individual_details.asp?individual_id=124172" id="d-f3"&gt;Tao Ma&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="e_3y" class="figcell" style="text-align: center;"&gt;&lt;a title="STM bracelet cell phone" href="http://www.tuvie.com/speak-to-me-stm-bracelet-cell-phone-by-nicolas-nicolaou"&gt;&lt;img style="border: medium none ; margin: 22px 0px 23px; width: 288px; height: 186px;" alt="STM cellphone" src="http://lh3.ggpht.com/_UGMIkxl8YJ0/ShMrAu894EI/AAAAAAAAAKc/cXGr1BaU4s0/s288/Nikolas_Nicolaou-STM-1.jpg"&gt;&lt;/a&gt;
&lt;p class="figcap"&gt;&lt;a title="STM bracelet cell phone" href="http://www.tuvie.com/speak-to-me-stm-bracelet-cell-phone-by-nicolas-nicolaou"&gt;STM phone&lt;/a&gt; by &lt;a title="Nikolas Nicolaou" href="http://www.nicodesign.dk/"&gt;Nikolas Nicolaou&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;div id="zj3." class="figcell" style="text-align: center;"&gt;&lt;a title="On Time headset" href="http://www.coroflot.com/public/individual_set.asp?from_url=true&amp;amp;individual_id=262755&amp;amp;set_id=315774&amp;amp;is_featured=%2D1&amp;amp;"&gt;&lt;img style="border: medium none ; margin: 20px 0px; width: 288px; height: 191px;" alt="On Time headset" src="http://lh4.ggpht.com/_UGMIkxl8YJ0/ShSCdw3ESAI/AAAAAAAAAMo/nmW6j8uyTKg/s288/Pedro_Gomes-on_time_headset.jpg"&gt;&lt;/a&gt;
&lt;p class="figcap"&gt;&lt;a title="On Time headset" href="http://www.coroflot.com/public/individual_set.asp?from_url=true&amp;amp;individual_id=262755&amp;amp;set_id=315774&amp;amp;is_featured=%2D1&amp;amp;" id="ke1j"&gt;On Time headset&lt;/a&gt; by &lt;a title="Pedro Gomes" href="http://www.coroflot.com/pedrogomes" id="an2k"&gt;Pedro Gomes&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id="l-1h" class="figcell" style="text-align: center;"&gt;&lt;a title="Strapup phone bracelet" href="http://images.businessweek.com/ss/05/12/nextgen_gadgets/source/3.htm"&gt;&lt;img style="border: 0pt none ; margin: 0px; width: 288px; height: 231px;" alt="Strapup phone bracelet" src="http://lh5.ggpht.com/_UGMIkxl8YJ0/ShSHLGlg9CI/AAAAAAAAAM4/cDcENXsq9Vg/s288/nokia-strapup_bracelet_phone.jpg"&gt;&lt;/a&gt;
&lt;p class="figcap"&gt;&lt;a title="Startup phone bracelet" href="http://images.businessweek.com/ss/05/12/nextgen_gadgets/source/3.htm" id="f8lh"&gt;Strapup phone bracelet&lt;/a&gt; by &lt;a title="Nokia corp" href="http://www.nokia.com/" id="d0ue"&gt;Nokia&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;All these devices capture your attention to an incoming call in the same way - they vibrate. It is so easy to miss such a vibration in a day buzz. Even if the phone is in your pocket. And this noisy behavior of the elegant jewel is rude and irritating. The bracelet braces a wrist, what should it do on an incoming call?&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;font size="4"&gt;It should &lt;i&gt;squeeze&lt;/i&gt; your hand gently.&lt;/font&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-6442286536056046118?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/6442286536056046118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/bracelet-cell-phone-calls-you-gently.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/6442286536056046118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/6442286536056046118'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/bracelet-cell-phone-calls-you-gently.html' title='Bracelet cell phone calls you gently'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh5.ggpht.com/_UGMIkxl8YJ0/Sg9Gf9o6_sI/AAAAAAAAAJo/pdzt_ZLmD04/s72-c/Tao_Ma-liteon2006-1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-4956557756077656709</id><published>2009-05-04T03:01:00.002+04:00</published><updated>2009-05-04T03:01:50.829+04:00</updated><title type='text'>Problem - type while walking</title><content type='html'>&lt;p&gt;To use a notebook computer you have to seat down. Then you can type.
The same difficulty is for sliding qwerty compacts such as &lt;a title="OQO ultra-moblie PC" target="_blank" href="http://www.oqo.com/" id="oka8"&gt;OQO&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;
But often you are standing or even walking. And wanting to write a note,
to schedule an appointment or to record a contact. And there are no time or
appropriate place around to seat, to unpack a laptop and to open it. The only
working solution is a touch screen PDA and a stylus. Left hand hold the
device, right hand write with the stylus. But again, scribing is slow
and screen keyboard is terrible to use. Well, there are things like &lt;a title="ThinkGeek: Connect-A-Desk Laptop Holder" target="_blank" href="http://www.thinkgeek.com/computing/bags/a988/"&gt;the kangaroo laptop holder&lt;/a&gt;, but this is usable in rare situations only.&lt;/p&gt;&lt;p&gt;Any ideas?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-4956557756077656709?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/4956557756077656709/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/problem-type-while-walking.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/4956557756077656709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/4956557756077656709'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/problem-type-while-walking.html' title='Problem - type while walking'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-7404160428713429932</id><published>2009-05-01T01:40:00.002+04:00</published><updated>2009-05-01T01:42:58.271+04:00</updated><title type='text'>One-button mobile phone for children</title><content type='html'>&lt;p&gt;Mobile communications for children. A worry point for parents - babies are to be in touch. A sweet piece for mobile operators and phone manufacturers - children are not fully captured by the business and can consume more traffic. So - the classic design exercise: mobile phone for children. It must be:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Suitable for users (very young people): simple, pretty, light, tough and safe;&lt;/li&gt;
&lt;li&gt;Suitable for owners (very nervous parents): controlled, reliable and cheap.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The common root for all these properties is: being simple.&lt;/p&gt;
&lt;p&gt;So - the small rounded rectangle with a single button: "Call". The idea of such a minimalistic one- or two-button communication Device is not new. Moreover it is actively exploited, especially as an emergency device - you press the button and the phone will connect you to the call-center. The proposed idea core is to adapt the &lt;i&gt;Device&lt;/i&gt; class to the specific use.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;
&lt;p&gt;Shape and size. There are two size limitations: length (for the antenna to work) and volume (for the battery to store energy). Device length can be 8 cm (wavelength quarter) or even smaller for 900 MHz GSM - quite compact. Battery feeds just a transmitter - there are no bright displays or powerful CPUs, so its capacity (and volume) could be small. I suppose a small rounded brick would be the best shape - it can be pleasant, easy to personalize (important for youngs) and simple to manufacture. The Device housing should be cast solid - no holes, sockets or detachable parts. Thus enough durability, water-, dust- and dirt-proofness will be achieved. So even the battery can have no packaging therefore saving weight and manufacturing cost. To avoid SIM-card manipulations the SIM chip have to be integrated into the Device. The speaker and the microphone should use a surface membrane, thus eliminating garbage collecting holes.&lt;br&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Controls. A button "Call the parent" - call a programmed number. The same button is used to hang up. Slightly advanced model can have several call buttons - for a specific number each. If the programmed number calls, the appropriate button will blink. For a rectangle case the best button shape is rectangle too. Ordered in a single column along the main axis of the Device face.
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Power supply (charger). No sockets. A short-length wireless inductive power transmission should be used (a split electric transformer). Field shape design, relatively low frequency and device sensor make this approach safe enough. Also this EM link acts as a communication medium (see below). It should be a "base station" to drop the Device for charging.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Communication. Again - no sockets. The primary medium to control and program the Device is a contact-less base station. It is wired to the mains for power, optionally - to a computer. And - to a parent mobile phone via Bluetooth to program and control.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Programming. To assign a phone number to a button and to free a button. To accept or reject unidentified calls. The simplest way (&lt;i&gt;"call me"&lt;/i&gt;) is:&lt;br&gt;
A parent dials the device number -&lt;br&gt;
- The Device detects the calling number and rings, all free buttons blink -&lt;br&gt;
- Press a blinking button; the calling number will be assigned to the button.&lt;/p&gt;
&lt;p&gt;More complex approach is an (Java) application for a parent mobile phone. The application connects the Device base station via Bluetooth and later - the Device itself via an proprietary power link protocol (see Power supply). The application uses an unique security code (such as SIM PIN code) to access the Device.&lt;/p&gt;
&lt;p&gt;In the last case the Device is programmed by the mobile network operator remotely. A parent uses the operator web interface to request a programming task and the operator does the job via SMS or so.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
 &lt;p&gt;Personalization. The Device has a simple and solid shape with flat sides. This makes it suitable to be decorated. The membrane "call" buttons could be signed by a pen and a thick soft transparent rectangle (provided with the Device) could be glued over to make a customized button.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Service. 
The device have to be locked to a mobile network operator. Sure the operator will offer dedicated group tariffs for parents and children with the Devices. The Device can guess its location using network cell data (to avoid an extra GPS receiver). And the Device should track is it with the child or not (using &lt;a title="Location tags for mobile phone" href="http://soldering-iron.blogspot.com/2009/04/location-tags-for-mobile-phone.html" id="ull9"&gt;location tags&lt;/a&gt; or a simple electric capacitance measurement). Parents are informed about this by SMS or by an operator location service and a Java application for a parent's phone.&lt;/p&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Safety. The device is deeply personalized. A stealth biometric authentication (such as &lt;a title="Apple Insider: Apple developing stealth biometric security for iPhone" target="_blank" href="http://www.appleinsider.com/articles/09/03/27/apple_developing_stealth_biometric_security_for_iphone.html" id="voxw"&gt;one being developed by Apple&lt;/a&gt;) pushes the personalization even more. Also the Device is so cheap that there are no reason to steal it or even to robber. So it is safer for children. Simplicity and tough construction make the Device not breakable. So accidental injury risk is less.&lt;/p&gt;
&lt;p&gt;Network operator side. Because there isn't a SIM-card, the Devices are sold with a pre-programmed phone number. Because of the users nature, the Devices will be lost frequently. Thus many phone numbers are wasted. But these numbers can be reused fast - only the parents know the actual Device phone number so no one will call the lost Device.&lt;/p&gt;
&lt;p&gt;The Device should observe some of common &lt;a title="Location tags for mobile phone" href="http://soldering-iron.blogspot.com/2009/04/location-tags-for-mobile-phone.html" id="ull9"&gt;earlier proposed location tags&lt;/a&gt;: classroom, gym, theater, etc. So there won't be loud rings in a class.&lt;/p&gt;
&lt;p&gt;The Device could be good and simple for parents. I.e. for money payers. I.e. could be sold in tons even in drug-stores.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-7404160428713429932?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/7404160428713429932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/one-button-mobile-phone-for-children.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/7404160428713429932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/7404160428713429932'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/05/one-button-mobile-phone-for-children.html' title='One-button mobile phone for children'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-8871917390148537578</id><published>2009-04-29T02:15:00.002+04:00</published><updated>2009-04-29T02:15:52.455+04:00</updated><title type='text'>Largest laptop problem - time to get it working</title><content type='html'>&lt;p&gt;I bet that the most annoying misfeature of virtually every laptop is the start up time. Rolling out and connecting the power supply wires to a wall socket, waiting for OS to start requires about ... minutes. Even taking it from a bag takes some time. It hurts much operative style of mobile computing.&lt;/p&gt;
&lt;p&gt; This is why PDAs are much superior to a conventional notebook PC in a mean of accessibility.&lt;/p&gt;
&lt;p&gt;Let imagine a mobile computer that does not suffer from such a &lt;span class="definition"&gt;deficiency. First of all it have to be built from zero time start components. No HDD to spin up, but SSD. No back lit TFT display, but a passive display like &lt;a title="e-paper" target="_blank" href="http://en.wikipedia.org/wiki/Electronic_paper" id="jrq9"&gt;e-paper&lt;/a&gt;. &lt;/span&gt;Low power consumption especially in sleeping mode. It permits to work on battery instead of mains power. And to use such a "hibernation" mode (instead of switching the computer off) and get it later on in a second.&lt;/p&gt;
&lt;p&gt;For me the best existing creatures for this case are &lt;a target="_blank" title="HTC Advantage" href="http://www.htc.com/www/product/advantage/overview.html" id="w155"&gt;HTC Advantage&lt;/a&gt; and &lt;a target="_blank" title="Shift" href="http://www.htc.com/www/product/shift/overview.html" id="rpa6"&gt;Shift&lt;/a&gt; models though I'm not a fun of their Microsoft internals.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-8871917390148537578?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/8871917390148537578/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/04/largest-laptop-problem-time-to-get-it.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/8871917390148537578'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/8871917390148537578'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/04/largest-laptop-problem-time-to-get-it.html' title='Largest laptop problem - time to get it working'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-4640752143095798446</id><published>2009-04-25T01:31:00.025+04:00</published><updated>2009-04-29T02:11:58.327+04:00</updated><title type='text'>Location tags for mobile phone</title><content type='html'>&lt;p&gt;For a long time mobile phones have "profiles" for different environment situations. These "profiles" include ring type and volume, screen brightness and similar tunings for comfortable use in the specific situation. But you have to switch profiles manually - that makes them being a feature of little use. So there should be a way for the phone to guess the environment. Or the environment should tell it.&lt;/p&gt;&lt;p&gt;The most obvious way is to install small beacons that transmit fixed messages such as "here is an office room". These beacons or "location tags" have to be cheap, reliable and working for a long time without any maintenance. The simplest method to transmit the tag message seems to be Bluetooth. The transmission power should be low to to limit the tagging zone size and to save energy. In this case any modern mobile phone can be used - just install the appropriate software. A phone receives a tag message about the location and acts according to the phone configuration for the location. It may obey the tag unconditionally or prompt the phone owner.&lt;/p&gt;&lt;p&gt;Several tag types proposed from the scratch:&lt;/p&gt;&lt;div&gt;
&lt;table class="" id="vn3n" border="1" bordercolor="#000000" cellpadding="3" cellspacing="0" width="100%"&gt;
&lt;tbody&gt;
&lt;tr align="center" bgcolor="#cccccc" valign="middle"&gt;
&lt;td&gt;&lt;i&gt;Tag type&lt;/i&gt;&lt;/td&gt;
&lt;td&gt;&lt;i&gt;Meaning&lt;/i&gt;&lt;/td&gt;
&lt;td&gt;&lt;i&gt;Location&lt;/i&gt;&lt;/td&gt;
&lt;td&gt;&lt;i&gt;Working distance&lt;/i&gt;&lt;/td&gt;
&lt;td&gt;&lt;i&gt;Priority&lt;/i&gt;&lt;/td&gt;
&lt;td&gt;&lt;i&gt;Shape&lt;/i&gt;&lt;/td&gt;
&lt;td&gt;&lt;i&gt;Power source&lt;/i&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align="left" valign="top"&gt;
&lt;td&gt;"&lt;b&gt;with me&lt;/b&gt;",&lt;br&gt; "&lt;b&gt;street&lt;/b&gt;"&lt;/td&gt;
&lt;td&gt;the phone is in a pocket or clipped to the belt&lt;/td&gt;
&lt;td&gt;worn&lt;/td&gt;
&lt;td&gt;low&lt;/td&gt;
&lt;td&gt;lowest&lt;/td&gt;
&lt;td&gt;belt clip,&lt;br&gt;key chain pendant,&lt;br&gt;button&lt;/td&gt;
&lt;td&gt;electrodynamic (from walk shake),&lt;br&gt;electrothermal (from body warmth),&lt;br&gt;button cell&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align="left" valign="top"&gt;
&lt;td&gt;"&lt;b&gt;bag&lt;/b&gt;"&lt;/td&gt;
&lt;td&gt;the phone is in the bag (especially useful for women)&lt;/td&gt;
&lt;td&gt;in/on the bag&lt;/td&gt;
&lt;td&gt;lowest&lt;/td&gt;
&lt;td&gt;higher than "with me"&lt;/td&gt;
&lt;td&gt;detachable pendant,&lt;br&gt;button,&lt;br&gt;sticker&lt;/td&gt;
&lt;td&gt;electrodynamic (from walk shake),&lt;br&gt;solar cell (if the tag is located outside the bag),&lt;br&gt;button cell&lt;/td&gt;
&lt;/tr&gt;
&lt;tr align="left" valign="top"&gt;
&lt;td&gt;"&lt;b&gt;room&lt;/b&gt;"&lt;/td&gt;
&lt;td&gt;living room, office, classroom, theater, etc&lt;/td&gt;
&lt;td&gt;fixed on a wall or a furniture in the room&lt;/td&gt;
&lt;td&gt;large (use several tags to cover the whole compartment)&lt;/td&gt;
&lt;td&gt;high&lt;/td&gt;
&lt;td&gt;sticker,&lt;br&gt;pass-through plug to a wall socket&lt;/td&gt;
&lt;td&gt;solar cell (uses the room illumination),&lt;br&gt;a wall electric socket (power mains, computer network, phone - the tag is transparent for the transmission, it just seal some energy)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;&lt;p&gt;Tag meaning can be programmed. So as the tag is just a tag, and the phone is told to recognize it in a specific way.&lt;/p&gt;&lt;p&gt;Tags can be sold by retail stores in sets of different tag types. These end-user tags have to be linked with the phone by the owner. For other phones they are meaningless. There are also possible commonly recognized tags: theatre/church, cafe, classroom, gym, etc. These tags could be silently scattered in appropriate sites by a vendor or an operator. Such a guerrilla marketing.&lt;/p&gt;&lt;p&gt;Really these tags could be useful for any wearable gadget that behaves location-specific.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-4640752143095798446?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://soldering-iron.blogspot.com/feeds/4640752143095798446/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://soldering-iron.blogspot.com/2009/04/location-tags-for-mobile-phone.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/4640752143095798446'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/4640752143095798446'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/04/location-tags-for-mobile-phone.html' title='Location tags for mobile phone'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7100809375778933296.post-1839715401084320150</id><published>2009-04-22T23:36:00.001+04:00</published><updated>2009-04-23T18:05:39.824+04:00</updated><title type='text'>What is this blog for</title><content type='html'>&lt;p&gt;Well, from time to time every properly operating brain produces some ideas. Not related to your current job or even life. Some of them looks neat. Some of the last could have a real world application. And often it's not so easy to throw them away in a favor to daily vital doings. This looks like a feel of a young boy, who walked around, occasionally poke up a pebble and encountered a big window. The shining glass surface and the stone in his hand are becoming tied by some vibrant link that is asking spitefully: "throw it to the window, break it!" It is not so good.&lt;/p&gt;&lt;p&gt;The best way to get rid of a thought is to write it. Sure not every came idea. But one that seems implementable, useful and interesting. There will be no looks for analogs, though I'll thank if someone point me to them. No efficiency analysis, market demand research or ROI calculations. But I'll try to present these ideas as useful for people and (maybe) for designers and industry. Let someone other to get a soldering iron and to make the thing solid.
&lt;/p&gt;Note these postings are public but not public domain. They are copyrighted by the fact of publication.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7100809375778933296-1839715401084320150?l=soldering-iron.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/1839715401084320150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7100809375778933296/posts/default/1839715401084320150'/><link rel='alternate' type='text/html' href='http://soldering-iron.blogspot.com/2009/04/what-is-this-blog-for.html' title='What is this blog for'/><author><name>Kirill Evstigneev</name><uri>https://profiles.google.com/102148912778060120099</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh6.googleusercontent.com/-JBrxgGcgioE/AAAAAAAAAAI/AAAAAAAAAjI/1wFXsYyHjuo/s512-c/photo.jpg'/></author></entry></feed>
