User Jimmy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:32:00Z http://stackoverflow.com/feeds/user/4435 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100/1909583#1909583 6 Answer by Jimmy for Regular expression where part of string must be number between 0-100 Jimmy 2009-12-15T18:57:05Z 2009-12-15T19:03:36Z <p>With the standard 'this-is-not-a-particularly-regexy-problem' caveat,</p> <pre><code>[0-7]\d{4}|8[0-5]\d{3}|86[0-3]\d{2}|86400 </code></pre> http://stackoverflow.com/questions/1884682/an-exercise-map-or-reduce-a-map-in-python-without-list-comprehensions/1884714#1884714 1 Answer by Jimmy for An Exercise: map or reduce a map in Python without list comprehensions? Jimmy 2009-12-10T23:03:35Z 2009-12-10T23:13:18Z <p>your 3 examples do 3 different things.</p> <p>your original is the same as</p> <pre><code>fun0(map(lambda x:fun1(fun2(fun3(x))), [arg1,arg2,arg3,arg4]) </code></pre> <p>your second example, if you absolutely want a functional form, is probably something like</p> <pre><code>fun0(map(apply, itertools.product([fun1,fun2,fun3],[arg1,arg2,arg3,arg4]))) </code></pre> http://stackoverflow.com/questions/1884222/algorithm-to-swim-like-a-fish-in-c/1884249#1884249 3 Answer by Jimmy for Algorithm to swim like a fish in c# Jimmy 2009-12-10T21:40:55Z 2009-12-10T21:40:55Z <p>one classic flocking simulation you could take a look at would be <a href="http://www.red3d.com/cwr/boids/" rel="nofollow">Boids</a></p> http://stackoverflow.com/questions/1878008/c-how-to-print-objects-in-an-array-using-for-foreach/1878020#1878020 2 Answer by Jimmy for C# - How to print objects in an array using for/foreach? Jimmy 2009-12-10T01:04:24Z 2009-12-10T03:11:35Z <p>I'm a little confused. Perhaps you're also a little confused.</p> <pre><code>while ((worker = Employee.ReadFromFile(employeeDataReader)) != null) { employeeInfo[j] = worker; j++; } </code></pre> <p>this code (hopefully) creates a series of Employees. At some point in Employee.ReadFromFile, an Employee constructor is called. the constructed employee gets stuck in an array</p> <pre><code>foreach (Employee person in employeeInfo) { person.Print(); // method that prints out information of each object of the employee class } </code></pre> <p>in this code, person is only null if worker in the previous loop was null (which your boundary condition prevents). you don't need to call any more constructors, because you're just pulling out previously-contructed Employees from your array. </p> <p><hr></p> <p><b>EDIT</b> SLaks' answer is getting downvoted, so I'll just point out his comment to the question: the length of your array is probably greater than the number of Employee's you are reading in. This accounts for the nulls. Using <code>List&lt;Employee&gt;</code>, if that is an option, for employeeInfo would avoid this issue.</p> http://stackoverflow.com/questions/1878260/tackling-the-8-puzzle-problem-via-bfs/1878284#1878284 2 Answer by Jimmy for Tackling the 8-puzzle problem via BFS Jimmy 2009-12-10T02:25:46Z 2009-12-10T02:25:46Z <p>this is pretty much a template for any BFS search</p> <pre><code>function next_boards(board) yields a set of reachable in one move from the current board queue = [start_board] while true: current = queue.pop() if current = goal: break queue.push for all next_boards(current) </code></pre> <p>note we're not doing anything fancy like checking for cycles or anything. if we were, change queue to a stack, and you get DFS.</p> http://stackoverflow.com/questions/1849232/sorting-by-two-columns-with-linq-edited-forget-it-ill-post-the-answer-to-mak/1849284#1849284 2 Answer by Jimmy for Sorting by two columns with LINQ (Edited). Forget it! I'll post the answer to make things clear. Jimmy 2009-12-04T19:55:55Z 2009-12-04T20:15:33Z <p>It's not clear what you're asking for:</p> <p>1) you don't want any pair that is dominated by another pair. <br/> 2) you don't want items where val1 is at maximum but val2 could be higher, and vice versa. </p> <p>1 implies that you want some pair on the upper edge of the set. <br/> 2 simply means you discard the two endpoints. </p> <p>this still leaves any possible number of choices</p> <p><img src="http://img341.imageshack.us/img341/1720/chartgn.png" alt="alt text"></p> <p>In the above graph, there are 2 points that are strictly dominated, and so you disqualify them. There are two points that satisfy (X is maximum but Y can increase, or vice versa) so you disqualify those as well. That still leaves two points that satisfy (Neither x nor Y can increase without lowering the other one)</p> <p>In fact (as also pointed out by Jason in comments), looking at your original data, (10,3) also satisfies (neither val1 nor val2 can be increased without lowering the other)</p> http://stackoverflow.com/questions/1849334/is-there-a-way-to-get-the-number-of-places-after-the-decimal-point-in-a-java-doub/1849357#1849357 0 Answer by Jimmy for Is there a way to get the number of places after the decimal point in a java double? Jimmy 2009-12-04T20:09:40Z 2009-12-04T20:09:40Z <p>if you're stuck with a double, convert to a string and count the number of characters after the decimal point. I think there is some magic involved that displays numbers like 1.99999999998 as "2"</p> http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript/1841943#1841943 0 Answer by Jimmy for How to Avoid Global Variables in Javascript Jimmy 2009-12-03T18:34:18Z 2009-12-03T18:34:18Z <p>some things are going to be in the global namespace -- namely, whatever function you're calling from your inline javascript. </p> <p>In general, the solution wrap everything in a closure:</p> <pre><code>(function() { var uploadCount = 0; function startupload() { ... } document.getElementById('postHere').onload = function() { uploadCount ++; if (uploadCount &gt; 1) startUpload(); }; })(); </code></pre> <p>and avoid the inline handler.</p> http://stackoverflow.com/questions/1841800/how-can-i-make-a-hover-info-bubble-appear-on-mouseover-in-wpf/1841821#1841821 1 Answer by Jimmy for How can I make a hover info bubble appear on mouseover in WPF? Jimmy 2009-12-03T18:16:40Z 2009-12-03T18:16:40Z <p><a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.tooltip.aspx" rel="nofollow">Tooltip property</a></p> http://stackoverflow.com/questions/378498/can-i-reflector-the-net-base-class-libraries-bcl 1 Can I Reflector the .NET Base Class Libraries (BCL)? Jimmy 2008-12-18T17:03:29Z 2009-11-28T12:32:27Z <p><a href="http://msdn.microsoft.com/en-us/netframework/aa569603.aspx" rel="nofollow">BCL</a></p> <p>Specifically, am I breaking the EULA by doing this? </p> http://stackoverflow.com/questions/1800790/munging-non-printable-characters-to-dots-using-string-translate/1800879#1800879 1 Answer by Jimmy for Munging non-printable characters to dots using string.translate() Jimmy 2009-11-26T00:19:01Z 2009-11-26T00:19:01Z <p>for actual code-golf, I imagine you'd avoid string.maketrans entirely</p> <pre><code>s=set(string.printable[:-5]) newstring = ''.join(x for x in oldstring if x in s else '.') </code></pre> <p>or</p> <pre><code>newstring=re.sub('[^'+string.printable[:-5]+']','',oldstring) </code></pre> http://stackoverflow.com/questions/1793607/how-to-copy-a-list-to-a-new-list-or-retrieve-list-by-value-in-c/1793652#1793652 2 Answer by Jimmy for how to copy a list to a new list, or retrieve list by value in c# Jimmy 2009-11-24T23:21:39Z 2009-11-24T23:21:39Z <blockquote> <p>I want to retrieve the list by value to be able to remove items before displaying them,</p> </blockquote> <pre><code>var newlist = oldList.Where(&lt;specify condition here&gt;).ToList(); </code></pre> http://stackoverflow.com/questions/1793154/make-dictionary-from-2-list/1793167#1793167 0 Answer by Jimmy for Make Dictionary From 2 List Jimmy 2009-11-24T21:51:25Z 2009-11-24T21:51:25Z <p>should be something like</p> <pre><code>dict(zip(a,b)) </code></pre> http://stackoverflow.com/questions/1786890/c-why-cant-a-uint32-be-unboxed-as-uint64/1786909#1786909 3 Answer by Jimmy for C# why can't a UInt32 be unboxed as UInt64? Jimmy 2009-11-23T23:53:36Z 2009-11-23T23:53:36Z <pre><code> case TypeCode.Int32: RunSignedVersion((int) o); break; case TypeCode.Int64: long n = (long) o; RunSignedVersion(n); break; </code></pre> <p>the reason you can't unbox as int is because unboxing and casting are two different operations that happen to share the same operator.</p> http://stackoverflow.com/questions/1786522/how-different-are-the-semantics-between-python-and-javascript/1786753#1786753 3 Answer by Jimmy for How different are the semantics between Python and JavaScript? Jimmy 2009-11-23T23:19:03Z 2009-11-23T23:19:03Z <p>In python, "self" is explicitly passed to a member function, and is not a special keyword or anything. In javascript, "this" is dynamically scoped. you can fiddle with the scope of a member function by calling apply() on it.</p> http://stackoverflow.com/questions/1786094/is-it-ever-reasonable-to-nest-java-inner-classes-more-than-one-level-deep/1786681#1786681 0 Answer by Jimmy for Is it ever reasonable to nest Java inner classes more than one level deep? Jimmy 2009-11-23T23:04:20Z 2009-11-23T23:04:20Z <p>If you're generating code from some data, nested classes can be a good way of avoiding name collisions.</p> http://stackoverflow.com/questions/1786647/a-simple-lisp-question/1786671#1786671 2 Answer by Jimmy for A simple Lisp question Jimmy 2009-11-23T23:02:01Z 2009-11-23T23:02:01Z <p>this is what cons does: it takes two values and pairs them.</p> <p>this is what <code> (lambda (x y) (cons x y)) </code>does: it takes two values and pairs them.</p> http://stackoverflow.com/questions/1771510/why-does-this-if-statement-return-false/1771539#1771539 3 Answer by Jimmy for Why does this IF statement return false? Jimmy 2009-11-20T16:12:45Z 2009-11-20T17:15:52Z <p>You want || instead of &amp;&amp;.</p> http://stackoverflow.com/questions/1719776/euler-26-how-to-convert-rational-number-to-string-with-better-precision/1719806#1719806 4 Answer by Jimmy for Euler #26, how to convert rational number to string with better precision? Jimmy 2009-11-12T04:04:13Z 2009-11-12T04:37:09Z <p>You could multiply the numerator by a large 10^N and stick with arbitrary-precision integers.</p> <p><b>EDIT</b></p> <p>i mean:</p> <pre><code>&gt; def digits(a,b,n=50): return a*10**n/b . &gt; digits(1,7) 14285714285714285714285714285714285714285714285714L </code></pre> <p>Python's integers are arbitrary precision. Python's floats are never arbitrary precision. (you'd have to use Decimal, as another answer has pointed out)</p> http://stackoverflow.com/questions/1719810/fastest-way-to-find-the-union-and-intersection-items-among-two-list/1719820#1719820 3 Answer by Jimmy for fastest way to find the union and intersection items among two list Jimmy 2009-11-12T04:08:41Z 2009-11-12T04:08:41Z <p>LINQ already has Union and Intersection. Your example is neither.</p> <pre><code>var set = new HashSet(list2) var list3 = List1.Select(x =&gt; set.Contains(x) ? x : null).ToList(); </code></pre> http://stackoverflow.com/questions/1719163/c-programming-gpa-calculator/1719222#1719222 0 Answer by Jimmy for C Programming (GPA Calculator) Jimmy 2009-11-12T01:09:28Z 2009-11-12T01:09:28Z <p>Forgot to add to total in the loop</p> http://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1712668#1712668 2 Answer by Jimmy for Insertion Sort Code Challenge Jimmy 2009-11-11T02:42:25Z 2009-11-11T03:18:59Z <p><b>Python</b> 70-ish. This is pretty much your C# answer in python <strike></p> <pre><code>def F(s): r=[] while s: m=min(s) r+=[k] s.remove(m) return r </code></pre> <p></strike><hr></p> <p><b>Python</b> 59 chars. still destructive.</p> <p><code> F=lambda s:sum([[s.pop(s.index(min(s)))] for j in s[:]],[]) </code></p> http://stackoverflow.com/questions/1712122/javascript-debugging-in-firefox/1712148#1712148 0 Answer by Jimmy for JavaScript debugging in FireFox Jimmy 2009-11-11T00:06:23Z 2009-11-11T00:06:23Z <p>perhaps your code does something that doesn't throw an error in Firefox (like string[indexing])</p> http://stackoverflow.com/questions/1703113/c-simple-file-i-o/1703145#1703145 1 Answer by Jimmy for C# Simple File I/O Jimmy 2009-11-09T19:18:49Z 2009-11-09T19:46:12Z <p>For starters, you need to get rid of the line "max = int.Parse(myData)". Otherwise, you'll keep overwriting max with the current value.</p> http://stackoverflow.com/questions/1676972/linq-to-entities-filtering-items-using-ints/1677047#1677047 2 Answer by Jimmy for LINQ (to Entities) - Filtering items using ints Jimmy 2009-11-04T22:14:10Z 2009-11-04T22:14:10Z <p>convert the string to a HashSet for optimum performance of .Contains. .Any() should return true when the first match is found.</p> <pre><code> var stringofInts = "2,3,5,9"; List&lt;int&gt; listOfInts = GetSomeListOfInts(); var set = new HashSet&lt;int&gt;(stringofInts.Split(',').Select(x =&gt; int.Parse(x))); listOfInts.Any(x =&gt; set.Contains(x)) </code></pre> http://stackoverflow.com/questions/443867/drawing-pixels-in-wpf 4 Drawing Pixels in WPF Jimmy 2009-01-14T17:13:06Z 2009-11-03T03:39:13Z <p>how would I manage pixel-by-pixel rendering in WPF (like, say, for a raytracer)? My initial guess was to create a BitmapImage, modify the buffer, and display that in an Image control, but I couldn't figure out how to create one (the create method requires a block of unmanaged memory)</p> http://stackoverflow.com/questions/202813/adding-values-to-a-c-array/202861#202861 2 Answer by Jimmy for Adding values to a C# array Jimmy 2008-10-14T21:10:25Z 2009-10-28T12:17:32Z <p>c# arrays are fixed length and always indexed. Go with Motti's solution:</p> <pre><code>int [] terms = new int[400]; for(int runs = 0; runs &lt; 400; runs++) { terms[runs] = value; } </code></pre> <p>note that this array is a dense array, a contiguous block of 400 bytes where you can drop things. If you want a dynamically sized array, use a List.</p> <pre><code>List&lt;int&gt; terms = new List&lt;int&gt;(); for(int runs = 0; runs &lt; 400; runs ++) { terms.Add(runs); } </code></pre> <p>Neither int[] nor List is an associative array -- that would be a Dictionary&lt;> in C#. both arrays and lists are dense.</p> http://stackoverflow.com/questions/1371239/biztalk-hl7-2009-hl7-v-2-6-msh-error-on-timestamp 0 BizTalk HL7 2009: HL7 v. 2.6 MSH Error on Timestamp Jimmy 2009-09-03T03:03:02Z 2009-10-27T16:57:16Z <p>I’m having trouble getting BizTalk 2009 to accept a HL7 v 2.6 message via the HL7 Accelerator. I’ve used the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=94877261-1F04-40B7-8C6D-CF92F38D09A3&amp;displaylang=en" rel="nofollow">HL7 Schema Generation Tool</a> to process the schema database and produce the xsd’s to support HL7 v.2.6</p> <p>I’m using the standard MSH_25_GLO_DEF.xsd, modified to support a 2.6 version id, as my MSH definition.</p> <p>I have a set of BizTalk assemblies, the pipelines defined against the included 2.5 schemas accept a test 2.5 message, the pipelines using a 2.6 schema fail to parse a 2.6 message when the timestamp is present. Here’s the sample input:</p> <p>Without a timestamp:</p> <pre><code>MSH|^~\&amp;|TEST|MCM|BTAHL7InterfaceEngine||||ADT^A20|000001|P|2.6 EVN|A20|19880704 NPU|A|OCC MSH|^~\&amp;|BTAHL7InterfaceEngine||TEST|MCM|20090902152033||ACK^A20^ACK|100000|P|2.6|||NE MSA|AA|000001 </code></pre> <p>With a timestamp:</p> <pre><code>MSH|^~\&amp;|TEST|MCM|BTAHL7InterfaceEngine||199112311501||ADT^A20|000001|P|2.6 EVN|A20|19880704 NPU|A|OCC MSH|^~\&amp;|BTAHL7InterfaceEngine||TEST|MCM|20090902152032||ACK^A20^ACK|100000|P|2.6|||NE MSA|AR|000001 ERR|MSH^1^7^102&amp;Data type error&amp;HL7nnnn </code></pre> http://stackoverflow.com/questions/1562981/splitting-a-string-at-all-whitespace/1563000#1563000 2 Answer by Jimmy for Splitting a string at all whitespace Jimmy 2009-10-13T21:27:31Z 2009-10-13T21:27:31Z <p>String.Split() (no parameters) does split on all whitespace (including LF/CR)</p> http://stackoverflow.com/questions/449482/what-do-you-call-this-functional-language-feature 2 What do you call this functional language feature? Jimmy 2009-01-16T04:04:27Z 2009-10-13T00:33:46Z <p>ok, embarrassing enough, I posted <a href="http://stackoverflow.com/questions/445782/finding-closest-match-in-collection-of-numbers#449148">code that I need explained</a>. Specifically, it first chains absolute value and subtraction together, then tacks on a sort, all the while not having to mention parameters and arguments at all, because of the presense of "adverbs" that can join these functions "verbs"</p> <p>What (non-APL-type) languages support this kind of no-arguments function composition (I have the vague idea it ties in strongly to the concepts of monad/dyad and rank, but its hard to get a particularly easy-to-understand picture just from reading Wikipedia) and what do I call this concept?</p> http://stackoverflow.com/questions/1913805/linq-query-to-detect-duplicate-properties-in-a-list-of-objects/1918053#1918053 Comment by Jimmy on LINQ query to detect duplicate properties in a list of objects Jimmy 2009-12-17T00:18:25Z 2009-12-17T00:18:25Z does Grouping lazy evaluate its group members? g.Skip(1).Any() might be an improvement over g.Count() &gt; 1 http://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100/1909566#1909566 Comment by Jimmy on Regular expression where part of string must be number between 0-100 Jimmy 2009-12-15T18:56:06Z 2009-12-15T18:56:06Z is this true? I don't really know much about FSA, but the hypothetical counterexample is &quot;00000|00001|... .... |86400&quot; http://stackoverflow.com/questions/1884222/algorithm-to-swim-like-a-fish-in-c/1884249#1884249 Comment by Jimmy on Algorithm to swim like a fish in c# Jimmy 2009-12-10T21:55:26Z 2009-12-10T21:55:26Z oh, I misunderstood. I thought the letters would move semi-independently. http://stackoverflow.com/questions/129356/facebook-development-vs-xna-which-is-worth-learning/129366#129366 Comment by Jimmy on Facebook Development vs. XNA, Which is Worth Learning? Jimmy 2009-12-09T19:29:23Z 2009-12-09T19:29:23Z Who knows how long XNA will be around? It's not inconceivable it would go the way of Managed DirectX and be supplanted by another framework. http://stackoverflow.com/questions/1850271/vb-net-properites-not-seen-in-c Comment by Jimmy on VB.NET properites not seen in C#? Jimmy 2009-12-04T23:13:54Z 2009-12-04T23:13:54Z _theUser is a UserCredentials object. What does this have to do with the string property UserID? http://stackoverflow.com/questions/1850245/problem-installing-visual-studio-2008-sp1-on-windows-7/1850258#1850258 Comment by Jimmy on Problem installing visual studio 2008 sp1 on windows 7 Jimmy 2009-12-04T23:11:10Z 2009-12-04T23:11:10Z none here. VS2008sp1/VS2010b2 on win7 http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840919#1840919 Comment by Jimmy on Can someone copyright a SQL query? Jimmy 2009-12-04T23:09:02Z 2009-12-04T23:09:02Z @Breton: truth is usually but not always a defense against libel. http://stackoverflow.com/questions/1841872/finding-websites-from-company-name Comment by Jimmy on Finding Websites From Company Name Jimmy 2009-12-03T18:29:31Z 2009-12-03T18:29:31Z not really a strategy, but WHOIS'ing the domain and checking the registered entity and address is a good sanity check. http://stackoverflow.com/questions/1841663/highlightstring-in-c Comment by Jimmy on highlight_string in C# Jimmy 2009-12-03T18:01:34Z 2009-12-03T18:01:34Z Possible duplicate: <a href="http://stackoverflow.com/questions/1710653/is-there-a-free-code-to-html-syntax-highlighter-written-in-c" rel="nofollow" title="is there a free code to html syntax highlighter written in c">stackoverflow.com/questions/1710653/&hellip;</a> http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1807536#1807536 Comment by Jimmy on Code Golf: Ulam Spiral Jimmy 2009-11-27T23:22:02Z 2009-11-27T23:22:02Z I spent a good 10 seconds wondering if the cow actually was legal syntax http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810892#1810892 Comment by Jimmy on Memorable 32-bit value as a constant Jimmy 2009-11-27T23:19:05Z 2009-11-27T23:19:05Z +1 for &quot;one-liner of C++&quot; :) http://stackoverflow.com/questions/1810929/how-the-undead-think-about-ruby-learners-guide Comment by Jimmy on How the undead think about Ruby (learner's guide) Jimmy 2009-11-27T23:10:22Z 2009-11-27T23:10:22Z skeleton classes throw notimplemented exceptions from all their methods, obviously http://stackoverflow.com/questions/1801007/preprocessor-statements-in-aspx/1801033#1801033 Comment by Jimmy on Preprocessor statements in ASPX Jimmy 2009-11-26T01:10:32Z 2009-11-26T01:10:32Z not at all actually http://stackoverflow.com/questions/377188/best-practises-increase-mood-for-coding Comment by Jimmy on Best Practises - Increase Mood for Coding Jimmy 2009-11-26T01:02:25Z 2009-11-26T01:02:25Z @DoctaJonez: the first commentor has almost 60k rep http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure/1800964#1800964 Comment by Jimmy on In Which Cases Is Better To Use Clojure? Jimmy 2009-11-26T00:55:59Z 2009-11-26T00:55:59Z From Brendan Eich's blog: &quot;I was recruited to Netscape with the promise of &quot;doing Scheme&quot; in the browser.&quot; ... so Javascript is like, the ugly child in the LISP family?