User pbh101 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T10:47:34Z http://stackoverflow.com/feeds/user/1266 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1412979/please-explain-c-syntax-to-a-vb-er/1413000#1413000 1 Answer by pbh101 for Please explain C# syntax to a vb-er pbh101 2009-09-11T20:04:23Z 2009-09-11T20:04:23Z <p>The <code>?:</code> construct is the ternary operator, basically an inline <code>if (x) y else x</code>. The benefit of the inline is seen here in that it is assigned immediately to a variable. You can't do that with an if statement.</p> http://stackoverflow.com/questions/1370540/which-database-can-i-safely-use-a-guid-as-primary-key-besides-sql-server/1370550#1370550 3 Answer by pbh101 for Which Database can i Safely use a GUID as Primary Key besides SQL Server? pbh101 2009-09-02T22:49:50Z 2009-09-02T22:49:50Z <p>Most any RDBMS you will use can take any number and type of columns as a PK. So, if you're storing the GUID as a CHAR(n) for some length n, you should be fine. Now, I'm not sure if this is advisable, as I'm guessing indexing on CHARs is not as efficient as on integers.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/1365022/generic-keying-across-maps-mapk-v-from-mapt-k-and-mapt-v 0 Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V> pbh101 2009-09-01T22:45:19Z 2009-09-01T23:00:14Z <p>I have a function which returns a one-sided intersection of values between two input maps:</p> <pre><code>Map&lt;Key, Value&gt; mergeMaps(Map aKeys&lt;CompositeKey, Key&gt;, Map &lt;CompositeKey, Value&gt; aValues) { Map&lt;Key, Value&gt; myResult = Maps.newHashMap(); for (CompositeKey myKey : aKeys.keySet()) { if (aValues.containsKey(myKey)) { myResult.put( aKeys.get(myKey), aValues.get(myKey)); } } return myResult; } </code></pre> <p>This is <em>not</em> a transitive mapping composition i.e. </p> <pre><code>T-&gt;K, K-&gt;V ===&gt; T-&gt;V </code></pre> <p>but instead transforming </p> <pre><code>T-&gt;(K,V) ===&gt; K-&gt;V </code></pre> <p>Is there a way in Java to make this function generic such that its signature is as follows?</p> <pre><code>Map&lt;K, V&gt; mergeMaps(Map aKeys&lt;T, K&gt;, Map &lt;T, V&gt; aValues) </code></pre> http://stackoverflow.com/questions/275471/gdb-executable-file-format 3 gdb executable file format pbh101 2008-11-09T01:24:18Z 2009-07-14T03:28:34Z <p>I'm trying to use GDB to debug (to find an annoying segfault). When I run:</p> <pre><code>gdb ./filename </code></pre> <p>from the command line, I get the following error:</p> <pre><code>This GDB was configured as "i686-pc-linux- gnu"..."/path/exec": not in executable format: File format not recognized </code></pre> <p>When I execute:</p> <pre><code>file /path/executable/ </code></pre> <p>I get the following info:</p> <pre><code> ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.4.0, dynamically linked (uses shared libs), not stripped </code></pre> <p>I am using GDB 6.1, and the executable is compiled with gcc version 3.4.6.</p> <p>I'm a little out of my water in terms of using gdb, but as far as I can tell it should be working in this instance. Any ideas what's going wrong?</p> http://stackoverflow.com/questions/976395/best-way-to-get-the-name-of-a-button-that-called-an-event/976452#976452 0 Answer by pbh101 for Best way to get the name of a button that called an event? pbh101 2009-06-10T15:45:16Z 2009-06-10T16:00:55Z <p>I ran into a similar problem: I was generating buttons based on user-supplied data, and I needed the buttons to affect another class, so I needed to pass along information about the buttonclick. What I did was explicitly assign button IDs to each button I generated, then stored information about them in a dictionary to lookup later.</p> <p>I would have thought there would be a prettier way to do this, constructing a custom event passing along more information, but all I've seen is the dictionary-lookup method. Also, I keep around a list of the buttons so I can erase all of them when needed.</p> <p>Here's a slightly scrubbed code sample of something similar:</p> <pre><code>self.buttonDefs = {} self.buttons = [] id_increment = 800 if (row, col) in self.items: for ev in self.items[(row, col)]: id_increment += 1 #### Populate a dict with the event information self.buttonDefs[id_increment ] = (row, col, ev['user']) #### tempBtn = wx.Button(self.sidebar, id_increment , "Choose", (0,50+len(self.buttons)*40), (50,20) ) self.sidebar.Bind(wx.EVT_BUTTON, self.OnShiftClick, tempBtn) self.buttons.append(tempBtn) def OnShiftClick(self, evt): ### Lookup the information from the dict row, col, user = self.buttonDefs[evt.GetId()] self.WriteToCell(row, col, user) self.DrawShiftPicker(row, col) </code></pre> http://stackoverflow.com/questions/13537/bootstrapping-a-language 10 Bootstrapping a language pbh101 2008-08-17T06:46:11Z 2009-05-20T09:29:29Z <p>I've heard of the idea of bootstrapping a language, that is, writing a compiler/interpreter for the language in itself. I was wondering how this could be accomplished and looked around a bit, and saw someone say that it could only be done by either</p> <ul> <li>writing an initial compiler in a different language.</li> <li>handcoding an initial compiler in Assembly, which seems like a special case of the first</li> </ul> <p>To me, neither of these seem to actually be <em>bootstrapping</em> a language in the sense that they both require outside support. Is there a way to actually write a compiler in it's own language?</p> http://stackoverflow.com/questions/21583/unit-testing-databases 11 Unit-Testing Databases pbh101 2008-08-22T01:35:33Z 2009-04-17T07:39:20Z <p>This past summer I was developing a basic ASP.NET/SQL Server CRUD app, and unit testing was one of the requirements. I ran into some trouble when I tried to test against the database. To my understanding, unit tests should be:</p> <ul> <li>stateless</li> <li>independent from each other</li> <li>repeatable with the same results i.e. no persisting changes</li> </ul> <p>These requirements seem to be at odds with each other when developing for a database. For example, I can't test Insert() without making sure the rows to be inserted aren't there yet, thus I need to call the Delete() first. But, what if they aren't already there? Then I would need to call the Exists() function first.</p> <p>My eventual solution involved very large setup functions (yuck!) and an empty test case which would run first and indicate that the setup ran without problems. This is sacrificing on the independence of the tests while maintaining their statelessness.</p> <p>Another solution I found is to wrap the function calls in a transaction which can be easily rolled back, like <a href="http://weblogs.asp.net/rosherove/archive/2004/10/05/238201.aspx" rel="nofollow">Roy Osherove's XtUnit</a>. This work, but it involves another library, another dependency, and it seems a little too heavy of a solution for the problem at hand.</p> <p>So, what has the SO community done when confronted with this situation?</p> http://stackoverflow.com/questions/234742/setting-environment-variables-in-linux-using-bash 2 Setting environment variables in linux using bash pbh101 2008-10-24T18:25:47Z 2009-04-08T19:11:26Z <p>In <code>tcsh</code>, I have the following simple script working:</p> <pre><code>#!/bin/tcsh setenv X_ROOT /some/specified/path setenv XDB ${X_ROOT}/db setenv PATH ${X_ROOT}/bin:${PATH} xrun -d xdb1 -i $1 &gt; $2 </code></pre> <p>My question is, what is the equivalent to the <code>tcsh setenv</code> function in <code>bash</code>? Is there a direct analog? The environment variables are for locating the executable.</p> <p>UPDATE: Thanks everyone for your help! I'd been trying to figure this out for quite a while.</p> http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c 22 When to Use Static Classes in C# pbh101 2008-10-27T20:53:37Z 2009-04-08T12:49:31Z <p>Here's what MSDN has to say under "When to Use Static Classes":</p> <blockquote> <pre><code>static class CompanyInfo { public static string GetCompanyName() { return "CompanyName"; } public static string GetCompanyAddress() { return "CompanyAddress"; } //... } </code></pre> <p>Use a static class as a unit of organization for methods not associated with particular objects. Also, a static class can make your implementation simpler and faster because you do not have to create an object in order to call its methods. It is useful to organize the methods inside the class in a meaningful way, such as the methods of the Math class in the System namespace.</p> </blockquote> <p>To me, that example doesn't seem to cover very many possible usage scenarios for static classes. In the past I've used static classes for stateless suites of related functions, but that's about it. So, under what circumstances should (and shouldn't) a class be declared static? </p> http://stackoverflow.com/questions/26393/what-is-a-selector-engine 6 What is a selector engine? pbh101 2008-08-25T16:59:09Z 2009-02-11T14:36:09Z <p>I've seen news of <a href="http://github.com/jeresig/sizzle/tree/master" rel="nofollow">John Resig's fast new selector engine named Sizzle</a> pop up in quite a few places, but I don't know what a selector engine is, nor have any of the articles given an explanation of what it is. I know Resig is the creator of jQuery, and that Sizzle is something in Javascript, but beyond that I don't know what it is. So, what is a selector engine?</p> <p>Thanks!</p> http://stackoverflow.com/questions/348093/did-you-mean-feature-in-lucene-net/375953#375953 0 Answer by pbh101 for "Did you mean?" feature in Lucene.net pbh101 2008-12-17T20:44:20Z 2008-12-17T20:44:20Z <p>I used Lucene.Net over last summer, and I noticed that on a stock query, if I searched for "Nor**th**shore" or "Nor**ht**shore", the results were about the same (the misspelling occurred in the data once or twice), so it was my impression that it did this sort of thing automatically to some degree.</p> http://stackoverflow.com/questions/227282/solving-an-inequality-for-minimum-value 2 Solving an inequality for minimum value pbh101 2008-10-22T19:48:55Z 2008-10-27T16:12:12Z <p>I'm working on a programming problem which boils down to a set of an equation and inequality:</p> <pre><code>x[0]*a[0] + x[1]*a[1] + ... x[n]*a[n] &gt;= D x[0]*b[0] + x[1]*b[1] + ... x[n]*b[n] = C </code></pre> <p>I want to solve for the values of <code>X</code> that will give the absolute minimum of <code>C</code>, given the input <code>D</code> and lists and <code>A</code> and <code>B</code> consisting of <code>a[0 - n]</code> and <code>b[0 - n ]</code>.</p> <p>I'm doing the problem at the moment in Python, but the problem in general is language-agnostic.</p> <p>CLARIFICATION UPDATE: the coefficients <code>x[0 - n]</code> are restricted to the set of non-negative integers.</p> http://stackoverflow.com/questions/181159/generating-a-unique-id-in-php 4 Generating a unique ID in PHP pbh101 2008-10-08T02:43:00Z 2008-10-08T02:52:03Z <p>I'm trying to generate a unique ID in php in order to store user-uploaded content on a FS without conflicts. I'm using php, and at the moment this little snippet is responsible for generating the UID:</p> <pre><code>$id = tempnam (".", ""); unlink($id); $id = substr($id, 2); </code></pre> <p>This code is hideous: it creates a temporary file on the FS and deletes it, retaining only the relevant unique part of the generated string.</p> <p>Is there any better way to do this, most preferably without any external dependencies?</p> <p>Thanks much!</p> http://stackoverflow.com/questions/167542/how-do-i-declare-a-multi-column-pk-in-mysql 1 How do I declare a multi-column PK in MySQL pbh101 2008-10-03T15:52:44Z 2008-10-03T19:13:22Z <p>I'm trying to create a table with two columns comprising the primary key in MySQL, but I can't figure out the syntax. I understand single-column PKs, but the syntax isn't the same to create a primary key with two columns.</p> http://stackoverflow.com/questions/161084/what-would-be-the-best-way-to-parse-this-file/161152#161152 2 Answer by pbh101 for What would be the best way to parse this file? pbh101 2008-10-02T06:56:24Z 2008-10-02T06:56:24Z <p>I would head to Python for any type of string parsing like this. I'm not sure how much of this information you want to retain, but I would perhaps use Python's <code>split()</code> function to split on <code>=</code> to get rid of the equals sign, then strip the whitespace out of the second piece of the pie.</p> <p>First, I would mask out the header/footer info I know I don't need, then do something akin to the following:</p> <p>Let's take a chunk and save it in <code>test1.txt</code>:</p> <pre> ADDRESS= {Location Address} SUBURB= {Location Suburb} STATE= xxx POSTCODE= xxx DEPOSITED PLAN NO= 0 SECTION & HUNDRED NO= 0 PROPERTY PHONE NO= </pre> <p>Here's a small python snippet:</p> <pre> >>> f = open("test1.txt", "r") >>> l = f.readlines() >>> l = [line.split('=') for line in l] >>> for line in l: print line ['ADDRESS', '{Location Address}'] ['SUBURB', '{Location Suburb}'] ['STATE', 'xxx'] ['POSTCODE', 'xxx'] ['DEPOSITED PLAN NO', '0'] ['SECTION & HUNDRED NO', '0'] ['PROPERTY PHONE NO', ''] </pre> <p>This would essentially give you a [Column, Value] tuple you could use to insert the data into your database (after escaping all strings, etc etc, SQL Injection warning).</p> <p>This is assuming the email input and your DB will have the same column names, but if they didn't, it'd be fairly trivial to set up a column mapping using a dictionary. On the flip side, if the email and columns are in sync, you don't need to know the names of the columns to get the parsing down.</p> <p>You could iterate through the pseudo-dictionary and print out each key-value pair in the right spot in your parameterized sql string.</p> <p>Hope this helps!</p> <p>Edit: While this is in Python, C#/VB.net should have the same/similar abilities.</p> http://stackoverflow.com/questions/13939/are-old-editions-of-computer-books-worthwhile/156354#156354 2 Answer by pbh101 for Are old editions of computer books worthwhile? pbh101 2008-10-01T05:36:32Z 2008-10-01T05:36:32Z <p>Just as a followup: I'm currently taking compilers and we're using the Dragon Book. I'm using the 1986 edition, while the professor recommended the 2007 edition. Sure, it talks about JITting a bit and bytecode platforms like .NET and Java, but almost all the content is the same, and the exercises are there, but just moved around a bit.</p> <p>It works for me except that I have to photocopy specific pages from the '07 book to get the right exercises for the assignments, but that wouldn't be a problem for someone not in directed study of the topic. And, it was $9 instead of $90 == worth it for me.</p> http://stackoverflow.com/questions/147070/are-we-as-programmers-becoming-too-dependent-on-our-ides/147199#147199 1 Answer by pbh101 for Are we as programmers becoming too dependent on our IDEs? pbh101 2008-09-29T01:31:10Z 2008-09-29T01:31:10Z <p>Let's put it this way: in many languages there is a very high amount of what could be called accidental complexity&mdash;areas where the language is getting in the way of expressing the "business logic"/solving the problem at hand&mdash;and this is one areas where IDEs should be considered useful.</p> <p>If an IDE is automatically generating code for you, then consider it an abstraction layer and welcome it. Of course, a la <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">Joel, all abstractions are leaky</a>, and one would be well off to know where their tools fail.</p> <p>As far as a teaching tool, I was an intern this summer learning .NET/C# and 30-day trial of ReSharper taught me a whole bunch. Of course, as <a href="http://www.25hoursaday.com/weblog/2008/05/21/C30ImplicitTypeDeclarationsToVarOrNotToVar.aspx" rel="nofollow">Dare Obansajo pointed out, we shouldn't blindly rely on ReSharper's suggestions</a>, but as far as teaching me some constructs and keywords which lasted after my trial was over, ReSharper did very well.</p> http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130935#130935 1 Answer by pbh101 for What font size do you use in your code editor? pbh101 2008-09-25T01:15:41Z 2008-09-25T01:15:41Z <p>I've been going with 14pt Consolas, but I have a 1920x1200 15.4inch screen (WUXGA+, I think...it was a free upgrade from the other option). I got it on a laptop 4 years ago and haven't had any issues, except I'm almost always zooming text on almost any website I go to, and some don't handle it too well.</p> <p>That being said, this laptop is getting old. If anyone has any tips for finding a similarly high-res laptop, I'd be much obliged.</p> http://stackoverflow.com/questions/97948/what-is-stdpair/113046#113046 0 Answer by pbh101 for What is std::pair? pbh101 2008-09-22T03:31:45Z 2008-09-22T03:31:45Z <p>I'm a CS Senior and we covered C++/STL heavily in sophomore year, and I wasn't aware of std:pair either. After having programming in Python--in which tuples and lists are first-class objects--for the last year or so (and loving it!) and being required to use C++ this year for many classes, thanks for bringing it to my attention!</p> http://stackoverflow.com/questions/13881/picasa-plugin 2 Picasa Plugin pbh101 2008-08-17T19:39:51Z 2008-09-12T09:56:38Z <p>Does anyone here know any resources on how to get started writing a plugin for Google's Picasa? I love it for photo management, but I have some ideas for how it could be better.</p> <ul> <li>Riya-esque facial search: given a large enough corpus of faces and pictures (people tend to be repeated often in individuals' albums (family, friends), I would think some semi-workable version of this could be done. And with 13+ gigs/7 years of photos, it would be very nice for search.</li> <li>Upload to Facebook EDIT: <a href="http://apps.new.facebook.com/picasauploader/" rel="nofollow">Someone already made a very nice version</a></li> <li>Upload to any non-Google property, actually.</li> </ul> <p>I know there are certain APIs and a Picasa2Flickr plugin out there, and I was wondering if anyone had seen any resources on this topic or had any experience</p> http://stackoverflow.com/questions/38645/combining-structures/38659#38659 0 Answer by pbh101 for Combining Structures pbh101 2008-09-02T00:43:10Z 2008-09-02T00:43:10Z <p>In C, a struct can have another struct as one of it's members. While this isn't exactly the same as what you're asking, you could end up either with a situation where one struct contains another, or one struct contains two structs, both of which hold parts of the info that you wanted.</p> <p>psuedocode: i don't remember the actual syntax.</p> <pre><code>A.field1 = 1; A.field2 = 'a'; A.field3 = struct B; </code></pre> <p>to access: A.field3.field4;</p> <p>or something of the sort.</p> <p>Or you could have struct C hold both an A and a B:</p> <pre><code>C.A = struct A; C.B = struct B; </code></pre> <p>with access then something like</p> <pre><code>C.A.field1; C.A.field2; C.B.field3; C.B.field4; </code></pre> <p>hope this helps!</p> <p>EDIT: both of these solutions avoid naming collisions.</p> <p>Also, I didn't see your <code>matlab</code> tag. By convention, you should want to edit the question to include that piece of info.</p> http://stackoverflow.com/questions/36820/version-control-for-word-documents/36887#36887 0 Answer by pbh101 for Version Control for word documents pbh101 2008-08-31T14:40:43Z 2008-08-31T14:40:43Z <blockquote> <p>You could use something like subversion, but it is going to upload a whole new copy of the document, instead of a changeset.</p> </blockquote> <p>I was under the impression SVN stored byte-level diffs, which makes it possible for it to store incremental changes to binary files such as Word docs and pictures, as well as text files. How to meaningfully represent those changes in a diff is another question, but underneath the hood I think SVN stores changesets for binaries.</p> http://stackoverflow.com/questions/35465/easy-simple-online-source-control/35755#35755 1 Answer by pbh101 for Easy/Simple online source control? pbh101 2008-08-30T07:16:52Z 2008-08-30T07:16:52Z <p>I'd give a major shout out to google code: as long as you're under 100megs of source for any one repository, the SVN works great, and it couldn't be easier to use. It incorporates code review tools, bug-tracking, a wiki, and user mgmt. I'm a senior CS major and I've been using it for the past semester for all my group projects. Definitely helps.</p> http://stackoverflow.com/questions/33973/how-do-i-efficiently-keep-track-of-the-smallest-element-in-a-collection/33998#33998 0 Answer by pbh101 for How do I efficiently keep track of the smallest element in a collection? pbh101 2008-08-29T05:18:44Z 2008-08-29T05:18:44Z <p>Harpreet:</p> <blockquote> <p>the inserts into that would be linear since you have to move items for an insert.</p> </blockquote> <p>Doesn't that depend on the implementation of the collection? If it acts like a linked-list, inserts would be O(1), while if it were implemented like an array it would be linear, as you stated.</p> http://stackoverflow.com/questions/33973/how-do-i-efficiently-keep-track-of-the-smallest-element-in-a-collection/33992#33992 0 Answer by pbh101 for How do I efficiently keep track of the smallest element in a collection? pbh101 2008-08-29T05:14:25Z 2008-08-29T05:14:25Z <blockquote> <p>If you need random insert and removal, the best way is probably a sorted array. Inserts and removals should be O(log(n)).</p> </blockquote> <p>Yes, but you will need to re-sort on each insert and (maybe) each deletion, which, as you stated, is O(log(n)). </p> <p>With the solution proposed by Harpreet:</p> <ul> <li>you have one O(n) pass in the beginning to find the smallest element</li> <li>inserts are O(1) thereafter (only 1 comparison needed to the already-known smallest element)</li> <li>deletes will be O(n) because you will need to re-find the smallest element (keep in mind Big O notation is worst case). You could also optimize by checking to see if the element to be deleted is the (known) smallest, and if not, just don't do any of the re-check to find the smallest element.</li> </ul> <p>So, it depends. One of these algorithms will be better for an insert-heavy use case with few deletes, but the other is overall more consistent. I think I would default to Harpreet's mechanism unless I knew that the smallest number would be removed often, because that exposes a weak point in that algorithm.</p> http://stackoverflow.com/questions/28165/does-php-have-an-equivalent-to-this-type-of-python-string-substitution/28391#28391 0 Answer by pbh101 for Does PHP have an equivalent to this type of Python string substitution? pbh101 2008-08-26T15:34:20Z 2008-08-26T15:34:20Z <p>I didn't know you could do that in Python; I thought that was one thing Ruby had over both Python's and C#'s string formatting techniques. Thanks for showing me this!</p> http://stackoverflow.com/questions/21388/represent-ordering-in-a-relational-database/21625#21625 1 Answer by pbh101 for Represent Ordering in a Relational Database pbh101 2008-08-22T01:58:14Z 2008-08-22T01:58:14Z <p>I did this in my last project, but it was for a table that only occasionally needed to be specifically ordered, and wasn't accessed too often. I think the spaced array would be the best option, because it reordering would be cheapest in the average case, just involving a change to one value and a query on two). </p> <p>Also, I would imagine ORDER BY would be pretty heavily optimized by database vendors, so leveraging that function would be advantageous for performance as opposed to the linked list implementation.</p> http://stackoverflow.com/questions/21583/unit-testing-databases/21617#21617 1 Answer by pbh101 for Unit-Testing Databases pbh101 2008-08-22T01:52:10Z 2008-08-22T01:52:10Z <p>tgmdbm said:</p> <blockquote> <p>You typically use your favourite automated unit testing framework to perform integration tests, which is why some people get confused, but they don't follow the same rules. You are allowed to involve the concrete implementation of many of your classes (because they've been unit tested). You are testing <strong>how your concrete classes interact with each other and with the database</strong>.</p> </blockquote> <p>So if I read this correctly, there is really no way to <em>effectively</em> unit-test a Data Access Layer. Or, would a "unit test" of a Data Access Layer involve testing, say, the SQL/commands generated by the classes, independent of actual interaction with the database?</p> http://stackoverflow.com/questions/16981/if-two-monitors-are-good-are-three-monitors-better-and-how/17111#17111 0 Answer by pbh101 for If two monitors are good are three monitors better? And how? pbh101 2008-08-19T22:32:42Z 2008-08-19T22:32:42Z <p>This summer I was testing a database-driven ASP.NET application. Depending on which type of testing I was doing, I would have different configurations of multiple applications from which I needed to gather information concurrently:</p> <ul> <li>Firefox, SQL Studio, Visual Studio</li> <li>NUnit, NCover, SQL Studio, Visual Studio</li> </ul> <p>Add to this the normal load of Outlook, and maybe a Word doc, spreadsheet, or API docs in a browser window, and there's a lot of information to display. Reducing the application 'switch' time to just a turn of the head or a flick of the eyes has been shown to increase productivity.</p> http://stackoverflow.com/questions/9304/c-3-0-auto-properties-useful-or-not/13992#13992 0 Answer by pbh101 for C# 3.0 Auto-Properties - useful or not? pbh101 2008-08-17T22:40:15Z 2008-08-17T22:40:15Z <p>One thing to note here is that, to my understanding, this is <em>just</em> syntactic sugar on the C# 3.0 end, meaning that the IL generated by the compiler is the same. I agree about avoiding black magic, but all the same, fewer lines for the same thing is usually a good thing.</p> http://stackoverflow.com/questions/1739276/is-a-makefile-basically-the-same-thing-as-a-batch-file/1739300#1739300 Comment by pbh101 on Is a makefile basically the same thing as a batch file? pbh101 2009-11-15T23:46:57Z 2009-11-15T23:46:57Z Makefiles are a language to describe dependencies. Although they are frequently used to build a project, they are actually a generic dependency-management tool. http://stackoverflow.com/questions/1662719/looping-through-enum-values Comment by pbh101 on looping through enum values pbh101 2009-11-02T19:47:45Z 2009-11-02T19:47:45Z It also answers the question for people searching for it in Obj-C. Added that tag back. http://stackoverflow.com/questions/1301316/c-equivalent-of-python-slice-operation/1301362#1301362 Comment by pbh101 on C# equivalent of python slice operation pbh101 2009-10-21T05:01:18Z 2009-10-21T05:01:18Z What type is newlist before the .ToList(). That var isn't helping readability :). http://stackoverflow.com/questions/1596390/filtering-lists-in-python/1596471#1596471 Comment by pbh101 on filtering lists in python pbh101 2009-10-21T04:55:24Z 2009-10-21T04:55:24Z Never mind. I totally missed the membership test in the if statement the first seven or so times I read the function. Yep, O(n^2). http://stackoverflow.com/questions/1596390/filtering-lists-in-python/1596471#1596471 Comment by pbh101 on filtering lists in python pbh101 2009-10-21T04:50:50Z 2009-10-21T04:50:50Z @Chris - I believe Triptych and hughdbrown are pointing out the append operation on bar is likely not constant time (a quick but unmotivated docs.python.org check didn't find much). And I do think SilentGhost meant a constant. http://stackoverflow.com/questions/1597211/whats-the-most-evil-way-of-subverting-a-language-that-youve-seen/1598659#1598659 Comment by pbh101 on What's the most evil way of subverting a language that you've seen? pbh101 2009-10-21T04:25:50Z 2009-10-21T04:25:50Z <a href="http://xkcd.com/221/" rel="nofollow">xkcd.com/221</a> http://stackoverflow.com/questions/1597211/whats-the-most-evil-way-of-subverting-a-language-that-youve-seen/1597257#1597257 Comment by pbh101 on What's the most evil way of subverting a language that you've seen? pbh101 2009-10-21T04:24:36Z 2009-10-21T04:24:36Z I've never read any Pascal before, and I didn't know it had some of the niceties I normally attribute to Python. It's so Pythonic. But I guess that really means that Python is Pascaltastic :) http://stackoverflow.com/questions/1597211/whats-the-most-evil-way-of-subverting-a-language-that-youve-seen/1597250#1597250 Comment by pbh101 on What's the most evil way of subverting a language that you've seen? pbh101 2009-10-21T04:21:25Z 2009-10-21T04:21:25Z I'm not sure this qualifies as evil. Operator overloading exists in the language, you're not overriding expected &quot;string division&quot; behavior, and it contributes to code readability. I think I'm actually in favor of this one. http://stackoverflow.com/questions/1370540/which-database-can-i-safely-use-a-guid-as-primary-key-besides-sql-server/1370570#1370570 Comment by pbh101 on Which Database can i Safely use a GUID as Primary Key besides SQL Server? pbh101 2009-09-03T01:25:57Z 2009-09-03T01:25:57Z are they all identical implementations of the same algorithm? can you mix MS-sourced GUIDs and Oracle-sourced SYS_GUIDs without fear of conflicts? http://stackoverflow.com/questions/1365022/generic-keying-across-maps-mapk-v-from-mapt-k-and-mapt-v/1365037#1365037 Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V> pbh101 2009-09-02T02:49:09Z 2009-09-02T02:49:09Z @TomHawtin. Understood, but I'm fairly new at Java and my expectation, based on generic type syntax and C++, was that the generics go after the name. So, not an irregularity per se, but maybe a mismatch between syntax and my mental model based on prior, partial experience. http://stackoverflow.com/questions/1365022/generic-keying-across-maps-mapk-v-from-mapt-k-and-mapt-v/1365069#1365069 Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V> pbh101 2009-09-02T00:41:15Z 2009-09-02T00:41:15Z Thanks much! CompositeKey is actually a wrapper around an ordered collection and a hashcode() override. Here I was using the composite key essentially as the primary key for mapping a domain from one representation (in-house software) into another (3rd-party). So CompositeKey / T, in this case, is just temporary glue to get K and V aligned. http://stackoverflow.com/questions/1365022/generic-keying-across-maps-mapk-v-from-mapt-k-and-mapt-v/1365037#1365037 Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V> pbh101 2009-09-01T22:56:11Z 2009-09-01T22:56:11Z Well, I've pretty much only read complaints about Java generics. This syntax irregularity gives me a reason too. I was trying: Mpa&lt;K, V&gt; mergeMaps&lt;T, K, V&gt;(Map&lt;...&gt;, Map&lt;...&gt;) Thanks much! http://stackoverflow.com/questions/1365022/generic-keying-across-maps-mapk-v-from-mapt-k-and-mapt-v/1365037#1365037 Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V> pbh101 2009-09-01T22:53:45Z 2009-09-01T22:53:45Z haven't compiled yet, but IntelliJ stopped complaining :) http://stackoverflow.com/questions/976395/best-way-to-get-the-name-of-a-button-that-called-an-event/977110#977110 Comment by pbh101 on Best way to get the name of a button that called an event? pbh101 2009-06-10T23:26:08Z 2009-06-10T23:26:08Z Wow, I think that's a much nicer way to do it than the dictionary-lookup method. This way you're not populating a <code>dict</code> when you're maybe only ever going to use one entry. http://stackoverflow.com/questions/141045/how-do-i-replace-a-string-in-net/141100#141100 Comment by pbh101 on How do I replace a string in .NET? pbh101 2009-02-11T01:53:38Z 2009-02-11T01:53:38Z Thanks! I modified this to make a &quot;RemoveFirst&quot; extension method which... removes the first occurrence of a character from a string.