User Nescio - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:10:14Z http://stackoverflow.com/feeds/user/14484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1820452/how-can-i-generate-this-pattern-of-numbers 3 How can I generate this pattern of numbers? Nescio 2009-11-30T15:22:54Z 2009-12-01T00:50:33Z <p>Given inputs 1-32 how can I generate the below output?</p> <p>in. out</p> <ol> <li>1</li> <li>1</li> <li>1</li> <li>1</li> <li>2</li> <li>2</li> <li>2</li> <li>2</li> <li>1</li> <li>1</li> <li>1</li> <li>1</li> <li>2</li> <li>2</li> <li>2</li> <li>2 ...</li> </ol> <p><strong>Edit</strong> Not Homework.. just lack of sleep.</p> <p>I am working in C#, but I was looking for a language agnostic algorithm.</p> <p><strong>Edit 2</strong> To provide a bit more background... I have an array of 32 items that represents a two dimensional checkerboard. I needed the last part of this algorithm to convert between the vector and the graph, where the index aligns on the black squares on the checkerboard. </p> <p>Final Code:</p> <pre><code> --Index; int row = Index / 4; int col = 2 * Index - (((Index &amp; 0x04) &gt;&gt; 2 == 1) ? 2 : 1); </code></pre> http://stackoverflow.com/questions/1787079/do-you-actually-remember-all-of-the-different-ways-to-progam-via-many-apis/1787109#1787109 2 Answer by Nescio for Do you actually remember all of the different ways to progam via many API's Nescio 2009-11-24T00:47:28Z 2009-11-24T00:47:28Z <p>When you're in a job interview it is best to write pseudocode. It is more valuable to demonstrate your ability to solve the problem, than your ability to remember some specific API's nomenclature. Of course you should be able to recite the actual syntax if you are requested to, but usually your technique is more important than a language's implementation.</p> http://stackoverflow.com/questions/1783529/java-massive-message-processing-with-queue-manager-trading/1783606#1783606 1 Answer by Nescio for Java, Massive message processing with queue manager (trading) Nescio 2009-11-23T14:53:10Z 2009-11-23T14:53:10Z <p>While it is now showing it's age, <a href="http://rads.stackoverflow.com/amzn/click/1590595645" rel="nofollow">Practical .NET for Financial Markets</a> demonstrates some of the universal concepts you should consider when developing a financial trading system. Athough it is geared toward .Net, you should be able to translate the general concepts to Java.</p> http://stackoverflow.com/questions/1676181/skip-microsoft-word-2007-grammar-check-for-code/1676255#1676255 2 Answer by Nescio for Skip Microsoft Word 2007 grammar check for code Nescio 2009-11-04T20:02:27Z 2009-11-18T14:06:55Z <ol> <li><p>Select the text that you want the spelling and grammar checker to ignore. </p></li> <li><p>On the Review tab, in the Proofing group, click Set Language. </p></li> <li><p>Select the Do not check spelling or grammar check box. </p></li> </ol> <p>You can also create a special style that is based on the selected text:</p> <ol> <li><p>Right-click the selection, and then click Save Selection as a New Quick Style on the Styles shortcut menu. </p></li> <li><p>Give the style a name — for example, code — and then click OK.</p></li> </ol> http://stackoverflow.com/questions/1687756/how-to-write-formula-in-excel-for-my-requirement/1687885#1687885 2 Answer by Nescio for How to write formula in Excel for my requirement Nescio 2009-11-06T14:16:10Z 2009-11-06T14:16:10Z <pre><code> =IF(A5="a",1, IF(A5="b",2, IF(A5="c",3, IF(A5="d",4, IF(A5="e",5,"Enter Correct Letter"))))) </code></pre> http://stackoverflow.com/questions/1652897/how-do-i-compare-the-fields-properties-between-pocos/1652911#1652911 0 Answer by Nescio for How do I compare the fields/properties between POCOs? Nescio 2009-10-31T00:10:03Z 2009-10-31T00:15:40Z <p>If you are not worried about performance, you could use reflection in a utility function to iterate over each field and compare their values.</p> <pre><code>using System; using System.Reflection; public static class ObjectHelper&lt;t&gt; { public static int Compare(T x, T y) { Type type = typeof(T); var publicBinding = BindingFlags.DeclaredOnly | BindingFlags.Public; PropertyInfo[] properties = type.GetProperties(publicBinding); FieldInfo[] fields = type.GetFields(publicBinding); int compareValue = 0; foreach (PropertyInfo property in properties) { IComparable valx = property.GetValue(x, null) as IComparable; if (valx == null) continue; object valy = property.GetValue(y, null); compareValue = valx.CompareTo(valy); if (compareValue != 0) return compareValue; } foreach (FieldInfo field in fields) { IComparable valx = field.GetValue(x) as IComparable; if (valx == null) continue; object valy = field.GetValue(y); compareValue = valx.CompareTo(valy); if (compareValue != 0) return compareValue; } return compareValue; } } </code></pre> http://stackoverflow.com/questions/1614026/is-there-a-keyboard-shortcut-for-generate-stub-in-vs-2010 0 Is there a keyboard shortcut for 'Generate stub' in VS 2010? Nescio 2009-10-23T14:57:29Z 2009-10-23T14:59:30Z <p>As the title states, is there a keyboard shortcut for 'Generate stub' in VS 2010?</p> http://stackoverflow.com/questions/1604993/how-to-stop-visual-studio-debugger-from-stepping-into-assembly/1604998#1604998 0 Answer by Nescio for How to stop visual studio debugger from stepping into assembly? Nescio 2009-10-22T04:18:49Z 2009-10-22T04:18:49Z <p>Do you have access to the source?</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx" rel="nofollow">DebuggerStepThroughAttribute</a></p> http://stackoverflow.com/questions/1597964/what-is-this-menu-style-called 4 What is this menu style called? Nescio 2009-10-20T23:46:10Z 2009-10-21T00:20:42Z <p>I am trying to style a menu that has a static height and the content is displayed between the headers. (Please see below image. ...the right side is the view after a user clicks on Header 2)</p> <p>What is this menu style called? How can I accomplish this with jQuery?</p> <p><img src="http://i37.tinypic.com/25ztrsx.png" alt="accordion menu" /></p> <p><strong>Edit:</strong> Thanks! I searched for accordion before asking, but I was unable to find any examples where the menu's height stays static regardless of the content.</p> <p><strong>Edit 2:</strong> This is the behavior I was looking for: <a href="http://www.cssplay.co.uk/menus/vertical-concertina.html" rel="nofollow">Vertical concertina menu</a> Thanks @ricebowl for providing the link. </p> http://stackoverflow.com/questions/1597671/how-to-see-the-url-of-a-source-code-of-a-website/1597702#1597702 3 Answer by Nescio for How to see the URL of a source code of a website? Nescio 2009-10-20T22:34:04Z 2009-10-20T22:34:04Z <p><a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.allowautoredirect.aspx" rel="nofollow">AllowAutoRedirect</a> = false;</p> http://stackoverflow.com/questions/1585675/how-do-i-code-this-layout-on-my-webpage 3 How do I code this layout on my webpage? Nescio 2009-10-18T18:35:59Z 2009-10-18T19:36:08Z <p>What code should I use to layout my webpage as listed in this pic?</p> <p><img src="http://i33.tinypic.com/246vs5j.jpg" alt="Layout" /></p> <p><strong>Edit:</strong> Unfortunately, this is not homework - I am just a web newb!! Thanks!</p> http://stackoverflow.com/questions/1581863/how-to-scroll-to-an-element-after-expanding-with-slidetoggle 0 How to scroll to an element after expanding with slideToggle? Nescio 2009-10-17T09:57:16Z 2009-10-17T17:31:00Z <p>scrollTo is not scrolling to a div that expands past the bottom of the page... any suggestions? (jQuery 1.3, scrollTo 1.42)</p> <pre><code>function toggleCollapsible(ownerDiv) { ownerDiv.next(".Collapsible").slideToggle("fast", $.scrollTo(ownerDiv, "slow")); } </code></pre> http://stackoverflow.com/questions/1570112/how-can-i-replace-a-value-within-a-sql-select-which-returns-multiple-rows 0 How can I replace a value within a Sql Select which returns multiple rows? Nescio 2009-10-15T03:18:12Z 2009-10-15T03:25:40Z <p>I have a table that has default values in a few columns. When I run a stored procedure to select the data for display I want to replace the default values with display friendly values.</p> <p>How can I replace the default values before returning from the stored procedure?</p> http://stackoverflow.com/questions/1547697/in-and-not-in-counts-do-not-add-up-whats-wrong/1547718#1547718 6 Answer by Nescio for 'in' and 'not in' counts do not add up - what's wrong? Nescio 2009-10-10T11:32:01Z 2009-10-11T15:52:10Z <p>Do you have any Nulls in your columns?</p> http://stackoverflow.com/questions/1547595/c-remove-multiple-char-types-from-end-of-string/1547626#1547626 1 Answer by Nescio for C# Remove multiple char types from end of string Nescio 2009-10-10T10:46:36Z 2009-10-10T11:00:01Z <p>I hate to make assumptions, but I will because it seems you want preserve the "gaps" until you get to the end, in which case you should use TrimEnd. If not, then use any one of the other options to avoid adding the empty values in the first place.</p> <p>More precisely if your output could look like:</p> <blockquote> <p>asd, aaa, qwe, 123123, , , somevalue , ,</p> </blockquote> <p>Then you'll have to loop through and use TrimEnd.</p> <p>Otherwise, if you can collapse the fields then exclude the empties upfront.</p> <blockquote> <p>asd, aaa, qwe, 123123, somevalue</p> </blockquote> http://stackoverflow.com/questions/1501338/what-advantages-can-i-get-from-learning-c-if-im-mainly-a-c-programmer/1501360#1501360 2 Answer by Nescio for What advantages can I get from learning C++ if I'm mainly a C# Programmer? Nescio 2009-10-01T00:40:59Z 2009-10-01T00:40:59Z <p>With every programming language you're able grow your vision of the landscape and apply lessons learned. Although I have never written a production C++ application, it was very educational for me to understand the system at that level. If you have the spare time, dive in! You may also want to explore unsafe C# code. It could help you understand many of the advanced capabilities of C++.</p> http://stackoverflow.com/questions/1482234/hashset-iterating-while-removing-items-in-c/1482246#1482246 1 Answer by Nescio for HashSet Iterating While Removing Items in C# Nescio 2009-09-26T21:40:23Z 2009-09-26T21:40:23Z <p>Usually when I want to iterate over something and remove values I use:</p> <pre><code> For (index = last to first) If(ShouldRemove(index)) Then Remove(index) </code></pre> http://stackoverflow.com/questions/1475316/how-do-you-ensure-code-is-reused-correctly 5 How do you ensure code is reused correctly? Nescio 2009-09-25T03:40:34Z 2009-09-25T15:41:56Z <p>Frequently when we introduce a new feature into an application we may produce artifacts, such as useful methods or classes that could be reused in other areas of our applications. These artifacts are not necessarily documented as functional requirements as they are usually a side-effect of our implementation choices. Since we often develop in teams, it is important to share these pieces of code to prevent rework and duplication. </p> <p>Examples:</p> <ul> <li>Utility methods and classes </li> <li>A Base class </li> <li>An Interface </li> <li>A GUI control</li> </ul> <p>What have you found to be the most effective way of sharing these artifacts?</p> <p>How do you convey the assumptions you made when you created them?</p> <p>How do you ensure they are consumed correctly?</p> <p>I am interested in best practices and proven techniques around documentation, code diagrams, meetings(?) to ensure code is reused correctly.</p> <p>This question is very similar to: <a href="http://stackoverflow.com/questions/869364/finding-reusable-code">http://stackoverflow.com/questions/869364/finding-reusable-code</a> but I'm interested in a more proactive than reactive approach.</p> http://stackoverflow.com/questions/1424763/appending-data-to-a-null-character-in-character-array-to-send-data-through-socket/1424802#1424802 3 Answer by Nescio for Appending data to a null character in character array to send data through socket Nescio 2009-09-15T02:13:39Z 2009-09-15T02:13:39Z <p>If you want to avoid the Null termination, then you must stop treating your data as a string. strcpy is meant to copy only null-terminated strings. It is implemented to copy every byte until it encounters a #0. memcpy can copy any memory location. It is not bound by a null-terminated string. Since memcpy cannot determine the size of the data to be copied, you must provide that information. Additionally, you should not use strlen, as it is bound by the same termination rules.</p> http://stackoverflow.com/questions/1412998/add-files-to-an-already-setup-svn-repo/1415619#1415619 1 Answer by Nescio for Add files to an already setup svn repo Nescio 2009-09-12T17:13:19Z 2009-09-12T17:13:19Z <pre><code>svn import path URL </code></pre> <p>Recursively commits a copy of path to URL. If path is omitted the current directory is assumed. Parent directories are created as necessary in the repository.</p> http://stackoverflow.com/questions/89437/what-is-the-best-way-to-find-questions-to-old-answers 4 What is the best way to find questions to old answers? [closed] Nescio 2008-09-18T02:20:04Z 2009-09-03T18:36:21Z <p>Dyslexic I am not. <br> I just want to know the best way to find previous questions that may answer mine (on SO).<br> I try to search but I tend to get too many irrelevant results. <br> What's your best method for researching a SO topic, before posting a question? <br></p> http://stackoverflow.com/questions/256370/please-help-with-fatal-clr-error-80004005 1 Please help with Fatal CLR Error 80004005 Nescio 2008-11-02T01:29:36Z 2009-07-27T19:50:21Z <p>Today, everytime I try to open any .Net application I get:</p> <blockquote> <p>CLR error: 80004005 <br> The program will now terminate.</p> </blockquote> <p>Any suggestions?!</p> http://stackoverflow.com/questions/1137897/vb-net-enum-tostring-returns-an-unknown-number/1137990#1137990 0 Answer by Nescio for VB.Net Enum ToString returns an unknown number Nescio 2009-07-16T14:26:12Z 2009-07-16T14:26:12Z <p>That enum is not marked with the FlagsAttribute and therefore should not be or'd together because the result could overlap. You are better off creating your own enum to contain the values you are looking for.</p> http://stackoverflow.com/questions/1137781/c-correct-way-to-load-assembly-find-class-and-call-run-method/1137886#1137886 2 Answer by Nescio for C# - Correct Way to Load Assembly, Find Class and Call Run() Method Nescio 2009-07-16T14:11:45Z 2009-07-16T14:11:45Z <p><a href="http://www.codeproject.com/KB/cs/DynLoadClassInvokeMethod.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/DynLoadClassInvokeMethod.aspx</a></p> http://stackoverflow.com/questions/1137353/how-to-use-try-catch-around-an-activity-in-workflow/1137393#1137393 1 Answer by Nescio for How to use try catch around an activity in workflow? Nescio 2009-07-16T12:56:16Z 2009-07-16T12:56:16Z <p>Try adding a FaultHandler activity. There is a container for all fault handlers you add. Each handler is bound to a workflow that executes as soon as the exception is caught. After adding the FaultHandler activity you define the type of the exception to catch. </p> http://stackoverflow.com/questions/1137083/c-how-do-i-select-a-list-box-item-when-i-have-the-value-name-in-a-string/1137108#1137108 4 Answer by Nescio for c# How do I select a list box item when I have the value name in a string? Nescio 2009-07-16T12:07:37Z 2009-07-16T12:07:37Z <pre><code>int index = listBox1.FindString("item3"); // Determine if a valid index is returned. Select the item if it is valid. if (index != -1) listBox1.SetSelected(index,true); </code></pre> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/98612#98612 13 Answer by Nescio for Favorite Visual Studio keyboard shortcuts Nescio 2008-09-19T01:23:44Z 2009-03-11T02:23:27Z <p><kbd>Ctrl</kbd>+<kbd>K</kbd><em>,</em> <kbd>Ctrl</kbd>+<kbd>D</kbd> // Auto-(Re)Format<br></p> <p>See Also: <a href="http://stackoverflow.com/questions/26452/visual-studio-2005-shortcuts#36666">Answer</a></p> http://stackoverflow.com/questions/568383/can-i-query-the-parameters-and-selected-column-names-from-a-stored-procedure 1 Can I query the parameters and "selected" column names from a stored procedure? Nescio 2009-02-20T05:17:52Z 2009-03-04T00:18:49Z <p>I am trying to write a custom code generator that can parse stored procedures. I wrote a few regex, but they don't seem to work all the time. I do have access to the database; does a system query exist that will return the required parameters and possible return values? I have played around with sp_depends, but it does not seem to include parameters. Are there any other system procs that may be useful for this? ...am I attempting this the wrong way?</p> http://stackoverflow.com/questions/600051/horizontally-scroll-a-text-based-console-program/600055#600055 0 Answer by Nescio for Horizontally scroll a text-based/console program Nescio 2009-03-01T16:36:45Z 2009-03-01T16:36:45Z <p>Scroll lock?</p> http://stackoverflow.com/questions/599669/what-is-the-most-efficient-read-time-string-search-method-c/599679#599679 0 Answer by Nescio for What is the most efficient (read time) string search method? (C#) Nescio 2009-03-01T11:40:02Z 2009-03-01T12:57:20Z <p>You could use a regex; it’s optimized for this kind of searching and manipulation.</p> <p>You could also try IndexOf ... </p> <pre><code>string result = string.Empty; if (startPos &gt;= response.Length) return result; int startingIndex = response.IndexOf(startMatchString, startPos); int rightOfStartIndex = startingIndex + startMatchString.Length; if (startingIndex &gt; -1 &amp;&amp; rightOfStartIndex &lt; response.Length) { int endingIndex = response.IndexOf(endMatchString, rightOfStartIndex); if (endingIndex &gt; -1) result = response.Substring(rightOfStartIndex, endingIndex - rightOfStartIndex); } return result; </code></pre> http://stackoverflow.com/questions/1820452/how-can-i-generate-this-pattern-of-numbers/1820524#1820524 Comment by Nescio on How can I generate this pattern of numbers? Nescio 2009-11-30T15:40:47Z 2009-11-30T15:40:47Z This is nice, but I need the values as part of a larger calculation. http://stackoverflow.com/questions/1820452/how-can-i-generate-this-pattern-of-numbers/1820510#1820510 Comment by Nescio on How can I generate this pattern of numbers? Nescio 2009-11-30T15:35:36Z 2009-11-30T15:35:36Z Excellent, thanks! http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764325#1764325 Comment by Nescio on What are the biggest potential time wasters in development? Nescio 2009-11-21T01:37:14Z 2009-11-21T01:37:14Z I wish I could +2 http://stackoverflow.com/questions/230989/what-is-caps-lock-good-for/231008#231008 Comment by Nescio on What is Caps Lock good for? Nescio 2009-11-16T15:40:04Z 2009-11-16T15:40:04Z A sad side-note: my new laptop doesn't have any indicator lights for Caps Lock or Num lock, and doesn't support scroll lock at all; now, I don't know what I'll do! (Dell Studio 17) http://stackoverflow.com/questions/1737322/how-to-limit-the-service-access-in-wcf-to-a-set-of-windows-accounts/1737343#1737343 Comment by Nescio on How to limit the service access in WCF to a set of windows accounts? Nescio 2009-11-15T12:33:36Z 2009-11-15T12:33:36Z The PrincipalPermissionAttribute can be added to either a class or method. If added to a class, then every method in the class is authorized. http://stackoverflow.com/questions/1729455/int-tryparse-null-if-not-numeric/1729469#1729469 Comment by Nescio on int.TryParse = null if not numeric? Nescio 2009-11-13T18:16:00Z 2009-11-13T18:16:00Z +1 for standing your ground and leaving it here as an example of what not to do. http://stackoverflow.com/questions/1728670/is-there-a-linq-operation-to-retrieve-specific-items-from-a-list-of-items-where-t Comment by Nescio on Is there a Linq operation to retrieve specific items from a list of items where the item has a property value for a property which should be unique? Nescio 2009-11-13T12:27:15Z 2009-11-13T12:27:15Z It seems you have a bug in your original loop. It should read: if (customObject != innerCustomObject &amp;&amp; ...) http://stackoverflow.com/questions/1728670/is-there-a-linq-operation-to-retrieve-specific-items-from-a-list-of-items-where-t/1728691#1728691 Comment by Nescio on Is there a Linq operation to retrieve specific items from a list of items where the item has a property value for a property which should be unique? Nescio 2009-11-13T12:22:50Z 2009-11-13T12:22:50Z This will only return the Names of the duplicates. http://stackoverflow.com/questions/1677516/c-int-parse-issue-with-leading-zeros/1677522#1677522 Comment by Nescio on C# int.parse issue with leading zeros Nescio 2009-11-05T00:08:49Z 2009-11-05T00:08:49Z Convert.ToInt16 and Convert.ToInt64, is actually a static wrapper method for the int.Parse method. It can be slower than int.Parse if the surrounding code is equivalent. http://stackoverflow.com/questions/1652897/how-do-i-compare-the-fields-properties-between-pocos/1652911#1652911 Comment by Nescio on How do I compare the fields/properties between POCOs? Nescio 2009-10-31T01:53:05Z 2009-10-31T01:53:05Z The BindingFlags allow you to access any combination of fields, public or private or static, etc. I am sorry my defaults were not valid for you, but I'm glad you figured it out! http://stackoverflow.com/questions/1614026/is-there-a-keyboard-shortcut-for-generate-stub-in-vs-2010/1614042#1614042 Comment by Nescio on Is there a keyboard shortcut for 'Generate stub' in VS 2010? Nescio 2009-10-23T15:06:47Z 2009-10-23T15:06:47Z I was unable to get M to work, but at least I can use Ctrl+. to get to the menu without the mouse. Ctrl+.,Enter - Thanks! http://stackoverflow.com/questions/1597964/what-is-this-menu-style-called/1597984#1597984 Comment by Nescio on What is this menu style called? Nescio 2009-10-21T00:11:44Z 2009-10-21T00:11:44Z Thanks for the link! I found exactly what I wanted. http://stackoverflow.com/questions/1596283/co-worker-pushing-for-a-scary-and-smelly-software-solution-need-help/1596364#1596364 Comment by Nescio on Co-Worker pushing for a scary and smelly software solution, need help! Nescio 2009-10-20T18:11:13Z 2009-10-20T18:11:13Z yes, my point exactly! http://stackoverflow.com/questions/1585675/how-do-i-code-this-layout-on-my-webpage/1585692#1585692 Comment by Nescio on How do I code this layout on my webpage? Nescio 2009-10-20T02:40:04Z 2009-10-20T02:40:04Z Thanks for answering my follow-up, even after I deleted it!! I wish I could accept this answer again. :) http://stackoverflow.com/questions/1592149/cannot-select-grid-element-through-jquery Comment by Nescio on Cannot select grid element through jQuery Nescio 2009-10-20T02:28:50Z 2009-10-20T02:28:50Z +1 for learning new things!