User pbh101 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T10:47:34Zhttp://stackoverflow.com/feeds/user/1266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1412979/please-explain-c-syntax-to-a-vb-er/1413000#14130001Answer by pbh101 for Please explain C# syntax to a vb-erpbh1012009-09-11T20:04:23Z2009-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#13705503Answer by pbh101 for Which Database can i Safely use a GUID as Primary Key besides SQL Server?pbh1012009-09-02T22:49:50Z2009-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-v0Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>pbh1012009-09-01T22:45:19Z2009-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<Key, Value> mergeMaps(Map aKeys<CompositeKey, Key>,
Map <CompositeKey, Value> aValues) {
Map<Key, Value> 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->K, K->V ===> T->V
</code></pre>
<p>but instead transforming </p>
<pre><code>T->(K,V) ===> K->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<K, V> mergeMaps(Map aKeys<T, K>, Map <T, V> aValues)
</code></pre>
http://stackoverflow.com/questions/275471/gdb-executable-file-format3gdb executable file formatpbh1012008-11-09T01:24:18Z2009-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#9764520Answer by pbh101 for Best way to get the name of a button that called an event?pbh1012009-06-10T15:45:16Z2009-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-language10Bootstrapping a languagepbh1012008-08-17T06:46:11Z2009-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-databases11Unit-Testing Databasespbh1012008-08-22T01:35:33Z2009-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-bash2Setting environment variables in linux using bashpbh1012008-10-24T18:25:47Z2009-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 > $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-c22When to Use Static Classes in C#pbh1012008-10-27T20:53:37Z2009-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-engine6What is a selector engine?pbh1012008-08-25T16:59:09Z2009-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#3759530Answer by pbh101 for "Did you mean?" feature in Lucene.netpbh1012008-12-17T20:44:20Z2008-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-value2Solving an inequality for minimum valuepbh1012008-10-22T19:48:55Z2008-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] >= 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-php4Generating a unique ID in PHPpbh1012008-10-08T02:43:00Z2008-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-mysql1How do I declare a multi-column PK in MySQLpbh1012008-10-03T15:52:44Z2008-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#1611522Answer by pbh101 for What would be the best way to parse this file?pbh1012008-10-02T06:56:24Z2008-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#1563542Answer by pbh101 for Are old editions of computer books worthwhile?pbh1012008-10-01T05:36:32Z2008-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#1471991Answer by pbh101 for Are we as programmers becoming too dependent on our IDEs?pbh1012008-09-29T01:31:10Z2008-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—areas where the language is getting in the way of expressing the "business logic"/solving the problem at hand—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#1309351Answer by pbh101 for What font size do you use in your code editor?pbh1012008-09-25T01:15:41Z2008-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#1130460Answer by pbh101 for What is std::pair?pbh1012008-09-22T03:31:45Z2008-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-plugin2Picasa Pluginpbh1012008-08-17T19:39:51Z2008-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#386590Answer by pbh101 for Combining Structurespbh1012008-09-02T00:43:10Z2008-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#368870Answer by pbh101 for Version Control for word documentspbh1012008-08-31T14:40:43Z2008-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#357551Answer by pbh101 for Easy/Simple online source control?pbh1012008-08-30T07:16:52Z2008-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#339980Answer by pbh101 for How do I efficiently keep track of the smallest element in a collection?pbh1012008-08-29T05:18:44Z2008-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#339920Answer by pbh101 for How do I efficiently keep track of the smallest element in a collection?pbh1012008-08-29T05:14:25Z2008-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#283910Answer by pbh101 for Does PHP have an equivalent to this type of Python string substitution?pbh1012008-08-26T15:34:20Z2008-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#216251Answer by pbh101 for Represent Ordering in a Relational Databasepbh1012008-08-22T01:58:14Z2008-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#216171Answer by pbh101 for Unit-Testing Databasespbh1012008-08-22T01:52:10Z2008-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#171110Answer by pbh101 for If two monitors are good are three monitors better? And how?pbh1012008-08-19T22:32:42Z2008-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#139920Answer by pbh101 for C# 3.0 Auto-Properties - useful or not?pbh1012008-08-17T22:40:15Z2008-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#1739300Comment by pbh101 on Is a makefile basically the same thing as a batch file?pbh1012009-11-15T23:46:57Z2009-11-15T23:46:57ZMakefiles 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-valuesComment by pbh101 on looping through enum valuespbh1012009-11-02T19:47:45Z2009-11-02T19:47:45ZIt 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#1301362Comment by pbh101 on C# equivalent of python slice operationpbh1012009-10-21T05:01:18Z2009-10-21T05:01:18ZWhat type is newlist before the .ToList(). That var isn't helping readability :).http://stackoverflow.com/questions/1596390/filtering-lists-in-python/1596471#1596471Comment by pbh101 on filtering lists in pythonpbh1012009-10-21T04:55:24Z2009-10-21T04:55:24ZNever 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#1596471Comment by pbh101 on filtering lists in pythonpbh1012009-10-21T04:50:50Z2009-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#1598659Comment by pbh101 on What's the most evil way of subverting a language that you've seen?pbh1012009-10-21T04:25:50Z2009-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#1597257Comment by pbh101 on What's the most evil way of subverting a language that you've seen?pbh1012009-10-21T04:24:36Z2009-10-21T04:24:36ZI'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#1597250Comment by pbh101 on What's the most evil way of subverting a language that you've seen?pbh1012009-10-21T04:21:25Z2009-10-21T04:21:25ZI'm not sure this qualifies as evil. Operator overloading exists in the language, you're not overriding expected "string division" 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#1370570Comment by pbh101 on Which Database can i Safely use a GUID as Primary Key besides SQL Server?pbh1012009-09-03T01:25:57Z2009-09-03T01:25:57Zare 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#1365037Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>pbh1012009-09-02T02:49:09Z2009-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#1365069Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>pbh1012009-09-02T00:41:15Z2009-09-02T00:41:15ZThanks 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#1365037Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>pbh1012009-09-01T22:56:11Z2009-09-01T22:56:11ZWell, I've pretty much only read complaints about Java generics. This syntax irregularity gives me a reason too. I was trying:
Mpa<K, V> mergeMaps<T, K, V>(Map<...>, Map<...>)
Thanks much!http://stackoverflow.com/questions/1365022/generic-keying-across-maps-mapk-v-from-mapt-k-and-mapt-v/1365037#1365037Comment by pbh101 on Generic keying across maps: Map<K,V> from Map<T,K> and Map<T,V>pbh1012009-09-01T22:53:45Z2009-09-01T22:53:45Zhaven'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#977110Comment by pbh101 on Best way to get the name of a button that called an event?pbh1012009-06-10T23:26:08Z2009-06-10T23:26:08ZWow, 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#141100Comment by pbh101 on How do I replace a string in .NET?pbh1012009-02-11T01:53:38Z2009-02-11T01:53:38ZThanks! I modified this to make a "RemoveFirst" extension method which... removes the first occurrence of a character from a string.