User Jimmy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T09:32:00Zhttp://stackoverflow.com/feeds/user/4435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100/1909583#19095836Answer by Jimmy for Regular expression where part of string must be number between 0-100Jimmy2009-12-15T18:57:05Z2009-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#18847141Answer by Jimmy for An Exercise: map or reduce a map in Python without list comprehensions?Jimmy2009-12-10T23:03:35Z2009-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#18842493Answer by Jimmy for Algorithm to swim like a fish in c#Jimmy2009-12-10T21:40:55Z2009-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#18780202Answer by Jimmy for C# - How to print objects in an array using for/foreach?Jimmy2009-12-10T01:04:24Z2009-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<Employee></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#18782842Answer by Jimmy for Tackling the 8-puzzle problem via BFSJimmy2009-12-10T02:25:46Z2009-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#18492842Answer by Jimmy for Sorting by two columns with LINQ (Edited). Forget it! I'll post the answer to make things clear.Jimmy2009-12-04T19:55:55Z2009-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#18493570Answer by Jimmy for Is there a way to get the number of places after the decimal point in a java double?Jimmy2009-12-04T20:09:40Z2009-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#18419430Answer by Jimmy for How to Avoid Global Variables in JavascriptJimmy2009-12-03T18:34:18Z2009-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 > 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#18418211Answer by Jimmy for How can I make a hover info bubble appear on mouseover in WPF?Jimmy2009-12-03T18:16:40Z2009-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-bcl1Can I Reflector the .NET Base Class Libraries (BCL)?Jimmy2008-12-18T17:03:29Z2009-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#18008791Answer by Jimmy for Munging non-printable characters to dots using string.translate()Jimmy2009-11-26T00:19:01Z2009-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#17936522Answer by Jimmy for how to copy a list to a new list, or retrieve list by value in c#Jimmy2009-11-24T23:21:39Z2009-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(<specify condition here>).ToList();
</code></pre>
http://stackoverflow.com/questions/1793154/make-dictionary-from-2-list/1793167#17931670Answer by Jimmy for Make Dictionary From 2 ListJimmy2009-11-24T21:51:25Z2009-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#17869093Answer by Jimmy for C# why can't a UInt32 be unboxed as UInt64?Jimmy2009-11-23T23:53:36Z2009-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#17867533Answer by Jimmy for How different are the semantics between Python and JavaScript?Jimmy2009-11-23T23:19:03Z2009-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#17866810Answer by Jimmy for Is it ever reasonable to nest Java inner classes more than one level deep?Jimmy2009-11-23T23:04:20Z2009-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#17866712Answer by Jimmy for A simple Lisp questionJimmy2009-11-23T23:02:01Z2009-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#17715393Answer by Jimmy for Why does this IF statement return false?Jimmy2009-11-20T16:12:45Z2009-11-20T17:15:52Z<p>You want || instead of &&.</p>
http://stackoverflow.com/questions/1719776/euler-26-how-to-convert-rational-number-to-string-with-better-precision/1719806#17198064Answer by Jimmy for Euler #26, how to convert rational number to string with better precision?Jimmy2009-11-12T04:04:13Z2009-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>> def digits(a,b,n=50): return a*10**n/b
.
> 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#17198203Answer by Jimmy for fastest way to find the union and intersection items among two listJimmy2009-11-12T04:08:41Z2009-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 => set.Contains(x) ? x : null).ToList();
</code></pre>
http://stackoverflow.com/questions/1719163/c-programming-gpa-calculator/1719222#17192220Answer by Jimmy for C Programming (GPA Calculator)Jimmy2009-11-12T01:09:28Z2009-11-12T01:09:28Z<p>Forgot to add to total in the loop</p>
http://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1712668#17126682Answer by Jimmy for Insertion Sort Code ChallengeJimmy2009-11-11T02:42:25Z2009-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#17121480Answer by Jimmy for JavaScript debugging in FireFoxJimmy2009-11-11T00:06:23Z2009-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#17031451Answer by Jimmy for C# Simple File I/OJimmy2009-11-09T19:18:49Z2009-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#16770472Answer by Jimmy for LINQ (to Entities) - Filtering items using intsJimmy2009-11-04T22:14:10Z2009-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<int> listOfInts = GetSomeListOfInts();
var set = new HashSet<int>(stringofInts.Split(',').Select(x => int.Parse(x)));
listOfInts.Any(x => set.Contains(x))
</code></pre>
http://stackoverflow.com/questions/443867/drawing-pixels-in-wpf4Drawing Pixels in WPFJimmy2009-01-14T17:13:06Z2009-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#2028612Answer by Jimmy for Adding values to a C# arrayJimmy2008-10-14T21:10:25Z2009-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 < 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<int> terms = new List<int>();
for(int runs = 0; runs < 400; runs ++)
{
terms.Add(runs);
}
</code></pre>
<p>Neither int[] nor List is an associative array -- that would be a Dictionary<> in C#. both arrays and lists are dense.</p>
http://stackoverflow.com/questions/1371239/biztalk-hl7-2009-hl7-v-2-6-msh-error-on-timestamp0BizTalk HL7 2009: HL7 v. 2.6 MSH Error on TimestampJimmy2009-09-03T03:03:02Z2009-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&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|^~\&|TEST|MCM|BTAHL7InterfaceEngine||||ADT^A20|000001|P|2.6
EVN|A20|19880704
NPU|A|OCC
MSH|^~\&|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|^~\&|TEST|MCM|BTAHL7InterfaceEngine||199112311501||ADT^A20|000001|P|2.6
EVN|A20|19880704
NPU|A|OCC
MSH|^~\&|BTAHL7InterfaceEngine||TEST|MCM|20090902152032||ACK^A20^ACK|100000|P|2.6|||NE
MSA|AR|000001
ERR|MSH^1^7^102&Data type error&HL7nnnn
</code></pre>
http://stackoverflow.com/questions/1562981/splitting-a-string-at-all-whitespace/1563000#15630002Answer by Jimmy for Splitting a string at all whitespaceJimmy2009-10-13T21:27:31Z2009-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-feature2What do you call this functional language feature?Jimmy2009-01-16T04:04:27Z2009-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#1918053Comment by Jimmy on LINQ query to detect duplicate properties in a list of objectsJimmy2009-12-17T00:18:25Z2009-12-17T00:18:25Zdoes Grouping lazy evaluate its group members? g.Skip(1).Any() might be an improvement over g.Count() > 1http://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100/1909566#1909566Comment by Jimmy on Regular expression where part of string must be number between 0-100Jimmy2009-12-15T18:56:06Z2009-12-15T18:56:06Zis this true? I don't really know much about FSA, but the hypothetical counterexample is "00000|00001|... .... |86400"http://stackoverflow.com/questions/1884222/algorithm-to-swim-like-a-fish-in-c/1884249#1884249Comment by Jimmy on Algorithm to swim like a fish in c#Jimmy2009-12-10T21:55:26Z2009-12-10T21:55:26Zoh, I misunderstood. I thought the letters would move semi-independently.http://stackoverflow.com/questions/129356/facebook-development-vs-xna-which-is-worth-learning/129366#129366Comment by Jimmy on Facebook Development vs. XNA, Which is Worth Learning?Jimmy2009-12-09T19:29:23Z2009-12-09T19:29:23ZWho 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-cComment by Jimmy on VB.NET properites not seen in C#?Jimmy2009-12-04T23:13:54Z2009-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#1850258Comment by Jimmy on Problem installing visual studio 2008 sp1 on windows 7Jimmy2009-12-04T23:11:10Z2009-12-04T23:11:10Znone here. VS2008sp1/VS2010b2 on win7http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840919#1840919Comment by Jimmy on Can someone copyright a SQL query?Jimmy2009-12-04T23:09:02Z2009-12-04T23:09:02Z@Breton: truth is usually but not always a defense against libel. http://stackoverflow.com/questions/1841872/finding-websites-from-company-nameComment by Jimmy on Finding Websites From Company NameJimmy2009-12-03T18:29:31Z2009-12-03T18:29:31Znot 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-cComment by Jimmy on highlight_string in C#Jimmy2009-12-03T18:01:34Z2009-12-03T18:01:34ZPossible 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/…</a>
http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1807536#1807536Comment by Jimmy on Code Golf: Ulam SpiralJimmy2009-11-27T23:22:02Z2009-11-27T23:22:02ZI spent a good 10 seconds wondering if the cow actually was legal syntaxhttp://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810892#1810892Comment by Jimmy on Memorable 32-bit value as a constantJimmy2009-11-27T23:19:05Z2009-11-27T23:19:05Z+1 for "one-liner of C++" :)http://stackoverflow.com/questions/1810929/how-the-undead-think-about-ruby-learners-guideComment by Jimmy on How the undead think about Ruby (learner's guide)Jimmy2009-11-27T23:10:22Z2009-11-27T23:10:22Zskeleton classes throw notimplemented exceptions from all their methods, obviouslyhttp://stackoverflow.com/questions/1801007/preprocessor-statements-in-aspx/1801033#1801033Comment by Jimmy on Preprocessor statements in ASPXJimmy2009-11-26T01:10:32Z2009-11-26T01:10:32Znot at all actually
http://stackoverflow.com/questions/377188/best-practises-increase-mood-for-codingComment by Jimmy on Best Practises - Increase Mood for CodingJimmy2009-11-26T01:02:25Z2009-11-26T01:02:25Z@DoctaJonez: the first commentor has almost 60k rephttp://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure/1800964#1800964Comment by Jimmy on In Which Cases Is Better To Use Clojure?Jimmy2009-11-26T00:55:59Z2009-11-26T00:55:59ZFrom Brendan Eich's blog: "I was recruited to Netscape with the promise of "doing Scheme" in the browser." ... so Javascript is like, the ugly child in the LISP family?