User Ben Hoffstein - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:31:50Z http://stackoverflow.com/feeds/user/4482 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95977/bitbucket-or-freehg 5 BitBucket or freeHg? Ben Hoffstein 2008-09-18T19:22:56Z 2009-05-26T21:47:15Z <p>I am looking for a public Mercurial repository and would like any opinions from users of either BitBucket, freeHg, or any other alternative. I've tried the free version of BitBucket and it has a great interface, but I've experienced some inopportune downtime with their website that has me concerned. What other factors should I consider when deciding between these options?</p> http://stackoverflow.com/questions/728319/linq-orderby-against-specific-values/728340#728340 0 Answer by Ben Hoffstein for Linq OrderBy against specific values Ben Hoffstein 2009-04-08T02:50:36Z 2009-04-08T02:50:36Z <p>Yes, you must implement your own <code>IComparer&lt;string&gt;</code> and then pass it in as the second argument of LINQ's OrderBy method.</p> <p>An example can be found here: <a href="http://srtsolutions.com/blogs/billwagner/archive/2006/03/29/ordering-linq-results.aspx" rel="nofollow">Ordering LINQ results</a></p> http://stackoverflow.com/questions/728293/starting-net-development-in-ironpython/728302#728302 3 Answer by Ben Hoffstein for starting .net development in ironpython Ben Hoffstein 2009-04-08T02:38:14Z 2009-04-08T02:38:14Z <p>You are in luck... <a href="http://www.manning.com/foord/" rel="nofollow">IronPython In Action</a> was just released within the past week or two.</p> http://stackoverflow.com/questions/728172/are-there-multiline-comment-delimiters-in-sql-that-are-vendor-agnostic/728290#728290 4 Answer by Ben Hoffstein for Are there multiline comment delimiters in SQL that are vendor agnostic? Ben Hoffstein 2009-04-08T02:28:55Z 2009-04-08T02:28:55Z <p>The ISO standard only defines single-line comments beginning with two dashes. Some vendors support C-style commenting (i.e. multiline beginning with /* and ending with */), but it should not be considered "vendor agnostic".</p> http://stackoverflow.com/questions/718187/monodevelop-in-windows/718194#718194 5 Answer by Ben Hoffstein for MonoDevelop in windows Ben Hoffstein 2009-04-05T01:45:13Z 2009-04-05T01:45:13Z <p>There are no precompiled binaries, so you'd have to build from source. Even then, there seems to be some stability issues running MonoDevelop on Windows (see <a href="http://monodevelop.com/FAQ#Does%5FMonoDevelop%5Fwork%5Fon%5FWindows.3f" rel="nofollow">here</a>).</p> <p>Some alternatives would be <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a> and/or <a href="http://www.microsoft.com/express/product/" rel="nofollow">Visual Studio Express</a>.</p> http://stackoverflow.com/questions/718105/how-to-translate-nasm-push-byte-to-gas-syntax/718173#718173 2 Answer by Ben Hoffstein for How to translate NASM "push byte" to GAS syntax? Ben Hoffstein 2009-04-05T01:20:48Z 2009-04-05T01:20:48Z <p><code>pushb</code> was removed from GAS. You should be able to use the <code>push</code> command to get the same effect. A little more information is <a href="http://www.sourceware.org/ml/binutils/2000-05/msg00076.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/694005/how-to-get-the-size-range-for-fonts/694018#694018 2 Answer by Ben Hoffstein for How to get the size range for fonts Ben Hoffstein 2009-03-29T02:31:13Z 2009-03-29T02:31:13Z <p>The majority of fonts are vector-based, i.e. described by lines and quadratic Bézier curves. This means that you can resize them at will without any loss of quality. So, in the context of your question, there is no "range of sizes" for a font.</p> http://stackoverflow.com/questions/620844/why-do-i-get-unexpected-behavior-in-python-isinstance-after-pickling 3 Why do I get unexpected behavior in Python isinstance after pickling? Ben Hoffstein 2009-03-06T23:17:27Z 2009-03-13T15:19:41Z <p>Putting aside whether the use of <a href="http://www.canonical.org/~kragen/isinstance/" rel="nofollow">isinstance is harmful</a>, I have run into the following conundrum when trying to evaluate isinstance after serializing/deserializing an object via Pickle:</p> <pre><code>from __future__ import with_statement import pickle # Simple class definition class myclass(object): def __init__(self, data): self.data = data # Create an instance of the class x = myclass(100) # Pickle the instance to a file with open("c:\\pickletest.dat", "wb") as f: pickle.dump(x, f) # Replace class with exact same definition class myclass(object): def __init__(self, data): self.data = data # Read an object from the pickled file with open("c:\\pickletest.dat", "rb") as f: x2 = pickle.load(f) # The class names appear to match print x.__class__ print x2.__class__ # Uh oh, this fails...(why?) assert isinstance(x2, x.__class__) </code></pre> <p>Can anyone shed some light on why isinstance would fail in this situation? In other words, why does Python think these objects are of two different classes? When I remove the second class definition, <code>isinstance</code> works fine.</p> http://stackoverflow.com/questions/635446/svn-is-there-a-way-to-mark-a-file-as-do-not-commit/635464#635464 1 Answer by Ben Hoffstein for SVN: Is there a way to mark a file as "do not commit"? Ben Hoffstein 2009-03-11T17:04:43Z 2009-03-11T17:04:43Z <p>Yes, you can use the svnignore property to accomplish this. For example:</p> <pre><code>svn propset svn:ignore config.php </code></pre> http://stackoverflow.com/questions/635422/taking-a-null-value-from-the-database-and-assigning-to-a-date-variable/635441#635441 2 Answer by Ben Hoffstein for Taking a NULL value from the database and assigning to a Date variable Ben Hoffstein 2009-03-11T16:59:55Z 2009-03-11T16:59:55Z <p>The second method is preferable because of the cost involved in throwing exceptions (especially if you expect the LastLogin field to be NULL on a regular basis).</p> <p>Here is a good <a href="http://blogs.msdn.com/kcwalina/archive/2005/03/16/396787.aspx" rel="nofollow">blog post</a> with more details about exceptions (see the part about Exceptions and Performance).</p> http://stackoverflow.com/questions/635335/does-anybody-know-a-command-line-tool-for-formatting-mysql-queries/635424#635424 0 Answer by Ben Hoffstein for Does anybody know a command line tool for formatting MySQL queries? Ben Hoffstein 2009-03-11T16:55:22Z 2009-03-11T16:55:22Z <p><a href="http://www.sqlinform.com/" rel="nofollow">SQLinForm</a> is a tool I came across which may serve your needs. There is a free online version or a desktop version for 30 EUR.</p> <p>Here is the summary blurb from their website:</p> <blockquote> <p>SQLinForm is an automatic SQL code formatter for all major databases ( ORACLE, SQL Server, DB2 / UDB, Sybase, Informix, PostgreSQL, Teradata, MySQL etc) with many formatting options.</p> </blockquote> http://stackoverflow.com/questions/634185/jython-netbeans-with-javase/634205#634205 2 Answer by Ben Hoffstein for Jython Netbeans with JavaSE Ben Hoffstein 2009-03-11T11:53:02Z 2009-03-11T11:53:02Z <p>Netbeans 6.5 supports both Python and Jython.</p> <p><a href="http://www.netbeans.org/features/python/" rel="nofollow">http://www.netbeans.org/features/python/</a></p> <p>Assuming you are using that version with the Python plug-in, it's just a matter of setting the runtime you wish to use via the platform manager (here's where you would choose Jython).</p> <p><img src="http://img15.imageshack.us/img15/1586/platformmanager.png" alt="alt text" /></p> http://stackoverflow.com/questions/572836/optimize-sql-query/573126#573126 1 Answer by Ben Hoffstein for Optimize SQL-query Ben Hoffstein 2009-02-21T14:34:21Z 2009-02-21T14:34:21Z <p>It looks like you have all the data you need in the comments table, so I don't see a reason for the join or subquery.</p> <pre><code>SELECT d_id AS diary_id, COUNT(*) AS diary_comments FROM `comments` GROUP BY d_id </code></pre> http://stackoverflow.com/questions/571955/undo-close-tab-in-vim/572020#572020 3 Answer by Ben Hoffstein for Undo Close Tab in Vim Ben Hoffstein 2009-02-21T02:54:39Z 2009-02-21T02:54:39Z <p>Simple answer is no, there is nothing built-in.</p> <p>But a workable solution would be to use a plug-in like the excellent <a href="http://www.vim.org/scripts/script.php?script_id=42" rel="nofollow">BufExplorer</a>. Since it defaults to listing the most recently used buffers first, reopening a closed tab would be as simple as pressing <code>\bet</code></p> http://stackoverflow.com/questions/535365/what-would-you-define-a-function/535391#535391 3 Answer by Ben Hoffstein for What would you define a function? Ben Hoffstein 2009-02-11T04:06:32Z 2009-02-11T04:06:32Z <p>Not to nitpick, but sometimes there is a semantic difference between "function" and "routine". For example, in VB functions return values and (sub)routines do not.</p> <p>In the context of the question, the term "routine" seems to mean nothing more than a block of code (in any form, including pseudocode).</p> http://stackoverflow.com/questions/520798/diff-for-powerpoint/520887#520887 1 Answer by Ben Hoffstein for Diff for Powerpoint Ben Hoffstein 2009-02-06T16:06:07Z 2009-02-06T16:06:07Z <p>First hit on Google for "Powerpoint diff":</p> <p><a href="http://www.softinterface.com/MD%5CCompare-PowerPoint-File.htm" rel="nofollow">Diff Doc</a></p> http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520859#520859 0 Answer by Ben Hoffstein for What are common concurrency pitfalls? Ben Hoffstein 2009-02-06T16:00:36Z 2009-02-06T16:00:36Z <p>Some canonical pitfalls are <a href="http://en.wikipedia.org/wiki/Deadlock" rel="nofollow">deadlocks</a> (two competing processes are stuck waiting for each other to release some resource) and <a href="http://en.wikipedia.org/wiki/Race_condition" rel="nofollow">race conditions</a> (when the timing and/or dependence of events can lead to unexpected behavior). Here is a worthwhile <a href="http://www.dnrtv.com/default.aspx?showNum=4" rel="nofollow">video about "Multithreading Gotchas"</a> as well.</p> http://stackoverflow.com/questions/445695/do-you-put-your-calculations-on-your-sets-or-your-gets/445709#445709 3 Answer by Ben Hoffstein for do you put your calculations on your sets or your gets . . Ben Hoffstein 2009-01-15T05:02:04Z 2009-01-15T05:02:04Z <p>The first is better because:</p> <ul> <li>It's shorter.</li> <li>It's easier to understand.</li> <li>It's slightly presumptuous to recalculate TotalCash every time either price or quantity gets set. It should be as lazy as possible and only calculate when requested.</li> </ul> <p>That being said, putting the calculation in the setter effectively caches it, so if you run into a performance issue, that could be a useful change (at the expense of clarity).</p> http://stackoverflow.com/questions/437419/c-execute-multiple-command-lines-with-the-same-process/437456#437456 1 Answer by Ben Hoffstein for C# - Execute multiple command lines with the same process Ben Hoffstein 2009-01-12T23:26:19Z 2009-01-12T23:26:19Z <p>You could also tell MySQL to execute the commands in the given file, like so:</p> <pre><code>mysql --user=root --password=sa casemanager &lt; CaseManager.sql </code></pre> http://stackoverflow.com/questions/437324/checklist-towards-optimal-performance-in-a-database-import-application/437379#437379 1 Answer by Ben Hoffstein for Checklist towards optimal performance in a database import application Ben Hoffstein 2009-01-12T23:06:00Z 2009-01-12T23:06:00Z <p>Three items I would add to the list:</p> <ol> <li>Bulk insert - Are you importing the data using a bulk provider (i.e. BCP or SqlBulkCopy) or via individual INSERT/UPDATE statements?</li> <li>Indexes - Do you have indexes on your target tables? Can they be dropped prior to import and then rebuilt after?</li> <li>Locking - Is there any contention occurring while you are trying to import data?</li> </ol> http://stackoverflow.com/questions/400646/how-to-weed-out-the-bad-programmers-from-the-competent-ones-in-the-interview-proc/400657#400657 24 Answer by Ben Hoffstein for How to weed out the bad programmers from the competent ones in the interview process Ben Hoffstein 2008-12-30T16:01:42Z 2008-12-30T16:01:42Z <p>As a top-level weeding mechanism, <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">FizzBuzz</a> works.</p> http://stackoverflow.com/questions/192369/books-for-learning-the-r-language/192380#192380 2 Answer by Ben Hoffstein for Books for learning the R language Ben Hoffstein 2008-10-10T17:32:43Z 2008-10-10T17:32:43Z <p><a href="http://rads.stackoverflow.com/amzn/click/1584885394" rel="nofollow">A Handbook of Statistical Analysis Using R</a> is a great resource.</p> <p><img src="http://ecx.images-amazon.com/images/I/511WMMVXFVL._SL500_PIsitb-dp-500-arrow,TopRight,45,-64_OU01_AA240_.jpg" alt="alt text" /></p> <p>By the way, you mentioned in your original thread that you are specifically looking for a good mix of usability (for non-programmer users) and power. R is completely driven by the command line, so I highly recommend you also look at <a href="http://www.insightful.com/products/splus/default.asp" rel="nofollow">S-PLUS</a> since it's very similar to R but contains an elegant GUI interface.</p> http://stackoverflow.com/questions/192332/is-there-a-way-in-net-to-have-a-method-called-automatically-after-another-method/192356#192356 5 Answer by Ben Hoffstein for Is there a way in .NET to have a method called automatically after another method has been invoked but before it is entered Ben Hoffstein 2008-10-10T17:25:50Z 2008-10-10T17:25:50Z <p>You can use a dynamic proxy (<a href="http://www.codeproject.com/KB/cs/hamiltondynamicproxy.aspx" rel="nofollow">Castle's DynamicProxy</a> for example) to intercept the call, run whatever code you wish, and then either invoke your method or not, depending on your needs.</p> http://stackoverflow.com/questions/192088/personal-code-library/192130#192130 3 Answer by Ben Hoffstein for Personal Code Library Ben Hoffstein 2008-10-10T16:23:55Z 2008-10-10T16:23:55Z <p>I have found that using <a href="http://snipplr.com/" rel="nofollow">Snipplr</a> makes this incredibly convenient. You can tag items, save favorites, search by keyword, etc. I mostly use it for Vim-related snippets (common commands, vimrc file, etc.), but it can be used for anything. Check it out.</p> http://stackoverflow.com/questions/191757/c-concatenate-string-and-int/191780#191780 26 Answer by Ben Hoffstein for C++ concatenate string and int Ben Hoffstein 2008-10-10T15:09:47Z 2008-10-10T15:09:47Z <pre><code>std::ostringstream o; o &lt;&lt; name &lt;&lt; age; std::cout &lt;&lt; o.str(); </code></pre> http://stackoverflow.com/questions/191622/c-java-interoperation/191636#191636 5 Answer by Ben Hoffstein for C# - Java interoperation Ben Hoffstein 2008-10-10T14:37:17Z 2008-10-10T14:37:17Z <p>I've used <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a> to accomplish this successfully.</p> http://stackoverflow.com/questions/191533/svn-and-binaries/191552#191552 7 Answer by Ben Hoffstein for SVN and binaries Ben Hoffstein 2008-10-10T14:22:38Z 2008-10-10T14:22:38Z <p>I always do check in third-party DLLs (into a 'lib' folder) so that the application can build and run from a fresh checkout. I think the "do not check in binaries" rule applies to the binaries that are generated by the source code you've checked in.</p> http://stackoverflow.com/questions/191400/how-do-i-protect-all-worksheet-in-an-excel-workbook-with-a-single-click/191416#191416 5 Answer by Ben Hoffstein for How do I protect all worksheet in an Excel workbook with a single click? Ben Hoffstein 2008-10-10T14:02:41Z 2008-10-10T14:02:41Z <p>I don't believe there's a way to do it without using VBA. If you are interested in a VBA solution, here is the code:</p> <pre><code>Dim ws as Worksheet Dim pwd as String pwd = "" ' Put your password here For Each ws In Worksheets ws.Protect Password:=pwd Next ws </code></pre> <p>Unprotecting is virtually the same:</p> <pre><code>Dim ws as Worksheet Dim pwd as String pwd = "" ' Put your password here For Each ws In Worksheets ws.Unprotect Password:=pwd Next ws </code></pre> http://stackoverflow.com/questions/191242/browsing-sql-server/191254#191254 5 Answer by Ben Hoffstein for Browsing SQL Server Ben Hoffstein 2008-10-10T13:23:49Z 2008-10-10T13:23:49Z <p>Yes, <a href="http://www.albahari.com/queryexpress.aspx" rel="nofollow">QueryExpress</a> is a great, lightweight tool (which also can be used from a USB stick) for browsing and querying SQL Server databases.</p> http://stackoverflow.com/questions/191201/indenting-comments-to-match-code-in-vim/191230#191230 2 Answer by Ben Hoffstein for Indenting comments to match code in vim Ben Hoffstein 2008-10-10T13:20:15Z 2008-10-10T13:20:15Z <p>This problem can be solved by putting the following in your _vimrc file.</p> <pre><code>set cindent set cinkeys=0{,0},!^F,o,O,e " default is: 0{,0},0),:,0#,!^F,o,O,e </code></pre> <p><a href="http://thenobot.org/stories/?i=117" rel="nofollow">More info</a>...</p> http://stackoverflow.com/questions/728172/are-there-multiline-comment-delimiters-in-sql-that-are-vendor-agnostic/728326#728326 Comment by Ben Hoffstein on Are there multiline comment delimiters in SQL that are vendor agnostic? Ben Hoffstein 2009-04-08T02:54:12Z 2009-04-08T02:54:12Z Fair enough, it was not clear which SQL standard was being discussed (and my information was outdated). Nonetheless, I still assert that C-style comments are not completely vendor agnostic. http://stackoverflow.com/questions/728300/what-tasks-regularly-get-in-your-way-as-a-programmer/728306#728306 Comment by Ben Hoffstein on What tasks regularly get in your way as a programmer? Ben Hoffstein 2009-04-08T02:46:01Z 2009-04-08T02:46:01Z We have found that cubicle commodes work well for this. http://stackoverflow.com/questions/728300/what-tasks-regularly-get-in-your-way-as-a-programmer/728304#728304 Comment by Ben Hoffstein on What tasks regularly get in your way as a programmer? Ben Hoffstein 2009-04-08T02:44:00Z 2009-04-08T02:44:00Z @Rick that's why I steer clear of your products :-) http://stackoverflow.com/questions/728267/how-to-get-record-about-top-9-and-another-top-9-in-sql-query Comment by Ben Hoffstein on How to get record about top 9 and another top 9 in sql query Ben Hoffstein 2009-04-08T02:31:24Z 2009-04-08T02:31:24Z SELECT * FROM users WHERE clue &gt; 0; 0 rows returned http://stackoverflow.com/questions/635446/svn-is-there-a-way-to-mark-a-file-as-do-not-commit/635454#635454 Comment by Ben Hoffstein on SVN: Is there a way to mark a file as "do not commit"? Ben Hoffstein 2009-03-11T17:06:02Z 2009-03-11T17:06:02Z Note, the above example shows how to use a previously-configured cvsignore file as input to your svnignore property. http://stackoverflow.com/questions/620844/why-do-i-get-unexpected-behavior-in-python-isinstance-after-pickling Comment by Ben Hoffstein on Why do I get unexpected behavior in Python isinstance after pickling? Ben Hoffstein 2009-03-07T15:02:17Z 2009-03-07T15:02:17Z Thanks all for the useful answers. I hadn't used isinstance much before and now have a much better idea how it works. http://stackoverflow.com/questions/620844/why-do-i-get-unexpected-behavior-in-python-isinstance-after-pickling/620878#620878 Comment by Ben Hoffstein on Why do I get unexpected behavior in Python isinstance after pickling? Ben Hoffstein 2009-03-06T23:31:29Z 2009-03-06T23:31:29Z Thank you, makes sense. Just trying to figure out how this impacts the concept of sending serialized objects between a server and client where the class definitions will be physically distinct. http://stackoverflow.com/questions/620844/why-do-i-get-unexpected-behavior-in-python-isinstance-after-pickling Comment by Ben Hoffstein on Why do I get unexpected behavior in Python isinstance after pickling? Ben Hoffstein 2009-03-06T23:25:25Z 2009-03-06T23:25:25Z It's a toy example. In practice, suppose I wanted to pickle an object, send it over the wire, and unpickle it on the other side. The receiving end will need to have a separate definition of the class, which is what I'm trying to demonstrate here. http://stackoverflow.com/questions/535355/implementing-search-as-you-type-in-excel-2003 Comment by Ben Hoffstein on Implementing Search As You Type in Excel 2003 Ben Hoffstein 2009-02-11T04:10:09Z 2009-02-11T04:10:09Z Can you please provide an example of how &quot;search as you type&quot; would work? Can't tell from the question whether you mean highlighting matching cells as the user types in a search term, autocompleting a cell value, or something else. http://stackoverflow.com/questions/520714/can-someone-explain-quake3s-hunk Comment by Ben Hoffstein on Can someone explain Quake3's 'hunk'? Ben Hoffstein 2009-02-06T16:10:03Z 2009-02-06T16:10:03Z John is busy launching rockets (<a href="http://www.armadilloaerospace.com/" rel="nofollow">armadilloaerospace.com</a>). Can you post one or two relevant code examples of hunk vs. zone to refresh out memories? http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520859#520859 Comment by Ben Hoffstein on What are common concurrency pitfalls? Ben Hoffstein 2009-02-06T16:03:56Z 2009-02-06T16:03:56Z i won't make the obvious joke about a &quot;race condition&quot;. http://stackoverflow.com/questions/445695/do-you-put-your-calculations-on-your-sets-or-your-gets/445709#445709 Comment by Ben Hoffstein on do you put your calculations on your sets or your gets . . Ben Hoffstein 2009-01-15T12:55:59Z 2009-01-15T12:55:59Z My definition of lazy in this case is that TotalCash is only calculated on demand, not everytime one of it's 'upstream' components is changed. http://stackoverflow.com/questions/437419/c-execute-multiple-command-lines-with-the-same-process/437583#437583 Comment by Ben Hoffstein on C# - Execute multiple command lines with the same process Ben Hoffstein 2009-01-13T23:00:28Z 2009-01-13T23:00:28Z Can you change the current directory to the MySQL folder (the one containing your CaseManager.sql) script? In that case you wouldn't need to provide the absolute path, just the filename. http://stackoverflow.com/questions/191430/what-tools-does-your-office-use/191495#191495 Comment by Ben Hoffstein on What tools does your office use? Ben Hoffstein 2008-10-10T14:18:58Z 2008-10-10T14:18:58Z I just can't get past the fact that Notepad++ defaults to Comic Sans for all comments (across all languages). http://stackoverflow.com/questions/191201/indenting-comments-to-match-code-in-vim/191230#191230 Comment by Ben Hoffstein on Indenting comments to match code in vim Ben Hoffstein 2008-10-10T14:09:36Z 2008-10-10T14:09:36Z I'll leave my answer here in case someone happens to be using an older version of Vim that doesn't support filetype plugins, but I recommend using Richard Waite's solution whenever possible.