User Benjamin Pollack - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T18:32:39Zhttp://stackoverflow.com/feeds/user/2354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1925498/is-there-any-way-to-develop-in-smalltalk-without-using-a-vm/1926091#19260919Answer by Benjamin Pollack for Is There Any Way To Develop in Smalltalk Without Using a VM?Benjamin Pollack2009-12-18T03:27:59Z2009-12-18T03:27:59Z<p>An image in Smalltalk is analogous to VMware machine: it's simply a frozen state of a running Smalltalk application. <em>All</em> Smalltalks use images, and developing with one is the preferred way to do development in all Smalltalks. Likewise, all Smalltalks compile to bytecode and run on virtual machines, just like Java, .NET, Python, and others do. But that's completely unrelated to what program you use to develop a Smalltalk program, and how native the experience feels.</p>
<p>As others have mentioned, Squeak actually comes with an extremely good IDE—namely, all of Squeak. However, I don't think that's what you're actually asking. As best as I can understand, your question is either or both of:</p>
<ol>
<li>Can I develop for Smalltalk in tools I'm familiar with, in methods familiar to me? For example, on a file-by-file basis, in a normal text editor?</li>
<li>Can I make normal-looking applications using Smalltalk?</li>
</ol>
<p><strong>Can I develop for Smalltalk in tools I'm familiar with?</strong></p>
<p>In answer to the first: for nearly all Smalltalks, no. Smalltalk's file format was designed to be manipulated within a Smalltalk IDE, rather than directly in a text editor. That's why Squeak, Pharo, VisualWorks, VisualAge, and every other Smalltalk I've ever used avoid having you edit the source directly, and instead provide their own custom IDEs. Because these tools are cross-platform, their IDEs are generally not native, but rather represent an emulated cross-platform feel. While you <em>can</em> edit the source directly for all of these systems (for example, you can edit the <code>foo.sources</code> file for a Squeak image, then use the Change Browser to load in your edits), no one actually does that.</p>
<p>There are two routes that might make you happier in this regard. First, as others have pointed out, <a href="http://smalltalk.gnu.org/" rel="nofollow">GNU Smalltalk</a> breaks the mold, and does, in fact, have an editor-friendly, file-based format. GNU Smalltalk did not run well under Windows last I checked, and is GPL-licensed, which may be a problem for you. But it does allow you to use the editor of your choice. Both vim and Emacs have syntax highlighting for GNU Smalltalk, and while I'm not aware of a package for NetBeans, Emacs, or one of the other major IDEs, it wouldn't be very hard to write one.</p>
<p>The second route you could take, if your only concern is that Squeak looks "ugly," would be to use <a href="http://www.object-arts.com/content/navigation/home.html" rel="nofollow">Dolphin Smalltalk</a>. Dolphin Smalltalk is a Windows-native version of Smalltalk. While its future is confusing at the moment, you may wish to take a look at it, as you would probably feel much more at home in its native environment, if Squeak's bothers you.</p>
<p><strong>Can I make native-looking applications?</strong></p>
<p>If you want truly native widgets, you have few options at the moment. Dolphin provides native widgets, but, as I mentioned previously, its future is currently uncertain. Squeak, VisualWorks, and GNU Smalltalk provide good FFI systems, and you could therefore make native UIs, but doing so would be comparatively arduous and complicated. So, basically: if this is very important to you, then, <em>right now</em>, using a Smalltalk may not be your best option.</p>
<p>Note that there are <em>many</em> applications for which having native widgets is not important. Games and kiosks certainly do not need to use standard widgets, but if you look around, very few mainstream apps bother to use them, either. Microsoft's own products are notorious for having custom look-and-feels, Chrome looks amusingly out-of-place on every platform it runs on, iTunes is amazingly popular despite looking truly bizarre on Windows systems, and so on. The plethora of interfaces on websites have also better acclimated people to nonstandard interfaces. So there's the real possibility that you simply don't care--and as Squeak's interface is highly themeable, making it look "pretty" when you near shipping will not be difficult.</p>
<p>(GNU Smalltalk <em>does</em> have very good Gtk+ bindings, which may be acceptable to you, depending on what you're trying to do. There are major applications, such as The GIMP and Pidgin, written against Gtk+ that look just fine in Windows. Nevertheless, I'd pardon you for not considering that a viable option.)</p>
<p><strong>My recommendation</strong></p>
<p>To be honest, I'd strongly encourage you to find one of the Smalltalks with an IDE you like, and use it. You'll be vastly more productive then trying to use a text editor, whether it's a glossed-up one like Eclipse, or a crappy one like Scite. You'll be missing an awful lot of Smalltalk's greatness if you go other routes: no REPL, inferior debugging, inferior code browsing, and so on.</p>
<p>If you insist on using a traditional development environment, the best option is GNU Smalltalk. You should carefully evaluate whether you're happy with its stability and performance on Windows before using it, and make sure you're comfortable with the implications of its GPL license, but if you are, it's the only Smalltalk that really and truly endorses a file-based development model.</p>
http://stackoverflow.com/questions/1257262/which-full-text-search-package-should-i-use-for-sqlite32Which full-text search package should I use for SQLite3?Benjamin Pollack2009-08-10T21:15:59Z2009-12-17T14:43:53Z
<p>SQLite3 appears to come with three different full-text search engines, called FTS1, FTS2, and FTS3. The documentation available on the website mentions that FTS1 is stable, FTS2 is in development, and that you should use FTS2. Examples I find online use FTS3, which is in CVS, and not documented versus FTS2. None of the full-text search engines come with the amalgamated source, as near as I can tell.</p>
<p>So, my question: which of these three engines, if any, should I use for full-text indexing in SQLite? Or should I simply use a third-party tool like Sphinx, or a custom solution in Lucene, instead?</p>
http://stackoverflow.com/questions/1821632/making-windows-executables-from-django-applications1Making Windows executables from Django applicationsBenjamin Pollack2009-11-30T18:45:23Z2009-12-16T22:15:13Z
<p>I am trying to make a Django website be a simple Windows executable. I've been told that <code>py2exe</code> does not work correctly, both due to Django using <code>__import__</code>, and to its attempting to dispatch <code>manage.py</code> in some obscure way. Is that the case? If so, is there an alternative tool that works better, or is there a way to work around the <code>py2exe</code> issues?</p>
http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows2Limitations of TEMP directory in Windows?Benjamin Pollack2009-11-05T21:39:30Z2009-12-14T00:30:13Z
<p>I have an application written in Python that's writing large amounts of data to the <code>%TEMP%</code> folder. Oddly, every once and awhile, it dies, returning <code>IOError: [Errno 28] No space left on device</code>. The drive has <em>plenty</em> of free space, <code>%TEMP%</code> is not its own partition, I'm an administrator, and the system has no quotas.</p>
<p>Does Windows artificially put some types of limits on the data in <code>%TEMP%</code>? If not, any ideas on what could be causing this issue?</p>
<p><strong>EDIT</strong>: Following discussions below, I clarified the question to better explain what's going on.</p>
http://stackoverflow.com/questions/1833536/how-can-mercurial-be-copyright-and-free-software/1833565#18335654Answer by Benjamin Pollack for How can Mercurial be Copyright and Free Software?Benjamin Pollack2009-12-02T15:19:06Z2009-12-02T15:19:06Z<p>The GPL (and similar licenses) work via copyright. In the US, as well as any country that's a signatory to the Bern convention, works are copyright to the creator by default, and cannot be distributed without their permission. The GPL grants such permission—with some additional restrictions to boot. Since you would normally not have permission to distribute the software at all, the restrictions in the GPL that you have to endure in exchange for redistribution can be automatically activated merely by redistributing the software.</p>
<p>Thus, your question shouldn't be how a program can be GPL'd and be copyrighted; rather, it'd be how the GPL leverages copyright to work.</p>
http://stackoverflow.com/questions/1821471/python-nested-loop/1821511#18215117Answer by Benjamin Pollack for Python: Nested LoopBenjamin Pollack2009-11-30T18:27:53Z2009-11-30T18:27:53Z<p>List comprehensions and generators are only designed to be used as expressions, while printing is a statement. While you can effect what you're trying to do by doing</p>
<pre><code>from __future__ import print_function
for x in a:
[print(each) for each in x]
</code></pre>
<p>doing so is amazingly unpythonic, and results in the generation of a list that you don't actually need. The best thing you could do would simply be to write the nested <code>for</code> loops in your original example.</p>
http://stackoverflow.com/questions/1758928/resources-for-getting-started-on-modern-perl13Resources for getting started on "modern" PerlBenjamin Pollack2009-11-18T20:42:29Z2009-11-20T23:46:11Z
<p>After having heard about new parts of the Perl ecosystem, such as Moose, DeclareX, and Catalyst, I thought that it'd be nice to take a look at Perl. Unfortunately, all of the introductory material I can find targets Perl 5.8 or 5.6, and knows nothing about these newer frameworks—let alone features introduced in recent Perl versions, such as the <code>~~</code> operator. What resources are available for someone interested in coming to Perl fresh, and wanting to learn the current best-practice way to do things right from the get-go?</p>
<p>While I can read the 3rd edition of the camel book, then work the rest of my way through piles of CPAN documentation and the like, I'd tremendously appreciate a tutorial that doesn't force me to learn a bunch of deprecated ways to do things, just to turn around and unlearn them again when I read a reference manual. Real-world code that's well-documented and uses some of these newer corners of Perl would also be wonderful.</p>
http://stackoverflow.com/questions/1771659/format-a-string-in-c/1771670#17716709Answer by Benjamin Pollack for Format a string in CBenjamin Pollack2009-11-20T16:32:57Z2009-11-20T16:32:57Z<p>You're looking for the <code>sprintf</code> family of functions. Their general format is:</p>
<pre><code>char output[80];
sprintf(output, "No record with name %s found\n", inputString);
</code></pre>
<p>However, <code>sprintf</code> by itself is <em>extremely</em> dangerous. It is prone to something called buffer overruns. What this means it that sprintf has no idea how big the <code>output</code> string you provide it is, so it will willingly write more data to it than is available. For example, this will compile cleanly, but will overwrite valid memory—and there is no way to let <code>sprintf</code> know that it's doing anything wrong:</p>
<pre><code>char output[10];
sprintf(output, "%s", "This string is too long");
</code></pre>
<p>The solution is to use a function as <code>snprintf</code>, which takes a length parameter:</p>
<pre><code>char output[10];
snprintf(output, sizeof output, "%s", "This string is too long, but will be truncated");
</code></pre>
<p>or, if you're on a Windows system, to use the <code>_sntprintf</code> variants and friends, which protect against overflowing of either the input or output strings.</p>
http://stackoverflow.com/questions/1759018/distributed-source-control-for-visualworks-smalltalk2Distributed source control for VisualWorks SmalltalkBenjamin Pollack2009-11-18T20:53:56Z2009-11-19T17:06:15Z
<p>One of the annoying things about Smalltalk is that it (usually) requires its own VCS, due to the way that it manages its source code. Squeak and Gemstone (at least in its GLASS version) have a DVCS called Monticello that works passably well. As near as I can tell, VisualWorks' main VCS, StORE, only works in old-fashioned centralized mode. Is there a system similar to Monticello available for VisualWorks? Alternatively, am I misunderstanding the right way to use StORE?</p>
http://stackoverflow.com/questions/1759619/remove-13-from-python-string/1759635#17596352Answer by Benjamin Pollack for Remove from python stringBenjamin Pollack2009-11-18T22:31:35Z2009-11-18T22:31:35Z<p>You can simply do</p>
<pre><code>s = s.replace('\r\n', '\n')
</code></pre>
<p>to replace all occurrences of CRNL with just NL, which seems to be what you want.</p>
http://stackoverflow.com/questions/329109/visualworks-smalltalk-like-ide-for-c-linux/1758972#17589720Answer by Benjamin Pollack for VisualWorks Smalltalk-like IDE for C++ (Linux)Benjamin Pollack2009-11-18T20:48:39Z2009-11-18T20:48:39Z<p>There are at least two options I'm aware of:</p>
<ol>
<li><a href="http://sourceforge.net/projects/oo-browser/" rel="nofollow">OO Browser</a>, whose entire purpose is to bring Smalltalk-style browsers to other languages. I do not know how well the project is maintained, but despite its rather lackluster appearance, it worked extremely well the last time I tried to use it (which would've been about three years ago).</li>
<li><a href="http://tibleiz.net/code-browser/" rel="nofollow">Code Browser</a>, which is designed to provide generic ways to navigate through, and manage, complex code hierarchies. It provides many ways to view code, but one of them is indeed the Smalltalk browser model (e.g., take a look at <a href="http://tibleiz.net/code-browser/images/gtk.png" rel="nofollow">this screen shot</a> of the Code Browser editing itself)</li>
</ol>
http://stackoverflow.com/questions/1758830/is-ifobj-obj-nil-correct-and-necessary/1758864#175886414Answer by Benjamin Pollack for Is if(obj && obj != nil) correct and necessary?Benjamin Pollack2009-11-18T20:33:30Z2009-11-18T20:33:30Z<p>Correct? Yes. Necessary? No. Objective-C simply <code>#define</code>s <code>nil</code> to <code>(void *)0</code>, which is, in C terms, false. So simply writing</p>
<pre><code>if (obj) {
[obj someMessage];
[anotherObj someOtherMessage];
}
</code></pre>
<p>is sufficient. Further, since Objective-C has message-eating <code>nil</code>, you can simply omit the check in some circumstances. (E.g., if the second line were not there in the <code>if</code> block, you could simply call <code>[obj someMessage]</code> indiscriminately.)</p>
http://stackoverflow.com/questions/1745525/net-application-to-mac-os-x-application/1745620#17456207Answer by Benjamin Pollack for .NET application to Mac OS X application?Benjamin Pollack2009-11-16T23:43:41Z2009-11-16T23:43:41Z<p>The answer depends strongly on what you are attempting to do.</p>
<p>The <a href="http://www.mono-project.com" rel="nofollow">Mono Project</a> allows you to run CLR-based applications on OS X. Mono's libraries, however, are not complete replicas of those on the official Microsoft .NET runtimes, and it's quite easy to make software that runs fine on Windows but fails miserably on Mono. The <a href="http://www.mono-project.com/MoMA" rel="nofollow">Mono Migration Analyzer</a>, also known as <a href="http://www.mono-project.com/MoMA" rel="nofollow">MoMA</a>, is a tool you can run against your .NET assemblies to learn whether they will run on Mono, and, in rough terms, how well.</p>
<p>One place where you're almost certainly going to get hit, given that you are writing a VB.NET application, is the GUI libraries. WinForms requires X windows on Mac, which is not installed by default. While Mono provides some facilities for making native GUIs using .NET, doing so would require rewriting your user interface more or less from scratch--and the main project to do that, <a href="http://www.mono-project.com/CocoaSharp" rel="nofollow">Cocoa#</a>, seems quite dead at the moment.</p>
<p>So, basically: if your application is not a GUI application, your chance of being able to run on Mac is probably fairly high. Otherwise, it'd probably be worth putting your efforts elsewhere.</p>
http://stackoverflow.com/questions/1743961/adding-charset-to-all-asp-net-mvc-http-responses3Adding "charset" to all ASP.NET MVC HTTP responsesBenjamin Pollack2009-11-16T18:27:35Z2009-11-16T18:43:22Z
<p>Is there an easy way to specify all "normal" views is an ASP.NET MVC app are to have <code>charset=utf-8</code> appended to the <code>Content-Type</code>? <code>View()</code> lacks an override that allows you to specify the <code>Content-Type</code>, and <code>ActionResult</code> and friends don't seem to expose anything, either. The motivation is obviously to work around Internet Explorer guessing the "correct" encoding type, which I in turn want to do to avoid UTF-7 XSS attacks.</p>
http://stackoverflow.com/questions/1583145/performance-differences-between-swazoo-and-komanche/1661245#16612453Answer by Benjamin Pollack for Performance differences between Swazoo and Komanche?Benjamin Pollack2009-11-02T13:10:57Z2009-11-02T13:10:57Z<p>The only major differences between the two are:</p>
<ol>
<li><strong>Swazoo is licensed under the LGPL, while Komanche is licensed under the MIT license.</strong> Some people are very uncomfortable using LGPL software in Smalltalk, since the definition of whether something is a library in a Smalltalk is extremely ambiguous. If you share that concern, use Komanche.</li>
<li><strong>Komanche only works in Squeak/Pharo and Gemstone, while Swazoo works in most Smalltalks.</strong> In particular, Swazoo runs in GNU Smalltalk, VisualWorks, Squeak/Pharo, Gemstone, and Dolphin. If you're going to be working directly with the web server (which, to make this clear, is very rare), you should probably develop against Swazoo. This should only be a factor in very unusual applications.</li>
<li><strong>Seaside's COMET packages only support Komanche.</strong> So if you want COMET and Seaside, you'll need Komanche.</li>
</ol>
<p>Otherwise, the two servers are roughly equivalent in terms of features and performance, and I don't honestly think it makes a large difference.</p>
http://stackoverflow.com/questions/486383/safer-alternatives-to-the-c-standard-library9Safer Alternatives to the C Standard LibraryBenjamin Pollack2009-01-28T03:26:18Z2009-10-26T22:10:10Z
<p>The C standard library is notoriously poor when it comes to I/O safety. Many functions have buffer overflows (<code>gets</code>, <code>scanf</code>), or can clobber memory if not given proper arguments (<code>scanf</code>), and so on. Every once and awhile, I come across an enterprising hacker who has written his own library that lacks these flaws.</p>
<p>What are the best of these libraries you have seen? Have you used them in production code, and if so, which held up as more than hobby projects?</p>
http://stackoverflow.com/questions/849216/creating-models-in-asp-net-mvc/858378#8583785Answer by Benjamin Pollack for Creating Models in ASP.NET MVCBenjamin Pollack2009-05-13T14:42:27Z2009-10-18T16:45:14Z<p>I think what you want to do is to turn the question around. Entities can be automatically generated from the database, so the issue is simply using a .NET mechanism to maintain your database schema. Since you're not using NHibernate, which these other solutions require, I would suggest using <a href="http://code.google.com/p/migratordotnet/" rel="nofollow">MigratorDotNet</a>. MigratorDotNet uses exactly the same idea as Ruby on Rails migrations:</p>
<ol>
<li>Your database keeps track of its version</li>
<li>Every time you wish to change the schema, you write a small class to handle the upgrade (and, optionally, downgrade)</li>
<li>Assign these classes an execution order</li>
<li>If the database is ever not up-to-date, simply execute the classes' upgrade methods in order</li>
</ol>
<p>Since you'll only be regenerating your Entities at compile time, I'd recommend running the migration scripts, and then regenerating your entities, as a part of your build process. MigratorDotNet already comes with <a href="http://code.google.com/p/migratordotnet/wiki/MSBuildTarget" rel="nofollow">an MSBuildTarget</a>, adding it will just involve a couple of clicks.</p>
http://stackoverflow.com/questions/1521425/using-url-routeurl-to-redirect-to-url-with-and-so-on1Using Url.RouteUrl to Redirect to URL with #, %, and so onBenjamin Pollack2009-10-05T17:44:21Z2009-10-15T17:05:52Z
<p>In a web application I'm working on, we'd like to be able to show information about resources at a given path. The path is entirely virtual—it only exists in the application—so we don't really have a problem with users setting virtual paths that are "weird" by normal file system standards.</p>
<p>The issue: we have a route that reads something similar to</p>
<pre><code>/Files/{*path}
</code></pre>
<p>and we attempt to redirect with</p>
<pre><code>Url.RouteUrl("File", new { path = somePath })
</code></pre>
<p>This usually works, but fails if somePath contains & or #, among others. In those cases, I'm suck. I can't <code>UrlEncode(somePath)</code> at this point, because RouteUrl does its own URL encoding, but I can't leave them as-is, because otherwise they're treated improperly (the octothorp doesn't get passed to the routing data, and the ampersand confuses IIS). Is there a sane way around this? Or do I basically just need to implement my own routes via string interpolation?</p>
http://stackoverflow.com/questions/1521425/using-url-routeurl-to-redirect-to-url-with-and-so-on/1573742#15737420Answer by Benjamin Pollack for Using Url.RouteUrl to Redirect to URL with #, %, and so onBenjamin Pollack2009-10-15T17:05:52Z2009-10-15T17:05:52Z<p>The best answer I've found so far, though it only works on IIS7, is to follow the instructions at <a href="http://dirk.net/2008/06/09/ampersand-the-request-url-in-iis7/" rel="nofollow">http://dirk.net/2008/06/09/ampersand-the-request-url-in-iis7/</a> to edit the registry and change some of IIS7's default behavior. This is unacceptable for us, since we're making an application that will be installed on end user's machines—and at any rate, even if we weren't, there'd be the simple fact that IIS6 and IIS5 don't respond to this sequence. Any ideas for earlier versions of IIS, or ways to override this behavior programmatically in IIS7, would be wonderful.</p>
http://stackoverflow.com/questions/1573450/escaping-selectparameters-in-asp-net/1573479#15734791Answer by Benjamin Pollack for Escaping SelectParameters in ASP.NETBenjamin Pollack2009-10-15T16:21:02Z2009-10-15T16:21:02Z<p>Yes: in this case, you are fully protected from SQL injection. That's the whole point for having SQL parameters in this fashion.</p>
http://stackoverflow.com/questions/1526326/smalltalk-how-to-insert-tab-in-a-string/1527977#15279772Answer by Benjamin Pollack for Smalltalk, how to insert tab in a stringBenjamin Pollack2009-10-06T20:36:29Z2009-10-06T20:36:29Z<p>As Damien noted, you can simply concatenate several calls to <code>String tab</code> to achieve what you wanted. The <code><t></code> trick you're trying, though, happens in Squeak-based Smalltalks if you call <code>expandMacros</code> on your string. E.g.,</p>
<pre><code>'Here is<t>a tab and<n>a blank line' expandMacros
</code></pre>
<p>This mechanism is generic, and quite easily extensible; see <code>String>>expandMacrosWithArguments:</code> for more information.</p>
http://stackoverflow.com/questions/1097585/is-there-a-script-that-turns-a-pharo-core-image-into-something-more-useful-that/1526015#15260151Answer by Benjamin Pollack for Is there a script that turns a Pharo core image into something more useful, that would include an OmniBrowser?Benjamin Pollack2009-10-06T14:40:11Z2009-10-06T14:40:11Z<p><a href="http://wiki.squeak.org/squeak/1914" rel="nofollow">CommandShell</a> works with Pharo 9.10.10. You will hit several errors as you try to load the package due to Pharo lacking MVC, but you can simply proceed past the first bunch and abandon the last one (that tries to actually open a CommandShell in Morphic). At that point, you'll have a class called <code>PipeableOSProcess</code> that can be used very easily to grab output. For example:</p>
<pre><code>(PipeableOSProcess command: 'ls /bin') output
</code></pre>
<p>will return the contents of your bin directory as a string.</p>
http://stackoverflow.com/questions/1412863/how-do-i-view-the-sql-generated-by-the-entity-framework/1412878#14128781Answer by Benjamin Pollack for How do I view the SQL generated by the entity framework ?Benjamin Pollack2009-09-11T19:37:59Z2009-09-11T19:37:59Z<p>There are two ways:</p>
<ol>
<li>To view the SQL that will be generated, simply call <code>ToTraceString()</code>. You can add it into your watch window and set a breakpoint to see what the query would be at any given point for any LINQ query.</li>
<li>You can attach a tracer to your SQL server of choice, which will show you the final query in all its gory detail. In the case of MySQL, the easiest way to trace the queries is simply to tail the query log with <code>tail -f</code>. You can learn more about MySQL's logging facilities in <a href="http://dev.mysql.com/doc/refman/5.1/en/query-log.html" rel="nofollow">the official documentation</a>. For SQL Server, the easiest way is to use the included SQL Server profiler.</li>
</ol>
http://stackoverflow.com/questions/702502/programmatically-disable-network-auto-tune-in-windows-vista2Programmatically disable network auto-tune in Windows VistaBenjamin Pollack2009-03-31T18:45:45Z2009-09-02T20:45:48Z
<p>One of our applications is exhibiting poor network behavior on Vista due to the new network stack's auto-tuning functionality. I'm working on tracking down why the problem's happening, but in the meantime, it'd be wonderful if we could simply disable auto-tuning on our application for the time being. Is there any way to do so programmatically, ideally just on a per-application basis? The only solution I've found is to use an elevated command-prompt—not an acceptable solution for our users.</p>
http://stackoverflow.com/questions/1331385/how-can-i-see-incoming-commits-in-git4How can I see incoming commits in git?Benjamin Pollack2009-08-25T22:31:30Z2009-08-26T19:35:04Z
<p>How can I see incoming commits in git? Or even better, see what I just <code>git fetch</code>/<code>git pull</code>ed?</p>
<p><strong>Edit:</strong> To clarify the question: someone tells me that, to get some fixes, I should pull from their repository. My goal is to see what their changes are <em>before</em> I accept them. <code>git pull</code> automatically merges, which is not what I want. <code>git fetch</code> will grab them without merging, but I'm unsure how to view what exactly I just pulled in. The reason for the original phrasing is that I normally use Mercurial, where the command would be <code>hg incoming <repo name here></code>—a command for which git seems to lack an analog.</p>
http://stackoverflow.com/questions/1328836/include-line-numbers-in-stack-trace-without-pdb/1328915#13289158Answer by Benjamin Pollack for include line numbers in stack trace without pdb?Benjamin Pollack2009-08-25T15:10:57Z2009-08-25T16:24:14Z<p>You can't get a stack trace with line numbers directly from your application unless you bundle the PDB. <em>However</em>, if you have the PDB files for the same version of the app that you ship to your customers, and you don't mind some light scripting, then you <em>can</em> turn the .NET stack trace and IL offsets back into line numbers.</p>
<p>During your build process, use <a href="http://blogs.msdn.com/jmstall/archive/2005/08/25/pdb2xml.aspx" rel="nofollow">Mike Stall's pdb2xml converter</a>, distributed as part of his excellent <a href="http://blogs.msdn.com/jmstall/archive/2005/11/08/mdbg%5Flinkfest.aspx" rel="nofollow">MDbg managed code debugger</a>, and store them some place secure (e.g., source control). When you get a stack trace back from the client, you can query the IL offset from the XML data to determine the relevant line number. If your stack traces get submitted to a website, you can even automate the conversion, so that developers will already be getting fully detailed stack traces by the time the cases hit their inbox.</p>
http://stackoverflow.com/questions/1288046/how-can-i-get-my-webapps-base-url-in-asp-net-mvc4How can I get my webapp's base URL in ASP.NET MVC?Benjamin Pollack2009-08-17T13:47:41Z2009-08-20T15:43:08Z
<p>How can I quickly determine what the root URL is for my ASP.NET MVC application? I.e., if IIS is set to serve my application at <a href="http://example.com/foo/bar" rel="nofollow">http://example.com/foo/bar</a>, then I'd like to be able to get that URL in a reliable way that doesn't involve getting the current URL from the request and chopping it up in some fragile way that breaks if I re-route my action.</p>
<p>The reason that I need the base URL is that this web application calls another one that needs the root to the caller web application for callback purposes.</p>
http://stackoverflow.com/questions/1294335/how-to-write-os-x-finder-plugin/1294456#12944564Answer by Benjamin Pollack for How to Write OS X Finder pluginBenjamin Pollack2009-08-18T15:01:40Z2009-08-18T15:28:33Z<p>Sadly, programming a Finder plugin actually <em>does</em> still require getting your hands dirty with COM. If you look at the SCFinderPlugin subproject of the SCPlugin project, you will find that it follows exactly the same techniques outlined in your first link, including setting up a vtable for COM, writing AddRef/ReleaseRef functions, and so on. Writing a plugin, where you're simultaneously managing old-school Carbon memory management, COM-style memory management, and Cocoa/new-style Carbon memory management, can be an incredible pain—and that totally ignores the fact that you'll be interacting in three or more radically different APIs, with different naming conventions and calling semantics. Calling the situation hysterically poor would be a vast understatement.</p>
<p>On the bright side, the Finder in Mac OS X 10.6 Snow Leopard has been fully rewritten in Cocoa--and with that come vastly superior plugin interfaces. If you are lucky enough to be in a situation where you can actually only target Snow Leopard, you probably should grab an ADC Premier or higher membership, download the prerelease builds, and code against that. Besides, your plugin may not work on 10.6 anyway without a Cocoa rewrite, so it might make good sense to take a look at Snow Leopard before it gets released, regardless.</p>
http://stackoverflow.com/questions/1257236/django-emacs-as-textmate-replacement/1257306#12573068Answer by Benjamin Pollack for Django + Emacs (as TextMate replacement) Benjamin Pollack2009-08-10T21:26:42Z2009-08-10T22:53:03Z<p>I second @docgnome's suggestion of <a href="http://code.djangoproject.com/wiki/Emacs" rel="nofollow">Django mode</a> and <a href="http://code.google.com/p/yasnippet/" rel="nofollow">yasnippet</a>, but the real kicker that will make you never want to go back to TextMate is to integrate <a href="http://divmod.org/trac/wiki/DivmodPyflakes" rel="nofollow">PyFlakes</a> into your development environment, at which point Emacs will provide you on-the-fly notification of errors in your Python code. These go far beyond the typo-level error detection you get for free merely by having syntax highlighting; you'll be notified of errors such as variable before assignment, unused imports, and bad indentation, among other things.</p>
<p>Installing PyFlakes in Emacs is relatively straightforward: just download and install <a href="http://divmod.org/trac/wiki/DivmodPyflakes" rel="nofollow">PyFlakes</a>, and then add the following to your <code>~/.emacs</code> or <code>~/.emacs.d/init.el</code>, as appropriate:</p>
<pre><code>(when (load "flymake" t)
(defun flymake-pyflakes-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
'flymake-create-temp-inplace))
(local-file (file-relative-name
temp-file
(file-name-directory buffer-file-name))))
(list "pyflakes" (list local-file))))
(add-to-list 'flymake-allowed-file-name-masks
'("\\.py\\'" flymake-pyflakes-init)))
(add-hook 'python-mode-hook 'flymake-mode)
</code></pre>
<p>That's it. You should now notice that, whenever you're editing Python, errors are highlighted in red. Mouse over to see a full explanation of what's wrong with the provided line.</p>
<p>As far as theming like TextMate: theming can be a bit annoying Emacs; unless you truly want the exact theme you have in TextMate, I'd grab <a href="http://www.nongnu.org/color-theme/" rel="nofollow">Color Theme</a> for Emacs and find one that suits your fancy. You can almost certainly find one very close to your current TextMate one, and won't have to deal with manually configuring faces.</p>
http://stackoverflow.com/questions/1046230/streaming-large-file-uploads-to-asp-net-mvc8Streaming large file uploads to ASP.NET MVCBenjamin Pollack2009-06-25T20:58:25Z2009-08-10T21:36:54Z
<p>For an application I'm working on, I need to allow the user to upload very large files--i.e., potentially many gigabytes--via our website. Unfortunately, ASP.NET MVC appears to load the entire request into RAM before beginning to service it--not exactly ideal for such an application. Notably, trying to circumvent the issue via code such as the following:</p>
<pre><code>if (request.Method == "POST")
{
request.ContentLength = clientRequest.InputStream.Length;
var rgbBody = new byte[32768];
using (var requestStream = request.GetRequestStream())
{
int cbRead;
while ((cbRead = clientRequest.InputStream.Read(rgbBody, 0, rgbBody.Length)) > 0)
{
fileStream.Write(rgbBody, 0, cbRead);
}
}
}
</code></pre>
<p>fails to circumvent the buffer-the-request-into-RAM mentality. Is there an easy way to work around this behavior?</p>
http://stackoverflow.com/questions/1821632/making-windows-executables-from-django-applicationsComment by Benjamin Pollack on Making Windows executables from Django applicationsBenjamin Pollack2009-11-30T19:37:48Z2009-11-30T19:37:48ZJust so that this doesn't sound <i>quite</i> so idiotic a question as it does on first reading: the use-case is a tiny little embedded server that won't ever actually be exposed to the world—hence why I'm not looking to integrate with IIS or the like. The dev server (or something of similar calibre) is just fine for this use-case.http://stackoverflow.com/questions/1821471/python-nested-loopComment by Benjamin Pollack on Python: Nested LoopBenjamin Pollack2009-11-30T18:23:53Z2009-11-30T18:23:53ZI'm not quite clear what you're trying to do. Your second example has an implicit loop via a list generator. Is your issue simply that you don't want to have two <code>for</code> loops following each other for aesthetic reasons?http://stackoverflow.com/questions/1771659/format-a-string-in-c/1771670#1771670Comment by Benjamin Pollack on Format a string in CBenjamin Pollack2009-11-20T18:06:20Z2009-11-20T18:06:20ZGood point. Even that, though, can fail in some really common cases, such as passing <code>array</code> to a function--at which point, <code>sizeof array</code> is 4 or 8 on any modern system, regardless of the number and size of the elements therein. The real solution is to use <code>std::vector</code> or something similar and avoid the whole mess entirely.http://stackoverflow.com/questions/1758928/resources-for-getting-started-on-modern-perl/1760344#1760344Comment by Benjamin Pollack on Resources for getting started on "modern" PerlBenjamin Pollack2009-11-19T04:20:31Z2009-11-19T04:20:31ZI've had enough experience programming that I appreciate your comment about books being immediately out-of-date, but that cuts both ways: if the book's immediately out-of-date, then so's the code I wrote last year, and that can get incredibly frustrating in and of itself. It's nevertheless useful to know that these frameworks are so much in flux that anything I learn is likely to be immediately invalidated.http://stackoverflow.com/questions/1758928/resources-for-getting-started-on-modern-perl/1759728#1759728Comment by Benjamin Pollack on Resources for getting started on "modern" PerlBenjamin Pollack2009-11-18T23:20:57Z2009-11-18T23:20:57ZYeah, Stack Overflow's Markdown engine is mangling the URL. I tried to fix it, but it's still getting mangled. The URL, for anyone else out there, is <a href="http://github.com/chromatic/modern_perl_book" rel="nofollow">github.com/chromatic/modern_perl_book</a>http://stackoverflow.com/questions/1758928/resources-for-getting-started-on-modern-perlComment by Benjamin Pollack on Resources for getting started on "modern" PerlBenjamin Pollack2009-11-18T20:56:49Z2009-11-18T20:56:49ZEven if Perl 6 shipped tomorrow, part of the attraction for me in looking at Perl again is that it--and by "it", I mean "Perl 5"--is installed absolutely everywhere. Perl 6 won't be for a long time after its release. For that reason, if none other, having up-to-date Perl 5 documentation strikes me as a worthwhile endeavor.http://stackoverflow.com/questions/1758830/is-ifobj-obj-nil-correct-and-necessary/1758864#1758864Comment by Benjamin Pollack on Is if(obj && obj != nil) correct and necessary?Benjamin Pollack2009-11-18T20:36:31Z2009-11-18T20:36:31ZWhoops. Fixed. Thanks, Pavel.http://stackoverflow.com/questions/1743961/adding-charset-to-all-asp-net-mvc-http-responses/1743997#1743997Comment by Benjamin Pollack on Adding "charset" to all ASP.NET MVC HTTP responsesBenjamin Pollack2009-11-16T18:37:42Z2009-11-16T18:37:42ZThat'd work great if I were running in integrated pipeline mode, but I don't believe I'm allowed to muck with headers quite that way on IIS6 and earlier, am I?http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows/1683914#1683914Comment by Benjamin Pollack on Limitations of TEMP directory in Windows?Benjamin Pollack2009-11-05T22:02:40Z2009-11-05T22:02:40ZI think we might have a winner. Need to do some more tests.http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows/1683908#1683908Comment by Benjamin Pollack on Limitations of TEMP directory in Windows?Benjamin Pollack2009-11-05T22:02:07Z2009-11-05T22:02:07ZI can't get the Win32 error, unfortunately; by the time it's in Python where I can grab it, Python's returning error 28 (see updated question), which on more reading does not actually necessarily mean what it sounds like it means. I updated the question accordingly. A limit of some type on <code>%TEMP%</code> still seems likely, but it might not be space per se.http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows/1683908#1683908Comment by Benjamin Pollack on Limitations of TEMP directory in Windows?Benjamin Pollack2009-11-05T21:58:15Z2009-11-05T21:58:15ZI didn't vote you down; I just answered. You can check that in my voting history.http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows/1683908#1683908Comment by Benjamin Pollack on Limitations of TEMP directory in Windows?Benjamin Pollack2009-11-05T21:54:57Z2009-11-05T21:54:57ZMy system's NTFS, and the biggest file it can write is roughly 2 GB.http://stackoverflow.com/questions/1683831/limitations-of-temp-directory-in-windows/1683853#1683853Comment by Benjamin Pollack on Limitations of TEMP directory in Windows?Benjamin Pollack2009-11-05T21:50:08Z2009-11-05T21:50:08ZIt's just a utility application, and the data is in fact temporary, so even though you're right, I'm disinclined to move the data unless there's an actual problem storing it in <code>%TEMP%</code>.http://stackoverflow.com/questions/1526326/smalltalk-how-to-insert-tab-in-a-string/1527977#1527977Comment by Benjamin Pollack on Smalltalk, how to insert tab in a stringBenjamin Pollack2009-11-02T12:59:06Z2009-11-02T12:59:06ZYes; they're Squeak-specific. I'll find out the VisualWorks variant for you.http://stackoverflow.com/questions/147565/how-was-adobe-acrobat-9-made/147607#147607Comment by Benjamin Pollack on How was Adobe Acrobat 9 made?Benjamin Pollack2009-10-26T17:44:49Z2009-10-26T17:44:49ZI have not used Adam and Eve in any commercial product; just for tinkering around. In that context, integrating into a code base wasn't an issue, since the only code base I had was that one.