tag:blogger.com,1999:blog-135619942009-02-23T01:31:26.355-08:00Birdesign-Interaction DesignchirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.comBlogger35125tag:blogger.com,1999:blog-13561994.post-53155644344997153992008-08-25T23:23:00.000-07:002008-08-25T23:24:48.173-07:00Information Architecture televisionCheck out the videos from the leading managers from various companies at<br /><br />http://iatelevision.blogspot.com/<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-5315564434499715399?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-86915445037468654442008-08-20T00:16:00.000-07:002008-08-20T00:27:27.284-07:00Free Tell-a-Friend widget for the blogs, sites<p class="defaultParaLTM">You can use Tell-a-Friend widget that works just about any blog/website. The installation instructions can be found at http://tellafriend.socialtwist.com/index.jsp. It was easy to setup without any hiccups and now i have widget showing at the top of the every blog post.</p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-8691544503746865444?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-58217771493760827952007-09-04T21:08:00.000-07:002007-09-04T21:11:01.286-07:00The Slang does itBefore making it cool lets look at the communication<br /><br /><br /><object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/94wkOou-Spo"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/94wkOou-Spo" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></object><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-5821777149376082795?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-17317666847943958012007-07-05T21:33:00.000-07:002007-07-05T21:41:01.943-07:00The color scheme softwares and sitesThere are couple of sites out there which can help you in choosing colors for ur applications and also help in coming up themes for the stylesheets<br /><ul><li>Color Schemer: <a href="http://www.colorschemer.com/">http://www.colorsch<wbr>emer.com/</a></li><li>Color Burn :<a href="http://www.firewheeldesign.com/widgets/">http://www.firewhee<wbr>ldesign.com/<wbr>widgets/</a></li><li>Tiger color:<a href="http://www.tigercolor.com/">http://www.tigercol<wbr>or.com/</a></li><li>adobe: <a href="http://kuler.adobe.com/">http://kuler.<wbr>adobe.com/</a></li><li>Color blender:<a href="http://colorblender.com/">http://colorblender<wbr>.com/</a></li><li>Another Color Blender:<a href="http://meyerweb.com/eric/tools/color-blend/">http://meyerweb.<wbr>com/eric/<wbr>tools/color-<wbr>blend/</a></li><li>Well Styled: <a href="http://wellstyled.com/tools/colorscheme2/index-en.html">http://wellstyled.<wbr>com/tools/<wbr>colorscheme2/<wbr>index-en.<wbr>html</a></li></ul>Enjoy painting the website :)<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-1731766684794395801?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-2418944501491077612007-07-02T06:32:00.000-07:002007-07-02T06:36:33.397-07:00Interaction Design PatternsThe design patterns can be found at<br /><ul><li>Jenifer Tidwell's site <a href="http://designinginterfaces.com/">http://designingint<wbr>erfaces.com/</a></li><li><a href="http://www.welie.com/patterns/index.html">http://www.welie.<wbr>com/patterns/<wbr>index.html</a></li><li><a href="http://harbinger.sims.berkeley.edu/ui_designpatterns/webpatterns2/webpatterns/home.php">http://harbinger.<wbr>sims.berkeley.<wbr>edu/ui_designpat<wbr>terns/webpattern<wbr>s2/webpatterns/<wbr>home.php</a></li><li><a href="http://developer.yahoo.com/ypatterns/">http://developer.<wbr>yahoo.com/<wbr>ypatterns/</a></li><li><a href="http://www.webstyleguide.com/index.html?/contents.html">http://www.webstyle<wbr>guide.com/<wbr>index.html?<wbr>/contents.<wbr>html</a></li></ul>cheers<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-241894450149107761?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com1tag:blogger.com,1999:blog-13561994.post-39198204492269270712007-06-25T04:48:00.000-07:002007-06-25T04:57:07.635-07:00Javascript to convert the reverse color valueHere is the small javascript code i wrote to get the reverse color for text on the colored background.<br /><br /><blockquote><br />&lt; script type="text/javascript"><br /> function changeColor(colorval){<br /> var colorValue='';<br /> var reverseColor='';<br /> if(colorval.length==4 || colorval.length==7 ){<br /> colorval=colorval.substr(1,colorval.length);<br /> }<br /> if (colorval.length==3){<br /> for(i=0;i&lt;colorval.length;i++){<br /> var colchar=colorval.substr(i,1);<br /> colorValue+=colchar+colchar;<br /> reverseColor+=reverseColorChar(colchar)+reverseColorChar(colchar);<br /> }<br /> }else{<br /> for(j=0;j&lt;colorval.length;j++){<br /> var colchar=colorval.substr(j,1); <br /> reverseColor += reverseColorChar(colchar);<br /> }<br /> colorValue=colorval;<br /> }<br /><br /><br /> document.getElementById('abc').style.background='#'+colorValue;<br /> document.getElementById('abc_text').style.color='#'+reverseColor;<br /> alert(reverseColor);<br /> }<br /><br /> function reverseColorChar(colorChar){<br /> var reverseColorCode=0;<br /> if(colorChar=='0')<br /> reverseColorCode='f'; <br /> else if(colorChar=='1')<br /> reverseColorCode='e';<br /> else if(colorChar=='2')<br /> reverseColorCode='d';<br /> else if(colorChar=='3')<br /> reverseColorCode='c';<br /> else if(colorChar=='4')<br /> reverseColorCode='b';<br /> else if(colorChar=='5')<br /> reverseColorCode='a';<br /> else if(colorChar=='6')<br /> reverseColorCode='9';<br /> else if(colorChar=='7')<br /> reverseColorCode='8';<br /> else if(colorChar=='8')<br /> reverseColorCode='7';<br /> else if(colorChar=='9')<br /> reverseColorCode='6';<br /> else if(colorChar=='a')<br /> reverseColorCode='5';<br /> else if(colorChar=='b')<br /> reverseColorCode='4';<br /> else if(colorChar=='c')<br /> reverseColorCode='3';<br /> else if(colorChar=='d')<br /> reverseColorCode='2';<br /> else if(colorChar=='e')<br /> reverseColorCode='1';<br /> else if(colorChar=='f')<br /> reverseColorCode='0';<br /> return reverseColorCode;<br /> }<br /> <br /><br />&lt; /script><br /><br />&lt; input type="text" id="colorValue" name="colorValue" value=""><br />&lt; input type="button" value="change color" onclick="javascript:changeColor(document.getElementById('colorValue').value)"><br />&lt; div id="abc" style="width:100px;height:100px;border:1px #333 solid;"><br />&lt; span id="abc_text">here is the text</span>&lt; /div><br /></blockquote><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-3919820449226927071?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-82486930834032404832007-06-07T21:08:00.000-07:002007-06-07T21:56:30.114-07:00Another milestone is Music SharingDekoh released the beta version of the music application (http://www.dekoh.com/music/index.html) which allows you to organize your music-and stream it to your friends. It makes it convenient for all the music lovers out there to share music from their desktop.<br />What strikes me most is that once i have imported the music i can access it from any mobile device which is connected through internet. Its like having your own radio station. My friends can listen the music from my desktop anytime.... anywhere which i have shared for them. However the internet speed is the only bottleneck at this point of time but on my 128kbps broadband connection it works decently well.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-8248693083403240483?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1172553827949103882007-02-26T21:13:00.000-08:002007-02-26T21:23:48.223-08:00dekoh unleashedLast few months have been pretty exiting and hectic for me to work on the new web application platform called '<a href="http://www.dekoh.com">Dekoh</a>'. Its an interesting concept of web sharing where the digital objects like photos, videos, audio etc can be shared without getting worried about the uploading them.<br />The interface have been developed in Ajax, DWR, flash ..... best of web interaction technologies around this time.<br />The exciting part is that soon it will become open source where we will find many developers would join hands to take the platform to the next level.<br /><br />Go through the <a href="http://www.dekoh.com/blog/index.jsp">blogging site</a> to learn more.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-117255382794910388?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1152095473131241192006-07-05T03:30:00.000-07:002006-07-05T03:33:45.886-07:00Eye TrackingEver wondered why eye tracking is important to the user studies? here are few of the links which explains<br /><br /><a href="http://www.etre.com/">http://www.etre.com/</a><br /><a href="http://www.uie.com/brainsparks/2006/06/13/eyetracking-worth-the-expense/">http://www.uie.com/brainsparks/2006/06/13/eyetracking-worth-the-expense/</a><br /><a href="http://www.uie.com/articles/eye_tracking_benefits/">http://www.uie.com/articles/eye_tracking_benefits/</a><br /><br /><a href="http://www.uxmatters.com/MT/archives/000040.php">http://www.uxmatters.com/MT/archives/000040.php</a><br /><a href="http://www.poynterextra.org/eyetrack2004/main.htm">http://www.poynterextra.org/eyetrack2004/main.htm</a><br /><a href="http://www.poynter.org/content/content_view.asp?id=69884">http://www.poynter.org/content/content_view.asp?id=69884</a><br /><a href="http://www.upassoc.org/upa_publications/jus/2006_may/bojko_eye_tracking.html">http://www.upassoc.org/upa_publications/jus/2006_may/bojko_eye_tracking.html</a><br /><a href="http://experiencedynamics.blogs.com/site_search_usability/2004/12/eyetracking_stu.html">http://experiencedynamics.blogs.com/site_search_usability/2004/12/eyetracking_stu.html</a><br /><a href="http://blogs.zdnet.com/BTL/?p=2776">http://blogs.zdnet.com/BTL/?p=2776</a><br /><a href="http://psychology.wichita.edu/surl/usabilitynews/72/eyetracking.htm">http://psychology.wichita.edu/surl/usabilitynews/72/eyetracking.htm</a><br /><a href="http://psychology.wichita.edu/surl/usabilitynews/71/eye_tracking.html">http://psychology.wichita.edu/surl/usabilitynews/71/eye_tracking.html</a><br /><a href="http://www.useit.com/alertbox/newsletters.html">http://www.useit.com/alertbox/newsletters.html</a><br /><a href="http://www.useit.com/alertbox/video.html">http://www.useit.com/alertbox/video.html</a><br /><br />enjoy<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-115209547313124119?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com2tag:blogger.com,1999:blog-13561994.post-1150948003535871942006-06-21T20:37:00.000-07:002006-06-21T20:46:43.933-07:00BarCamp Hyderabad #2: On Mobile Apps & Infrastructure in the next gen internetAfter the phenomenal success of first BarCamp on Web 2.0, the <a href="http://barcamp.org/BarCampHyderabad2">2nd BarCamp Hyderabad </a>is scheduled for 15th July 2006. Topic is "On Mobile Apps & Infrastructure in the next gen internet". This BarCamp will host some interesting presentations on:<br /><ul><li>Gaming </li><li>Mobile phone apps </li><li>Extended Enterprise </li><li>Mobile+Web2.0 </li><li>Mo-so-so (Mobile based communities)</li></ul><p>Be there....</p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-115094800353587194?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1150179038886906922006-06-12T23:00:00.000-07:002006-06-12T23:10:39.196-07:00Mobile UI guidelinesAdding few of the mobile UI guideline resources<br /><br />A User Interface Designer’s Guide to J2ME and MIDP2<br />(<a href="http://www.littlespringsdesign.com/design/j2meinfo/">http://www.littlespringsdesign.com/design/j2meinfo/</a>)<br /><br /><br />W3C Mobile Web best practices<br />(<a href="http://www.w3.org/TR/mobile-bp/">http://www.w3.org/TR/mobile-bp/</a>)<br /><br />Nokia guidelines<br />(<a href="http://www.forum.nokia.com/main/1,,200,00.html?topic=Usability">http://www.forum.nokia.com/main/1,,200,00.html?topic=Usability</a>)<br /><br />MIDP 2.0 Style Guide for the Java(tm) Platform, Micro Edition (Bloch/ Wagner): (<a href="http://java.sun.com/docs/books/midp/">http://java.sun.com/docs/books/midp/</a>)<br /><br /><br />Serco's Usability Guidelines<br />(<a href="http://www.serco.com/Images/GPS%20In-car%20Navigation%20Systems%20Guidelines_tcm3-5192.pdf">http://www.serco.com/Images/GPS%20In-car%20Navigation%20Systems%20Guidelines_tcm3-5192.pdf</a>)<br /><br /><br />Notes from Bell Canada seminar on Location Based Services<br />(<a href="http://farm.tucows.com/blog/Platforms/Mobile/_archives/2006/2/2/1741517.html">http://farm.tucows.com/blog/Platforms/Mobile/_archives/2006/2/2/1741517.html</a>)<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-115017903888690692?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com2tag:blogger.com,1999:blog-13561994.post-1148879892674522212006-05-28T22:17:00.000-07:002006-05-28T22:18:12.990-07:00Web 2.0 application in .netSome of the .net applications based on the .net technologies<br />Writely: <a href="http://www.writely.com">http://www.writely.com</a><br />Component art: <a href="http://www.componentart.com">http://www.componentart.com</a><br />imeem: <a href="http://www.imeem.com/">http://www.imeem.com/</a><br />Mono: <a href="http://www.mono-project.com/">http://www.mono-project.com/</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114887989267452221?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1147924376938401772006-05-17T20:46:00.000-07:002006-05-17T20:52:56.953-07:00Usability ToolkitWhen you are ready for the usability tests, here is what can help you....<br /><br />The Usability Toolkit is a collection of forms, checklists and other useful documents for conducting usability tests and user interviews.<br /><a href="http://stcsig.org/usability/resources/toolkit/toolkit.html">http://stcsig.org/usability/resources/toolkit/toolkit.html</a><br /><br /><br />Recruiting Users as Participants in Usability Studies, Nielsen/ Norman Group.<br /><a href="http://www.nngroup.com/reports/tips/recruiting/">http://www.nngroup.com/reports/tips/recruiting/</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114792437693840177?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1147237640539132682006-05-09T22:06:00.000-07:002006-05-09T22:07:45.976-07:00Common Industry Format for usability test reportsThe CIF is now available from ISO: ISO/IEC 25062: Software engineering -- Software product Quality Requirements and Evaluation (SQuaRE) -- Common Industry Format (CIF) for usability test reports<br /><br />You can find the CIF at the following link:<br /><br /><a title="blocked::http://www.iso.ch/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=" href="http://www.iso.ch/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=43046&ICS1=35&amp;ICS2=80&ICS3" ics1="35&amp;ICS2=">http://www.iso.ch/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=43046&ICS1=35&amp;ICS2=80&amp;ICS3</a>=<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114723764053913268?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1144568169070198982006-04-09T00:30:00.000-07:002006-04-09T00:36:09.090-07:00BarCamp HyderabadbarCamp Finished with the marathon of presentations which went till 9:00 pm yesterday. It was nice to see old pals from pramati and progress making presentations. Cordys made their mark with their presentation on the UI. Impressive stuff....<br />You can find the event reports on the page http://barcamp.org/BarCampHyderabadPostMortem.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114456816907019898?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com1tag:blogger.com,1999:blog-13561994.post-1144408170462541882006-04-07T04:00:00.000-07:002006-04-07T04:11:06.206-07:00Barcamp Hyderabad & Web 2.0I will be making a presentation on "User experience- parallels in tangible interfaces &amp; Web 2.0" at BarCamp event at Hyderabad on Apr 08,2006. This is a (Un)Conference on Web 2.0 and Next Generation Internet Architectures (details:<a href="http://barcamp.org/BarCampHyderabad">http://barcamp.org/BarCampHyderabad</a>), where many presenters will be talking about the Web2.0 and how it is changing the web space.<br /><br />My invitation to all who are in the Hyberabad to come and join the event at IIIT Campus. see you there.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114440817046254188?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1144211193934450172006-04-04T21:15:00.000-07:002006-04-04T21:26:33.946-07:00Persona developmentIt is becoming very important to identify the target users in many of the organizations since the understanding of the users (and not the super users) have helped them to clearly define the exact goals of the product. Here are some of the reads for the persona development<br /><br />Persona at SAP<br /><a href="http://www.sapdesignguild.org/index.asp?b=/philosophy/User_Experience/cooper.html&t=/philosophy/philosophy_topnav.asp">http://www.sapdesignguild.org/index.asp?b=/philosophy/User_Experience/cooper.html&amp;t=/philosophy/philosophy_topnav.asp</a><br /><br />Steve Mulder's presentation "Bringing more science to persona creation" at the IA Summit<br /><a href="http://www.iasummit.org/2006/conferencedescrip.htm">http://www.iasummit.org/2006/conferencedescrip.htm#14</a><br /><br />Robert Reinmann’s excerpt from Dan Saffer’s book – <a href="http://www.designingforinteraction.com/reimann.html">http://www.designingforinteraction.com/reimann.html</a><br /><br />IDEO – MIT Media Lab on wearable computers<br /><a href="http://www.ideo.com/mit/index.html">http://www.ideo.com/mit/index.html</a><br /><br />Cooper’s:<br /><a href="http://www.cooper.com/content/why_cooper/powerful_personas.asp">http://www.cooper.com/content/why_cooper/powerful_personas.asp</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114421119393445017?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1144124117091811842006-04-03T21:09:00.000-07:002006-04-03T21:15:17.116-07:00RFIDRFID is slowly becoming an integral part of the warehousing. There are some experimental works done in the field:<br /><br />Timo arnall projects<br /><a href="http://www.nearfield.org">www.nearfield.org</a><br /><br />Chris Noessel paper<br /><a href="http://people.interaction-ivrea.it/c.noessel/RFID/RFID_research.pdf">http://people.interaction-ivrea.it/c.noessel/RFID/RFID_research.pdf</a><br /><br />"RFID Vision in the DOD Supply Chain" at <a href="http://www.almc.army.mil/ALOG/issues/MayJun05/rfid.html">http://www.almc.army.mil/ALOG/issues/MayJun05/rfid.html</a><br /><br />RFID Resources<br /><a href="http://www.rfidjournal.com/">http://www.rfidjournal.com/</a><br /><a href="http://en.wikipedia.org/wiki/RFID">http://en.wikipedia.org/wiki/RFID</a><br /><a href="http://radiofrequencyidentification.org/">http://radiofrequencyidentification.org/</a><br /><a href="http://www.spychips.com/">http://www.spychips.com/</a><br /><a href="http://ieeexplore.ieee.org/xpl/tocresult.jsp?isnumber=17981&isYear=1999">http://ieeexplore.ieee.org/xpl/tocresult.jsp?isnumber=17981&amp;isYear=1999</a><br /><a href="http://www.comp.hkbu.edu.hk/~eee05/panel/panel_rfid.html">http://www.comp.hkbu.edu.hk/~eee05/panel/panel_rfid.html</a><br /><a href="http://www.rfidgazette.org/">http://www.rfidgazette.org/</a><br /><a href="http://www.rfidnews.org/">http://www.rfidnews.org/</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114412411709181184?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com1tag:blogger.com,1999:blog-13561994.post-1142483203738440352006-03-15T20:23:00.000-08:002006-03-15T20:26:43.750-08:00Tangible InterfacesSome links to the interesting work done in the field<br /><br />Eco -Pods<br /><a href="http://www.tiltool.com/Eco_Pods.htm">http://www.tiltool.com/Eco_Pods.htm</a><br /><br />MIT Tangilbe Media Group<br /><a href="http://tangible.media.mit.edu/">http://tangible.media.mit.edu/</a><br /><br />Some TUI applications...<br /><a href="http://www.ehornecker.de/Tangibles.html">http://www.ehornecker.de/Tangibles.html</a><br /><br />Open Source TUIs<br /><a href="http://www.sonicforms.org/">http://www.sonicforms.org/</a><br /><br />TUIs in biology<br /><a href="http://www.scripps.edu/mb/olson/tangible_models/">http://www.scripps.edu/mb/olson/tangible_models/</a><br /><br />Emerging framework for TUIs<br /><a href="http://tangible.media.mit.edu/content/papers/pdf/ullmer-isj00-tui-framework-pub.pdf">http://tangible.media.mit.edu/content/papers/pdf/ullmer-isj00-tui-framework-pub.pdf</a><br /><br />Thesis - Augmented reality TUIs for CAD design review <a href="http://www.hci.iastate.edu/TRS/THESES/MS-Ronald-Sidharta-2005.doc">http://www.hci.iastate.edu/TRS/THESES/MS-Ronald-Sidharta-2005.doc</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114248320373844035?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com1tag:blogger.com,1999:blog-13561994.post-1142417056553003912006-03-15T02:02:00.000-08:002006-03-15T02:04:16.580-08:00CLI- Command line interfacesSome interesting reads on the command line interfaces<br /><br />In the Beginning was the Command Line<br /><a href="http://www.cryptonomicon.com/beginning.html">http://www.cryptonomicon.com/beginning.html</a><br /><br /><br />about Unix CLI conventions<br /><a href="http://www.catb.org/esr/writings/taoup/html/graphics/taoup.pdf">http://www.catb.org/esr/writings/taoup/html/graphics/taoup.pdf</a><br /><br /><br /><br />Principles and Guidelines in Software User Interface Design-author<br />Deborah Mayhew's<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114241705655300391?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1141880519080531302006-03-08T20:50:00.000-08:002006-03-08T21:01:59.096-08:00Text label & field Alignment in Applications for international audienceWhile designing the applications for international audience, many a times software fails while displaying the text labels (it turncates) or face aligment issues. Here is the Tip for developers<br /><br />The text label should be placed above the textfield/textarea. This will take care of expansion of text label (eg in Chinese, Indic) and alignment(eg Arabic).<br /><span style="color:#3366ff;">example</span><br />==============================================<br /><strong>Name:</strong><br /> ___________<br />[___________]<br /><br />==============================================<br />Here are some of the interesting read on the topic<br /><br />Microsoft Windows XP SP2: Internationalization Best Practices<br /><a href="http://www.bhashaindia.com/MSProducts/XpSp2/Articles/I18NBestPracitces.aspx">http://www.bhashaindia.com/MSProducts/XpSp2/Articles/I18NBestPracitces.aspx</a><br /><br />Localisation and Internationalisation<br /><a href="http://www.issco.unige.ch/projects/ecolore/localisation/Components/White%20Papers/lecture7_handout.pdf">http://www.issco.unige.ch/projects/ecolore/localisation/Components/White%20Papers/lecture7_handout.pdf</a><br /><br />Microsoft PowerPoint - Pan_Asian_Summit1<br /><a href="http://www.panl10n.net/Presentations/Pan_Asian_Summit1.pdf">http://www.panl10n.net/Presentations/Pan_Asian_Summit1.pdf</a><br /><br />The impact of Internationalization on Guidelines Contents and Usage<br /><a href="http://www.isys.ucl.ac.be/bchi/publications/2003/Vanderdonckt-UAHCI2003.pdf">http://www.isys.ucl.ac.be/bchi/publications/2003/Vanderdonckt-UAHCI2003.pdf</a><br /><br />I18n in Software Design, Architecture and Implementation<br /><a href="http://developers.sun.com/dev/gadc/technicalpublications/articles/archi18n.html">http://developers.sun.com/dev/gadc/technicalpublications/articles/archi18n.html</a><br /><br />Case study<br /><a href="http://www.sigchi.org/chi97/proceedings/briefing/jfk.htm#U29">http://www.sigchi.org/chi97/proceedings/briefing/jfk.htm#U29</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-114188051908053130?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1137600779014291332006-01-18T08:01:00.000-08:002006-01-18T08:12:59.030-08:00GUI Design SoftwaresA lot of time UI designers are struggling with the deadlines and don't even have time to test the application. There are quite a few softwares available which can help to make quick and dirty prototype.<br /><br />For web<br /><ul><li><a href="http://www.macromedia.com">Dreamweaver</a></li><li><a href="http://www.axure.com/">Axure</a></li><li><a href="http://dub.washington.edu/denim/">Denim</a></li></ul><p>For Desktop</p><ul><li><a href="http://office.microsoft.com/en-us/default.aspx">Visio</a></li><li><a href="http://www.macromedia.com">Flash</a></li><li><a href="http://www.carettasoftware.com/gdsdownloads.html">GUI Design Studio</a></li></ul><p>I have written an application for developing the web interfaces pretty fast and quick... yet to publish for the community.</p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-113760077901429133?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1132038874239889222005-11-14T23:10:00.000-08:002005-11-14T23:14:34.250-08:00Anthropometric softwaresOpen Ergonomics offers educational versions of its PeopleSize 2000 anthropometry software<br /><a href="http://www.openerg.com/psz.htm">http://www.openerg.com/psz.htm</a><br /><br />Integrated Performance Modelling Environment (IPME) <a href="http://www.maad.com/index.pl/ipme">http://www.maad.com/index.pl/ipme</a> by Micro Analysis & Design<br /><br /><br />Delmia Human (formerly Safework). They may have academic packages to make things a bit more affordable.<br />(<a href="http://www.delmia.com/gallery/pdf/DELMIA_V5Human.pdf">http://www.delmia.com/gallery/pdf/DELMIA_V5Human.pdf</a>)<br /><br />Another leading package is SAMMIE. <br />(<a href="http://www.lboro.ac.uk/departments/cd/research/groups/erg/sammie/samver.htm">http://www.lboro.ac.uk/departments/cd/research/groups/erg/sammie/samver.htm</a>)<br /><br />The Technical University of Delft has a package called ADAPS.<br />(<a href="http://www2.io.tudelft.nl/research/ergonomics/DA/content_14.php">http://www2.io.tudelft.nl/research/ergonomics/DA/content_14.php</a>)<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-113203887423988922?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com0tag:blogger.com,1999:blog-13561994.post-1128672627118714812005-10-07T01:07:00.000-07:002005-10-07T01:10:27.123-07:00Icons resources<u><span style="color:#0000ff;"></span></u><br />Some of the icon design by designers<br /><br />Yegor Gilyov<a href="http://yegor.gilyov.com/eng/"><br />http://yegor.gilyov.com/eng/</a><br /><br />Dmitri Dubrovin<br /><a href="http://www.iconstories.com/">http://www.iconstories.com/</a><br /><br />Jan Koehler<br /><a href="http://www.jankoehler.com">http://www.jankoehler.com</a><br /><br />Yuri Mezentsev<br /><a href="http://www.mezich.ru/">http://www.mezich.ru/</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-112867262711871481?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com1tag:blogger.com,1999:blog-13561994.post-1128313682099736442005-10-02T21:22:00.000-07:002005-10-02T21:28:02.100-07:00Rapid Prototyping (RP) tools for mobile appsSome of the products which generates the code also. Painful.... for the designers but in case you are looking for something that fits ur requirement<br />Kaleido by : <a href="http://www.digitalairways.com/kaleido/sol_servp.asp">http://www.digitalairways.com/kaleido/sol_servp.asp</a><br />Rapid Plus by : <a href="http://www.e-sim.com/home/index-h.htm">http://www.e-sim.com/home/index-h.htm</a><br />Altia -<a href="http://altia.com/">http://altia.com/</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13561994-112831368209973644?l=ixdesign.blogspot.com'/></div>chirpyBirdhttp://www.blogger.com/profile/04736748696148670175noreply@blogger.com