User Steve Steiner - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:25:50Z http://stackoverflow.com/feeds/user/3892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119360/who-are-the-authorative-thinkers-for-each-problem-domain-in-software 13 Who are the authorative thinkers for each 'problem domain' in Software? Steve Steiner 2008-09-23T06:17:50Z 2009-12-07T04:41:02Z <p>Who are the best thinkers in each problem domain? Please provide one domain per answer, and post it wiki editable.</p> <p>Answers should include the resources (papers, books, podcasts, youtube video, blogs, etc.) that support the work those thinkers have done. My hope is voting will float the more coherent domains to the top, and wiki editing will, over time, provide a good set of resources for studying that domain.</p> <p>Here are some examples of what I am thinking (each would be a single answer):</p> <p>Debugging - John Robbins is authorative on debugging on the windows platform. Andreas Zeller for delta debugging, coded DDD, and wrote the great book <a href="http://www.st.cs.uni-sb.de/whyprogramsfail/" rel="nofollow">Why Programs Fail</a>. </p> <p>Social Software - Clay Shirky is incredibly insightful and prolific. His paper <a href="http://www.shirky.com/writings/group_enemy.html" rel="nofollow">A Group is it's own worst enemy</a> changed my mind that social software was an interesting topic. He has many lectures available on youtube.</p> <p>Game Design- Ralph Koster for the book <a href="http://www.theoryoffun.com/" rel="nofollow">A Theory of Fun</a>. Katie Salen and Eric Zimmerman for the book <a href="http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&amp;tid=9802" rel="nofollow">Rules of Play.</a> </p> <p>(Why not just look on wikipedia? Because the real underlying question is to find the interesting problem domains. It's hard to discover a topic you don't know about!)</p> http://stackoverflow.com/questions/311064/are-there-public-key-cryptography-algorithms-that-are-provably-np-hard-to-defeat 8 Are there public key cryptography algorithms that are provably NP-hard to defeat? Steve Steiner 2008-11-22T08:06:20Z 2009-11-15T18:04:46Z <p>Should practical quantum computing become a reality, I am wondering if there are any public key cryptographic algorithms that are based on NP-complete problems, rather than integer factorization or discrete logarithms.</p> <p>Edit:</p> <p>Please check out the "Quantum computing in computational complexity theory" section of <a href="http://en.wikipedia.org/wiki/Quantum_computer" rel="nofollow">the wiki article on quantum computers.</a> It points out that the class of problems quantum computers can answer (BQP) is believed to be strictly easier than NP-complete. </p> <p>Edit 2:</p> <p>'Based on NP-complete' is a bad way of expressing what I'm interested in.</p> <p>What I intended to ask is for a Public Key encryption algorithm with the property that any method for breaking the encryption can also be used to break the underlying NP-complete problem. This means breaking the encryption proves P=NP.</p> http://stackoverflow.com/questions/395527/best-practices-when-should-i-use-elements-and-when-should-i-use-attributes/395678#395678 10 Answer by Steve Steiner for Best practices: When should I use elements and when should I use attributes? Steve Steiner 2008-12-28T01:46:30Z 2009-10-06T07:13:56Z <p>The two examples are not equivalent, because they form different hierarchies. Is a sitemap a list of categories, like the first example? Or is it a list of pages like the second example?</p> <p>The answer to that is orthogonal to the element vs attribute question.</p> <p>On the Element vs Attribute question: Here is your second example transformed to an attribute approach:</p> <pre><code>&lt;sitemap&gt; &lt;page category='Animals' section='Dogs' title='Great Dane' url='/pics/greatdane.jpg' /&gt; &lt;/sitemap&gt; </code></pre> <p>The above and your second case are equivalent. One consideration for choosing one versus the other is based on whether you may modify the schema in the future. Adding an attribute to the url element as in the following example would likely be a backward compatable change. The semantically same modification would be impossible in the attribute approach, as you cannot attach an attribute to an attribute.</p> <pre><code>&lt;sitemap&gt; &lt;page&gt; &lt;category&gt;Animals&lt;/category&gt; &lt;section&gt;Dogs&lt;/section&gt; &lt;title&gt;Great Dane&lt;/title&gt; &lt;url nofollow="true"&gt;/pics/greatdane.jpg&lt;/url&gt; &lt;/page&gt; &lt;/sitemap&gt; </code></pre> http://stackoverflow.com/questions/1217609/iterator-block-generates-try-fault-in-il/1217647#1217647 3 Answer by Steve Steiner for Iterator block generates try-fault in IL Steve Steiner 2009-08-01T22:33:47Z 2009-08-01T22:33:47Z <p>Yes, a Finally block always executes on frame exit. A fault block executes only if an exception is unwound past the frame. The fault block in MoveNext preserves the using semantics for the case of an exception thrown from the try block of the ReadAllLines iterator. Some other mechanism must be in use to preserve the using semantics on normal exit from the iterator.</p> http://stackoverflow.com/questions/1217533/how-do-i-create-a-visual-studio-add-in-to-analyze-code/1217617#1217617 0 Answer by Steve Steiner for How do I create a Visual Studio add in to analyze code Steve Steiner 2009-08-01T22:20:32Z 2009-08-01T22:20:32Z <p>I'd start with the <a href="http://channel9.msdn.com/posts/Peli/The-Common-Compiler-Infrastruture-goes-Open-Source/" rel="nofollow">Common Compiler Infrastructure</a> if you are analyizing code compiled to MSIL.</p> http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/835811#835811 0 Answer by Steve Steiner for Significant new inventions in computing since 1980 Steve Steiner 2009-05-07T16:46:26Z 2009-07-27T15:59:48Z <p>This is a negative result, which is odd as a 'Fundemental innovation', but I think applies since it opened new areas of research, and closed off useless ones.</p> <p>The impossibility of distributive consensus: <a href="http://www.podc.org/influential/2001.html" rel="nofollow">PODC Influential Paper Award: 2001</a> </p> <blockquote> <p>We assumed that the main value of our impossibility result was to close off unproductive lines of research on trying to find fault-tolerant consensus algorithms. But much to our surprise, it opened up entirely new lines of research. There has been analysis of exactly what assumptions about the distributed system model are needed for the impossibility proof. Many related distributed problems to which the proof also applies have been found, together with seemingly similar problems which do have solutions. Eventually a long line of research developed in which primitives were classified based on their ability to implement wait-free fault-tolerant consensus.</p> </blockquote> http://stackoverflow.com/questions/720667/help-data-binding-does-not-work-in-silverlight-on-mac/766470#766470 1 Answer by Steve Steiner for Help! Data binding does not work in Silverlight on Mac Steve Steiner 2009-04-20T00:16:37Z 2009-04-20T00:16:37Z <p>Did you try using <a href="http://msdn.microsoft.com/en-us/library/cc903948%28VS.95%29.aspx" rel="nofollow">remote</a> <a href="http://blogs.msdn.com/ddietric/archive/2008/03/05/setting-up-silverlight-2-remote-debugging-on-mac-os-x.aspx" rel="nofollow">sliverlight</a> <a href="http://www.dnknormark.net/post/Windows-Vista-Mac-debugging-a-Silverlight-app-using-Visual-Studio-2008.aspx" rel="nofollow">debugging</a> to the mac? I'd expect getting the debugger setup and turning on 1st chance exceptions has a good shot at showing you the problem.</p> http://stackoverflow.com/questions/393492/any-real-world-experience-debugging-a-production-functional-program 9 Any real world experience debugging a production functional program? Steve Steiner 2008-12-26T04:59:29Z 2009-04-10T17:16:24Z <p>I'm interested in what tools and methods are used for diagnosing flaws in large scale functional programs. What tools are useful? My current understanding is that 'printf' debugging (e.g. add logging and redeploy) is what is typically used. </p> <p>If you've done debugging of a functional system what was different about it then debugging a system built with an OO or procedural language?</p> http://stackoverflow.com/questions/602066/why-doesnt-c-have-support-for-first-pass-exception-filtering/621407#621407 2 Answer by Steve Steiner for Why doesn't C# have support for first pass exception filtering? Steve Steiner 2009-03-07T06:07:08Z 2009-03-07T06:07:08Z <p>Using <a href="http://code.msdn.microsoft.com/ExceptionFilterInjct" rel="nofollow">Exception Filter Inject</a> may be simpler than using the delegate workaround.</p> <p>For a real answer to your question you will need a response from Anders Hejlsberg, or someone who was in the original design meetings. You might try seeing if you can get it asked by the Channel 9 interviewer next time <a href="http://channel9.msdn.com/posts/Charles/C-40-Meet-the-Design-Team/" rel="nofollow">the C# design team is interviewed</a>.</p> <p>I'd guess that when the original decision was made, exception filters were seen as an unnecessary complication that might do more harm than good. You can certainly see a desire to remain 'silent' about unproven features in this interview about the decision not to support checked exceptions: <a href="http://www.artima.com/intv/handcuffsP.html" rel="nofollow">The Trouble with Checked Exceptions </a>. </p> <p>I think the postmoterm diagnostic scenarios argue strongly for providing access to exception filters in the language. However those scenarios may not have been articulated at the time. Also those scenarios really need proper tooling support, which certainly wasn't available in V1. Finally there may be big negatives about adding this feature that we are not considering. </p> <p>If there isn't a connect bug on this you should enter one and encourage others to vote it up. [I'd recommend asking for access to the CLR feature rather than attempting to design how it fits in the language.]</p> http://stackoverflow.com/questions/589338/slow-debugging-issue-in-visual-studio/621259#621259 0 Answer by Steve Steiner for Slow debugging issue in Visual Studio Steve Steiner 2009-03-07T03:40:13Z 2009-03-07T03:40:13Z <p>Go to tools/options/debugger/symbols and check if you have public symbols set or UNC network paths set. Also check tools/options/debugger/general to see if you have source server set. </p> <p>All of these can affect debugging based on slow network speed or unavailable servers. The 5 minute wait time is network timeouts.</p> <p>If nothing in options is set, check to see if you have the _NT_SYMBOL_PATH environment variable set. </p> http://stackoverflow.com/questions/578469/error-compiling-program-in-visual-studio-2008/609047#609047 3 Answer by Steve Steiner for Error Compiling Program in Visual Studio 2008 Steve Steiner 2009-03-04T02:28:04Z 2009-03-04T02:28:04Z <p>Just FYI ... that looks like a CLR HRESULT (the 13 in the middle indicates that). Acording to this blog post:<a href="http://blogs.msdn.com/eldar/archive/2007/04/03/a-lot-of-hresult-codes.aspx" rel="nofollow">A lot of HRESULT codes...</a> That specific HRESULT is SECURITY_E_INCOMPATIBLE_SHARE 0x80131401 -2146233343 </p> <p>Most likely some errant process is holding an open handle on the assembly and preventing the compiler from laying down a new one. Given update #3 that process is probably devenv.exe ... which is unhelpful in narrowing it down, however it could be some background process which shuts down with VS (such as the debugger hosting process). </p> <p>Assuming something is holding on the file ... to debug this type of thing the first step is to open procexp.exe from <a href="http://technet.microsoft.com/en-us/sysinternals/default.aspx" rel="nofollow">SysInternals</a> toolset. In it you can use Find to determine which process has a handle open to the file. I'd expect it to show a handle open within devenv.exe when you hit this issue.</p> <p>From within procexp you can do the highly dangerous thing of closing the handle. After that try the steps again without shutting down. If the problem doesn't repro then you know the handle you closed was the cause of the problem. If anything else happens well ... that 'highly dangerous' step was likely the cause.</p> <p>If you know what process has the open handle then you need to see if you can prevent it from hitting the apparent leak of the handle. I would check the project settings ... including the debug ones for anything that copies the files. If there is a debugger setting called VSHosting process ... turn that off.</p> <p>Good luck.</p> http://stackoverflow.com/questions/599762/finding-a-function-in-a-disassembly/605378#605378 1 Answer by Steve Steiner for Finding a function in a disassembly. Steve Steiner 2009-03-03T06:49:57Z 2009-03-03T06:49:57Z <p>A RVA is a relocatable virtual address. To find the real address in the process space you need to know the base address where the module was loaded in the process. Add that base address to the RVA and you have the real address. I haven't used ollydbg but I'd be astounded if it didn't supply the base address for the modules loaded in the process to which it was attached. If for some reason it doesn't supply that info, you can get it by using procexp.exe from the sysinternal tools.</p> http://stackoverflow.com/questions/254093/best-practices-on-answering-dogfood-excuses 9 Best practices on answering dogfood excuses Steve Steiner 2008-10-31T16:24:02Z 2009-02-26T14:16:37Z <p>Dogfooding is using your own software while it is being developed. Sometimes it is impossible to simple use it at all (e.g. software for fighter pilots.) More often it is possible to dogfood, but it doesn't happen anyway. </p> <p>A couple of "Our users won't experience that problem so it can't be a dogfooding bug," and quickly the practicalities of dogfooding go down so far no one does it.</p> <p>What are the best practices about getting dogfooding to actually happen?</p> http://stackoverflow.com/questions/250576/break-whenever-a-file-or-class-is-entered/559709#559709 2 Answer by Steve Steiner for break whenever a file (or class) is entered Steve Steiner 2009-02-18T03:19:01Z 2009-02-18T03:19:01Z <p>This feature is implemented in VS for native C++. crtl-B and specify the 'function' as "Classname::*", this sets a breakpoint at the beginning of every method on the class. The breakpoints set are grouped together in the breakpoints window (ctrl-alt-B) so they can be enabled, disabled, and removed as a group. </p> <p>Sadly the macro is likely the best bet for managed code. </p> http://stackoverflow.com/questions/329733/what-open-computer-science-problem-should-remain-unsolved 5 What open computer science problem should remain unsolved? Steve Steiner 2008-12-01T01:11:35Z 2009-01-19T23:03:19Z <p>Oppenheimer and the bomb are often invoked to illustrate the limits of what science and technology should do (rather than what it can do). Are there a computer science or programming problems that deserve a similar level of moral reflection before they are solved?</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456118#456118 2 Answer by Steve Steiner for How do you stop yourself from refactoring working but awful code? Steve Steiner 2009-01-18T23:27:47Z 2009-01-18T23:27:47Z <p>"Refactoring existing code that works" - This is obviously a minority opinion here, but this is a complete waste of time. It is good you are attempting to restrain yourself.</p> <p>If you think the code is so bad, <strong>find a non-trivial bug in it before you refactor it</strong>. Then add an automated test for that bug. Only then allow yourself to refactor.</p> <p>The attitude that after refactoring working code "I've left the code better" is often programmer <strong>hubris</strong>. In many cases you don't really know you left the code better, you just believe you did. If you didn't even fix a bug or add functionality why take the risk of being wrong?</p> http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/433457#433457 12 Answer by Steve Steiner for Significant new inventions in computing since 1980 Steve Steiner 2009-01-11T19:15:12Z 2009-01-11T19:21:12Z <p>The use of <strong>Physics in Human Computer interaction</strong> to provide an alternative, understandable metaphor. This combined with gestures and haptics will likely result in a replacment for the current common GUI metaphor invented in the 70's and in common use since the mid to late 80's. </p> <p>The computing power wasn't present in 1980 to make that possible. I believe <a href="http://www.gamasutra.com/view/feature/2798/physics_in_games_a_new_gameplay_.php" rel="nofollow">Games</a> likely led the way here. An example can easily be seen in the interaction of list scrolling in the iPod Touch/iPhone. The interaction mechanism relies on the intuition of how momentum and friction work in the real world to provide a simple way to scroll a list of items, and the usability relies on the physical gesture that cause the scroll.</p> http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/433396#433396 9 Answer by Steve Steiner for Significant new inventions in computing since 1980 Steve Steiner 2009-01-11T18:41:07Z 2009-01-11T18:41:07Z <p>Ideas around <strong>Social Computing</strong> have had advances since the 1980. <a href="http://en.wikipedia.org/wiki/The_WELL" rel="nofollow">The Well</a> started in 1985. While I'm sure there were online communities before, I believe some of the true insights in the area have happened post 1980. The adverse dynamic aspects of social communities and their interaction on a software system are much like the disasters of the <a href="http://en.wikipedia.org/wiki/Tacoma_Bridge" rel="nofollow">Tacoma Narrows Bridge</a>. </p> <p>I think <a href="http://www.shirky.com/" rel="nofollow"><strong>Clay Shirky's</strong></a> work in the area illuminates those effects and how to mitigate them. I'd say interesting real world examples of social software insights include things like <a href="http://en.wikipedia.org/wiki/ReCAPTCHA" rel="nofollow">reCAPTCHA</a> and <a href="http://en.wikipedia.org" rel="nofollow">Wikipedia</a>, where significant valuable work is done by the participants mediated by the software.</p> http://stackoverflow.com/questions/411756/win32-graphical-debugger-that-supports-symbol-server/412223#412223 2 Answer by Steve Steiner for Win32: Graphical debugger that supports symbol server? Steve Steiner 2009-01-05T03:49:16Z 2009-01-05T03:49:16Z <p>The <a href="http://www.microsoft.com/express/vc/" rel="nofollow">Visual Studio C++ Express</a> addition supports both managed (.Net) and native (Win32) debugging. It has support for symbol server.</p> http://stackoverflow.com/questions/2187/essential-programming-tools/36998#36998 5 Answer by Steve Steiner for Essential Programming Tools Steve Steiner 2008-08-31T17:59:08Z 2009-01-04T18:52:11Z <p><a href="http://technet.microsoft.com/en-us/sysinternals/bb545027.aspx" rel="nofollow"><strong>Procexp</strong> and <strong>Procmon</strong></a> are critical sysinternals tools for diagnosing tricky configuration problems with assemblies, dlls, registry entries, and the file system. If you are a windows dev and the sysinternal tools are not part of your toolbox and you are cheating yourself.</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9aeaa970-f281-4fb0-aba1-d59d7ed09772&amp;DisplayLang=en" rel="nofollow"><strong>Fxcop</strong></a> for managed code and <a href="http://www.microsoft.com/whdc/devtools/tools/prefast.mspx" rel="nofollow"><strong>Prefast</strong></a> for VC++ code (particularly with SAL annotations) are incredibly helpful for setting a standard code quality bar and keeping it across a team. If your app requires it this can be critical for writing secure code.</p> <p><strong>VMware</strong> and <strong>Hyper-V</strong> are incredibly useful for setting up and isolating difficult bugs.</p> <p>Obviously the <strong>VS debugger</strong> (disclosure .. I worked on the vs debugger). With the VS debugger there are <strong>data visualizers</strong> that can be incredibly helpful for specifc tasks. Josh Smith's <a href="http://www.codeproject.com/KB/macros/MoleForVisualStudioEdit.aspx" rel="nofollow"><strong>"Mole"</strong></a> for debugging WPF is a good example and I believe there is a 3rd party visualizer for datasets that is much better then the default one.</p> <p>For deep debugging of the clr you need to use <a href="http://msdn.microsoft.com/en-us/library/bb190764.aspx" rel="nofollow"><strong>SOS</strong></a>, which has support in VS, but is often used from windbg.</p> <p>For trapping production problems and debugging offline you should implement <a href="http://msdn.microsoft.com/en-us/library/ms680369.aspx" rel="nofollow"><strong>minidump support</strong></a> in your app.</p> http://stackoverflow.com/questions/409955/best-practice-for-debug-asserts-during-unit-testing 5 Best practice for debug Asserts during Unit testing Steve Steiner 2009-01-03T22:01:03Z 2009-01-04T17:39:01Z <p>Does heavy use of unit tests discourage the use of debug asserts? It seems like a debug assert firing in the code under test implies the unit test shouldn't exist or the debug assert shouldn't exist. "There can be only one" seems like a reasonable principle. Is this the common practice? Or do you disable your debug asserts when unit testing, so they can be around for integration testing?</p> <p>Edit: I updated 'Assert' to debug assert to distinguish an assert in the code under test from the lines in the unit test that check state after the test has run. </p> <p>Also here is an example that I believe shows the dilema: A unit test passes invalid inputs for a protected function that asserts it's inputs are valid. Should the unit test not exist? It's not a public function. Perhaps checking the inputs would kill perf? Or should the assert not exist? The function is protected not private so it should be checking it's inputs for safety. </p> http://stackoverflow.com/questions/262612/what-are-the-tipping-points-for-team-size-vs-process-overhead 8 What are the tipping points for team size vs process overhead? Steve Steiner 2008-11-04T17:29:38Z 2009-01-04T16:58:01Z <p>At what point in a team's growth must process change drastically? A lone coder can get away with source control and a brain. A team trying to ship large prepackaged software to local and international markets must have a bit more in place. </p> <p>If you've experienced a large transition in 'process': Was the team's process successfully changed with the current members or was the team itself mostly replaced by the time the process change came? What were the important aspects that changed, were some unnecessary?</p> http://stackoverflow.com/questions/410502/win32-file-name-comparison/410598#410598 2 Answer by Steve Steiner for Win32 File Name Comparison Steve Steiner 2009-01-04T07:14:49Z 2009-01-04T07:14:49Z <p><a href="http://blogs.msdn.com/greggm/archive/2005/09/21/472453.aspx" rel="nofollow">Comparing file names in native code</a> and <a href="http://blogs.msdn.com/greggm/archive/2005/09/22/472905.aspx" rel="nofollow">Don't compare filenames</a> are a couple of good blog posts on this topic. The first has C/C++ code for OrdinalIgnoreCaseCompareStrings, and the second tells you how that doesn't always work for filenames and what to do to mitigate that.</p> http://stackoverflow.com/questions/195455/how-do-i-access-imetadataemit-and-other-metadata-com-interfaces-from-c-or-f/410040#410040 1 Answer by Steve Steiner for How do I access IMetaDataEmit and other MetaData COM interfaces from C# or F#? Steve Steiner 2009-01-03T22:50:54Z 2009-01-03T22:50:54Z <p>I hope you found the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=38449a42-6b7a-4e28-80ce-c55645ab1310&amp;displaylang=en" rel="nofollow">mdbg sample</a> which includes source code for wrapping exactly the interfaces you need.</p> http://stackoverflow.com/questions/409563/best-practices-for-exception-management-in-java-or-c/409884#409884 1 Answer by Steve Steiner for Best practices for exception management in JAVA or C# Steve Steiner 2009-01-03T21:30:17Z 2009-01-03T21:40:59Z <p>If you are going to use the code pattern in your example, call it TryDoSomething, and catch only specific exceptions. </p> <p>Also <strong>consider using an <a href="http://blogs.msdn.com/greggm/archive/2008/04/21/exception-filter-inject.aspx" rel="nofollow">Exception Filter</a></strong> when logging exceptions for diagnostic purposes. VB has language support for Exception filters. The link to Greggm's blog has an implementation that can be used from C#. Exception filters have better properties for debuggability over catch and rethrow. Specifically you can log the problem in the filter and let the exception continue to propagate. That method allows an attaching a JIT (Just in Time) debugger to have the full original stack. A rethrow cuts the stack off at the point it was rethrown.</p> <p>The cases where TryXXXX makes sense are when you are wrapping a third party function that throws in cases that are not truly exceptional, or are simple difficult to test without calling the function. An example would be something like:</p> <pre><code>// throws NumberNotHexidecimalException int ParseHexidecimal(string numberToParse); bool TryParseHexidecimal(string numberToParse, out int parsedInt) { try { parsedInt = ParseHexidecimal(numberToParse); return true; } catch(NumberNotHexidecimalException ex) { parsedInt = 0; return false; } catch(Exception ex) { // Implement the error policy for unexpected exceptions: // log a callstack, assert if a debugger is attached etc. LogRetailAssert(ex); // rethrow the exception // The downside is that a JIT debugger will have the next // line as the place that threw the exception, rather than // the original location further down the stack. throw; // A better practice is to use an exception filter here. // see the link to Exception Filter Inject above // http://code.msdn.microsoft.com/ExceptionFilterInjct } } </code></pre> <p>Whether you use a pattern like TryXXX or not is more of a style question. The question of catching all exceptions and swallowing them is not a style issue. Make sure unexpected exceptions are allowed to propagate!</p> http://stackoverflow.com/questions/395144/what-should-be-considered-when-deciding-between-explicit-vs-implicit-paging-in-a 1 What should be considered when deciding between explicit vs implicit paging in a UI? Steve Steiner 2008-12-27T16:43:47Z 2008-12-30T18:05:56Z <p>When a list becomes <strong>very large</strong>, presenting it in a UI raises a design issue. Should the user get pages of items or should the user get a list control that pages items implicitly as it is scrolled? </p> <p>In google search, paging of results is explicit. You get a set of results and hit a link to get the next set. On the iPhone the application names in the app store are implicitly paged. In that case scrolling causes them to load. The inbox in Outlook is implicitly paged, but the inbox in Outlook Web Access is explicitly paged. </p> <p>What factors should be considered when when making this UI design decision?</p> <p>Edit: The term <strong>very large</strong> is subject to some interpretation.<br /> To give some structure consider these different cases:</p> <p>Case A: The list: 1. May grow over time. 2. Has at least 2 Billion items.</p> <p>Case B: The list: 1. May grow over time. 2. Has thousands of items.</p> <p>I'd claim case A and B are qualitatively different, though I'm certainly open to being shown that I'm wrong.</p> http://stackoverflow.com/questions/398811/finding-long-repeated-substrings-in-a-massive-string/398889#398889 0 Answer by Steve Steiner for finding long repeated substrings in a massive string Steve Steiner 2008-12-29T22:20:52Z 2008-12-29T22:20:52Z <p>Can you solve your problem by building a <a href="http://en.wikipedia.org/wiki/Suffix_array" rel="nofollow">suffix array</a> instead? Otherwise you'll likely need to use one of the disk-based suffix trees mentioned in the other answers.</p> http://stackoverflow.com/questions/398696/how-to-determine-the-memory-layout-of-a-process-in-windows/398744#398744 5 Answer by Steve Steiner for How to determine the memory layout of a process in Windows? Steve Steiner 2008-12-29T21:34:10Z 2008-12-29T21:34:10Z <p><a href="http://msdn.microsoft.com/en-us/library/aa366907(VS.85).aspx" rel="nofollow">VirtualQueryEx</a> is likely the function you want.</p> http://stackoverflow.com/questions/396101/remote-debugging-in-visual-studio-vs2008-windows-forms-application/396452#396452 2 Answer by Steve Steiner for Remote Debugging in Visual Studio (VS2008), Windows Forms Application Steve Steiner 2008-12-28T17:47:27Z 2008-12-29T17:45:05Z <p>Gregg Miskely has a <a href="http://blogs.msdn.com/greggm/archive/2008/05/15/visual-studio-remote-debugger-service-user-account-requirements.aspx" rel="nofollow">blog post</a> on why the service account needs to have admin privileges (when set up that way). One of the points is that the user account, in your case the user on the Test machine, must have privileges for connecting back to the other computer. It sounds like you are hitting a case where the account mydomain\user1 has insufficient privileges to connect to your development computer.</p> <p>If that doesn't help perusing Gregg's blog posts, sending him mail could help.</p> http://stackoverflow.com/questions/396507/how-do-you-describe-what-you-do-to-nontechnical-folks-who-ask 5 How do you describe what you do to nontechnical folks who ask? [closed] Steve Steiner 2008-12-28T18:44:15Z 2008-12-29T01:43:23Z <h2>Exact Duplicate of: <a href="http://stackoverflow.com/questions/6988/how-can-i-explain-to-a-non-technical-person-what-i-do-for-a-living">http://stackoverflow.com/questions/6988/how-can-i-explain-to-a-non-technical-person-what-i-do-for-a-living</a></h2> <p><hr /></p> <p>I vacillate between annoyance at the question and trying to come up with a good metaphor or simile. Since I work on debuggers: "I'm like the guy that makes the tools that your mechanic uses to figure out what's wrong with your car." </p> <p>I am not very satisfied with my current attempt and would love to hear what others do.</p> http://stackoverflow.com/questions/311064/are-there-public-key-cryptography-algorithms-that-are-provably-np-hard-to-defeat/1738283#1738283 Comment by Steve Steiner on Are there public key cryptography algorithms that are provably NP-hard to defeat? Steve Steiner 2009-11-29T20:13:51Z 2009-11-29T20:13:51Z Ah ha! ... and on closer reading the paper that published the attack also published a fix! I hope somone with edit capablity can fix McElise-&gt; McEliece in the original answer. This means there is a proposed encryption scheme that meets the parameters with no currently known successful attacks. http://stackoverflow.com/questions/234906/whats-the-purpose-of-the-nop-opcode Comment by Steve Steiner on What's the purpose of the nop opcode? Steve Steiner 2009-11-29T19:57:38Z 2009-11-29T19:57:38Z There is mass confusion in these answers between the MSIL nop instruction emitted by the language compiler into the assembly and the x86 nop instructions (on that platform) emitted by the JIT compiler when the assembly is run. [In fact the accepted answer is about x86 nops, and has no relation to MSIL.] Ideally this question should get split into 2 different questions: purpose of MSIL::nop? and purpose of native platform nop? http://stackoverflow.com/questions/234906/whats-the-purpose-of-the-nop-opcode/234943#234943 Comment by Steve Steiner on What's the purpose of the nop opcode? Steve Steiner 2009-11-29T19:49:54Z 2009-11-29T19:49:54Z I implemented the debugger support in VS for Edit and continue (I did not implement the CLR or compiler parts). Nops are part of the story to ensure correct mappings from old to new version of a method (specifically in the cases of jumps out of exeception handling code). However, replacing the MSIL is done on a whole function basis. For CLR managed code it is not necessary to 'leave room' in the msil to accomplish that part. What you say here is correct with respect to native Edit and continue. http://stackoverflow.com/questions/311064/are-there-public-key-cryptography-algorithms-that-are-provably-np-hard-to-defeat/1738283#1738283 Comment by Steve Steiner on Are there public key cryptography algorithms that are provably NP-hard to defeat? Steve Steiner 2009-11-29T19:28:07Z 2009-11-29T19:28:07Z Hmmm: Search &quot;McEliece&quot;. <a href="http://en.wikipedia.org/wiki/McEliece_cryptosystem" rel="nofollow">en.wikipedia.org/wiki/McEliece_cryptosystem/&hellip;</a> and it looks like it was cracked w/o a Quantum computer: <a href="http://www.scientificblogging.com/news_releases/researchers_crack_mceliece_encryption_future_it_even_starts" rel="nofollow">scientificblogging.com/news_releases/&hellip;</a> This defintely seems to indicate it is still an open research topic. http://stackoverflow.com/questions/395144/what-should-be-considered-when-deciding-between-explicit-vs-implicit-paging-in-a/395150#395150 Comment by Steve Steiner on What should be considered when deciding between explicit vs implicit paging in a UI? Steve Steiner 2009-08-01T23:21:17Z 2009-08-01T23:21:17Z I should note that Outlook Web access updated to use an infinite scroll. So OWA is no longer the counter example it once was :-) http://stackoverflow.com/questions/310788/why-does-microsoft-visual-c-2008-express-edition-debugger-randomly-exit Comment by Steve Steiner on Why does Microsoft Visual C# 2008 Express Edition debugger randomly exit? Steve Steiner 2009-04-20T00:47:48Z 2009-04-20T00:47:48Z You should consider accepting the answer that points out there is a KB article with the hotfix for this problem. http://stackoverflow.com/questions/578469/error-compiling-program-in-visual-studio-2008/609047#609047 Comment by Steve Steiner on Error Compiling Program in Visual Studio 2008 Steve Steiner 2009-03-05T05:51:00Z 2009-03-05T05:51:00Z Something written to the suo file could be triggering a leaked handled on restart. [Or my theory on the cause could just be wrong.] I hope trying this out lead to something helpful. http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/433396#433396 Comment by Steve Steiner on Significant new inventions in computing since 1980 Steve Steiner 2009-02-16T02:31:25Z 2009-02-16T02:31:25Z One could also go back to Vannevar Bush and Memex. Vannevar's work doesn't negate Engelbart's. I doubt anything can be truly said to be without precedent. http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455280#455280 Comment by Steve Steiner on How do you stop yourself from refactoring working but awful code? Steve Steiner 2009-01-18T23:32:05Z 2009-01-18T23:32:05Z &quot;It should still work&quot;: it worked before! Is the code really better if the code went from ugly and working to beatiful and should be working. http://stackoverflow.com/questions/410005/accessing-com-interface-from-c-or-c-in-windows-environment/410019#410019 Comment by Steve Steiner on Accessing COM interface from C or C++ in Windows environment Steve Steiner 2009-01-03T22:48:19Z 2009-01-03T22:48:19Z While kenny may not have answered what was asked, he did give an answer to the underlying problem, which is often more valuable. http://stackoverflow.com/questions/409955/best-practice-for-debug-asserts-during-unit-testing Comment by Steve Steiner on Best practice for debug Asserts during Unit testing Steve Steiner 2009-01-03T22:42:41Z 2009-01-03T22:42:41Z By assert I mean an assert in the code under test not the assertion at the end of the unit test. I believe that is the point you wish clarified rather than 'language'. If it is still unclear let me know. http://stackoverflow.com/questions/409955/best-practice-for-debug-asserts-during-unit-testing/409974#409974 Comment by Steve Steiner on Best practice for debug Asserts during Unit testing Steve Steiner 2009-01-03T22:40:26Z 2009-01-03T22:40:26Z By assert in the original question I meant the kind you call &quot;programming by contract&quot;. I've attempted to clarify the issue in the questions. http://stackoverflow.com/questions/395144/what-should-be-considered-when-deciding-between-explicit-vs-implicit-paging-in-a/400223#400223 Comment by Steve Steiner on What should be considered when deciding between explicit vs implicit paging in a UI? Steve Steiner 2008-12-30T17:53:54Z 2008-12-30T17:53:54Z Use google to seach for 'scrollbar'. You'll see there are 3,780,000 items. Is your claim above that Google would be more usable if it presented a scrollable list of all 3,780,000 items? E.g. Google's current UX is simply an artifact of implementation rather than intentional? http://stackoverflow.com/questions/396935/visual-studio-attach-to-process/396941#396941 Comment by Steve Steiner on Visual Studio Attach to Process Steve Steiner 2008-12-29T07:32:19Z 2008-12-29T07:32:19Z The top level Debug menu item doesn't exist until a project is open. And yes that too is just silly. http://stackoverflow.com/questions/396507/how-do-you-describe-what-you-do-to-nontechnical-folks-who-ask Comment by Steve Steiner on How do you describe what you do to nontechnical folks who ask? Steve Steiner 2008-12-28T21:13:07Z 2008-12-28T21:13:07Z @Brent, did Federico fix the title already? If not I am unsure what you are asking for.