User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T05:47:03Zhttp://stackoverflow.com/feeds/user/20804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/3781/prototyping-a-gui-with-a-customer/340481#3404812Answer by naumlist for Prototyping a GUI with a customernaumlist2008-12-04T12:53:09Z2008-12-04T12:53:09Z<p>I think it is best to start with Paper/Whiteboards/White walls.</p>
<p>Once you have the basic structure, you can move it to Visio with the wireframe stencils (<a href="http://developer.yahoo.com/ypatterns/wireframes/" rel="nofollow">http://developer.yahoo.com/ypatterns/wireframes/</a>) or (<a href="http://nickfinck.com/stencils/" rel="nofollow">http://nickfinck.com/stencils/</a>). </p>
<p>Or you could use Denim (<a href="http://dub.washington.edu:2007/denim/" rel="nofollow">http://dub.washington.edu:2007/denim/</a>) with a tablet PC or Wacom tablets to design the GUI and run it as HTML website.</p>
http://stackoverflow.com/questions/295589/what-program-should-i-use-to-mock-up-guis/340457#3404571Answer by naumlist for What program should I use to mock up GUIs?naumlist2008-12-04T12:38:36Z2008-12-04T12:44:32Z<p>We use <strong>whiteboards/whitewalls</strong> for quick screen/design mockups and then a digital camera to share it on the wiki. Probably the quickest way to get things rolling.</p>
<p>Otherwise, I would recommend getting a TabletPC or a Wacom Tablet to draw it any application. I used <strong>Denim</strong> (<a href="http://dub.washington.edu:2007/denim/" rel="nofollow">http://dub.washington.edu:2007/denim/</a>) which is an excellent tool for mockups. </p>
<p>If you have Visio then you can download the stencils for wireframing. <strong><a href="http://nickfinck.com/stencils/" rel="nofollow">http://nickfinck.com/stencils/</a></strong> and from yahoo <a href="http://developer.yahoo.com/ypatterns/wireframes/" rel="nofollow">http://developer.yahoo.com/ypatterns/wireframes/</a></p>
http://stackoverflow.com/questions/156937/do-you-know-an-alternative-to-balsamiq-mockups/340462#3404622Answer by naumlist for Do you know an alternative to balsamiq mockups?naumlist2008-12-04T12:42:09Z2008-12-04T12:42:09Z<p>As mentioned above, you could use Visio with the stencils for wireframing (<a href="http://nickfinck.com/stencils/" rel="nofollow">http://nickfinck.com/stencils/</a>).</p>
<p>I would also recommend Denim (<a href="http://dub.washington.edu:2007/denim/" rel="nofollow">http://dub.washington.edu:2007/denim/</a>) which is best used with a tablet PC or a <a href="http://www.wacom.com/" rel="nofollow">Wacom Tablet</a>.</p>
http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/340419#3404190Answer by naumlist for Your personal, successful coding practices.naumlist2008-12-04T12:21:32Z2008-12-04T12:21:32Z<p>One thing which I read somewhere is "<strong>Always select the SECOND workable solution for the problem</strong>". </p>
<p>The first solution that you get to most of the time is probably the easiest one but that will come back to bite you in the future.</p>
http://stackoverflow.com/questions/132359/how-is-google-so-fast/257271#2572711Answer by naumlist for How is Google so fast?naumlist2008-11-02T19:52:27Z2008-11-02T19:52:27Z<p>This link it also very informative
<a href="http://blogoscoped.com/archive/2008-07-08-n70.html" rel="nofollow">Behind the scenes of a google query</a></p>
http://stackoverflow.com/questions/201656/is-there-a-net-tool-add-in-available-which-allows-you-to-easily-rearrange-the-or/202367#2023671Answer by naumlist for Is there a .NET Tool/Add-in available which allows you to easily rearrange the order of Regions, Subs, Functions, and Member Variables in a Class?naumlist2008-10-14T18:53:37Z2008-10-14T18:53:37Z<p>Here is an automatic member organisation plugin that will work with <a href="http://www.devexpress.com/Downloads/Visual_Studio_Add-in/DXCore/" rel="nofollow">DXCore</a>. You can also see Mark Miller developing this plugin in dnrTV.</p>
<p><a href="http://dnrtv.com/default.aspx?showID=5" rel="nofollow">http://dnrtv.com/default.aspx?showID=5</a></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/169321#1693216Answer by naumlist for Hidden Features of Visual Studio (2005-2008)?naumlist2008-10-03T23:31:59Z2008-10-03T23:31:59Z<p>To auto-sync current file with Solution Explorer. So don't have to look where the file lives in the project structure</p>
<p>Tools -> Options -> Projects and Solutions -> "Track Active Item in Solution Explorer"</p>
http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/169285#16928545Answer by naumlist for Hidden .NET Base Class Library Classes?naumlist2008-10-03T23:18:54Z2008-10-03T23:18:54Z<p>Getting the list of countries. Useful for populating the drop down box.</p>
<pre><code>foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures
{
RegionInfo ri = new RegionInfo(ci.LCID);
Console.WriteLine(ri.EnglishName);
}
</code></pre>
<p>ref: <a href="http://jdconley.com/blog/archive/2007/09/05/list-of-country-names.aspx#1" rel="nofollow">http://jdconley.com/blog/archive/2007/09/05/list-of-country-names.aspx#1</a></p>
http://stackoverflow.com/questions/166121/net-design-course/166223#1662231Answer by naumlist for .NET design course?naumlist2008-10-03T10:22:55Z2008-10-03T10:22:55Z<p>You could learn that by looking at the real code. One of the things I like doing is to read good open source code. Try looking into NUnit source code which is very well done.</p>