User emk - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:09:29Z http://stackoverflow.com/feeds/user/12089 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1324180/which-pattern-would-you-choose-for-web-application-and-why/1324243#1324243 9 Answer by emk for Which pattern would you choose for web application and why? emk 2009-08-24T19:28:49Z 2009-08-24T20:12:36Z <p>(This answer is specific to web applications. For regular GUIs, see <a href="http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference">What are MVP and MVC and what is the difference?</a>.)</p> <p><strong>Traditional MVC for GUI applications</strong></p> <p>This isn't really relevant to web applications, but here's how MVC traditionally worked in GUI applications:</p> <ul> <li>The model contained the business objects.</li> <li>The controller responded to UI interactions, and forwarded them to the model.</li> <li>The view "subscribed" to the model, and updated itself whenever the model changed.</li> </ul> <p>With this approach, you can have (1) multiple ways to update a given piece of data, and (2) multiple ways to view the same data. But you don't have to let every controller know about every view, or vice versa—everybody can just talk to the model.</p> <p><strong>MVC on the server</strong></p> <p>Rails, Django and other server-side frameworks all tend to use a particular version of MVC.</p> <ul> <li>The model provides approximately 1 class per database table, and contains most of the business logic.</li> <li>The view contains the actual HTML for the site, and as little code as possible. Basically, it's just templates.</li> <li>The controller responds to HTTP requests, processes parameters, looks up model objects, and passes values to the view.</li> </ul> <p>This seems to work very well for server-based web applications, and I've been very happy with it.</p> <p><strong>MVP on the client</strong></p> <p>However, if most of your code is written in JavaScript and runs in the web browser, you'll find lots of people using MVP these days. In this case, the roles are a bit different:</p> <ul> <li>The model still contains all the basic entities of your business domain.</li> <li>The view is a layer of fairly dumb widgets with little logic.</li> <li>The presenter installs event handlers on the view widgets, it responds to events and it updates the model. In the other direction, the presenter listens for changes to the model, and when those changes occur, it updates the view widgets. So the presenter is a bidirectional pipeline between the model and the view, which never interact directly.</li> </ul> <p>This model is popular because you can easily remove the view layer and write unit tests against the presenter and model. It's also much better suited to interactive applications where everything is updated constantly, as opposed to server applications where you deal with discrete requests and responses.</p> <p>Here's some background reading:</p> <ul> <li><a href="http://martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">Martin Fowler's encyclopedic summary of MVC, MVP and related approaches.</a> There's a lot of good history here.</li> <li><a href="http://martinfowler.com/eaaDev/PassiveScreen.html" rel="nofollow">Martin Fowler's description of "Passive View"</a>, a variation of MVP.</li> </ul> <p><strong>Google's MVP + event bus</strong></p> <p>This is a new approach, described in this <a href="http://www.youtube.com/watch?v=PDuhR18-EdM" rel="nofollow">video from the Google AdWords team</a>. It's designed to work well with caching, offline HTML 5 applications, and sophisticated client-side toolkits like <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a>. It's based on the following observations:</p> <ol> <li><em>Anything</em> might need to happen asynchronously, so design everything to be asynchronous from the very beginning.</li> <li>Testing browser-based views is much slower than testing models and presenters.</li> <li>Your real model data lives on the server, but you may have a local cache or an offline HTML 5 database.</li> </ol> <p>In this approach:</p> <ul> <li>The view is very dumb, and you can replace it with mock objects when running unit tests.</li> <li>The model objects are just simple containers for data, with no real logic. You may have multiple model objects representing the same entity.</li> <li>The presenter listens to events from the view. Whenever it needs to update or read from the model, it sends an asynchronous message to the server (or to a local caching service). The server responds by sending events to the "event bus". These events contain copies of the model objects. The event bus passes these events back to the various presenters, which update the attached views.</li> </ul> <p>So this architecture is inherently asynchronous, it's easy to test, and it doesn't require major changes if you want to write an HTML 5 offline application. I haven't used it yet, but it's next on my list of things to try. :-)</p> http://stackoverflow.com/questions/1322505/how-to-release-a-subset-of-deliverables/1323043#1323043 1 Answer by emk for How to release a subset of deliverables? emk 2009-08-24T15:26:02Z 2009-08-24T17:18:50Z <p>If you haven't thought about this in advance, it's pretty hard to do.</p> <p>But in the future, here's how you could set yourself up to do this:</p> <ol> <li><p>Get a real version control system, with very good support for both branching and merging. Historically, this has meant something like git or Mercurial, because Subversion's merge support has been very weak. (The Subversion team has recently been working improving their merge support, however.) On the Windows side, I don't know what VC tools are best for something like this.</p></li> <li><p>Decide how to organize work on individual features. One approach is to keep each feature on its own branch, and only merge it back to the main branch when the new feature is ready. The goal here is to keep the main branch <em>almost</em> shippable at all times. This is easiest when the feature branches don't sit around collecting dust—perhaps each programmer could work on only 1 or 2 features at a time, and merge them as soon as they're ready?</p></li> </ol> <p>Alternatively, you can try to cherry-pick individual patches out of your version control history. This is tedious and error-prone, but it may be possible for certain very disciplined development groups who write very clean patches that make exactly 1 complete change. You see this type of patch in the Linux kernel community. Try looking at <a href="http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=summary" rel="nofollow">some patches on the Linux 2.6 gitweb</a> to see what this style of development looks like.</p> <p>If you have trouble keeping your trunk "almost shippable" at all times, you might want to read a book on agile programming, such as <a href="http://rads.stackoverflow.com/amzn/click/0201616416" rel="nofollow">Extreme Programming Explained</a>. All the branching and merging in the world will be useless if your new code tends to be very buggy and require long periods of testing to find basic logic errors.</p> <p><strong>Updates</strong></p> <p><em>How do feature branches work with continuous integration?</em> In general, I tend to build feature branches after each check-in, just like the main branch, and I expect developers to commit more-or-less daily. But more importantly, I try to merge feature branches back to the main branch very aggressively—a 2-week-old feature branch would make me very, very nervous, because it means somebody is living off in their own little world.</p> <p><em>What if the client only wants some of the already working features?</em> This would worry me a bit, and I would want to ask them <em>why</em> the client only wants some of the features. Are they nervous about the quality of the code? Are we building the right features? If we're working on features that the client <em>really</em> wants, and if our main branch is always solid, then the client should be eager to get everything we've implemented. So in this case, I would first look hard for underlying problems with our process and try to fix them.</p> <p>However, if there were some special once-in-a-blue-moon reason for this request, I would basically create a new trunk, re-merge some branches, and cherry-pick other patches. Or disable some of the UI, as the other posters have suggested. But I wouldn't make a habit of it.</p> http://stackoverflow.com/questions/1314208/writing-a-new-refactoring-plugin-for-eclipse 6 Writing a new refactoring plugin for Eclipse? emk 2009-08-21T21:01:04Z 2009-08-23T21:09:14Z <p>Is there any good documentation on implementing new refactorings in Eclipse? Specifically, I'd like to access the AST for a Java class, make some non-trivial changes, and save the result back to the source file.</p> <p>So far, the only documentation I've found is (1) the source code for the existing refactorings and (2) a few articles on the LTK and Java AST:</p> <ul> <li><a href="http://www.eclipse.org/articles/Article-LTK/ltk.html" rel="nofollow">Eclipse LKT</a></li> <li><a href="http://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation_AST/index.html" rel="nofollow">Eclipse Java AST</a></li> </ul> <p>Are there any other articles or tutorials that I should read?</p> http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation 4 Reformat C++ braces without changing indentation? emk 2009-06-12T12:12:17Z 2009-06-12T15:02:50Z <p>We would like to make our C++ brace style more consistent. Right now, our code contains a mix of:</p> <pre><code>if (cond) { // ... } else { // ... } </code></pre> <p>...and:</p> <pre><code>if (cond) { // ... } else { // ... } </code></pre> <p>We want to use the latter style exclusively.</p> <p>However, we <strong>don't</strong> want to change the indentation of our code. I've tried using astyle, bcpp, GNU indent and Uncrustify (and I've looked at the command-line options for GreatCode). Unfortunately, each of these tools insists on reindenting our code, and most of them mangle C++ constructor initializer lists and preprocessor macros pretty badly.</p> <p>Are there any C++ code beautifiers which can fix braces while leaving indentation alone? It doesn't have to be a pre-existing tool--if you know how to do this using some crazy Perl one-liner, that's also good. Thank you!</p> <p><strong>Update:</strong> Yes, we aware that this will make it hard to read diffs against older code. This is a long-postponed code cleanup, and we've decided that the day-to-day advantages of consistent formatting outweigh any version-control difficulties.</p> http://stackoverflow.com/questions/752006/whats-the-recommended-way-to-get-winhttp-h 2 What's the recommended way to get winhttp.h? emk 2009-04-15T14:38:02Z 2009-04-16T10:40:53Z <p>Our application uses libcurl for HTTP, and we want to get access to Internet Explorer's proxy settings. An earlier Stack Overflow question <a href="http://stackoverflow.com/questions/202547/how-do-i-find-out-the-browsers-proxy-settings">recommends that we use <code>WinHttpGetIEProxyConfigForCurrentUser</code> and <code>WinHttpGetProxyForUrl</code></a>.</p> <p>Unfortunately, the <code>winhttp.h</code> header does not appear to be included with our copies either Visual C++ 2005 or Visual Studio 2008. Apparently, <a href="http://bbulkow.blogspot.com/2006/04/winhttp-and-visual-studio-2005-howto.html" rel="nofollow">it's possible to download an updated Platform SDK and install it in Visual C++ 2005</a>, but it's a pretty painful process, and it doesn't necessarily work with newer versions of Visual Studio.</p> <p>Is there a good, well-supported way to access the WinHTTP 5.1 APIs from C++? Or should we avoid using these APIs?</p> http://stackoverflow.com/questions/687003/paying-open-source-project-members-for-bug-fixes-and-features/687080#687080 14 Answer by emk for Paying open source project members for bug fixes and features emk 2009-03-26T18:49:09Z 2009-03-26T19:22:02Z <p>At work, we've had good luck hiring open source maintainers to enhance libraries that we use.</p> <p>Here are some projects we've done in the past:</p> <ol> <li>We needed to integrate Quake 2 with wxWidgets. We hired Vadim Zeitlin, a major contributor to wxWidgets. In less than 4 days, he built a wxQuake2 widget by adapting the Windows version of Quake 2.</li> <li>Later on, we needed to portable access to raw bitmaps. So we hired Vadim again, and worked with him to produce a new raw bitmap API. This involved a substantial bit of design work, but we really liked the resulting API, and we use it to this day.</li> <li>At a later date, we hired another one of the core contributors to improve wxWidgets accessibility support. As it turned out, we ended up not using this code right away, for various technical reasons. But other people have been enhancing this code since then, and we hope to use it some day.</li> </ol> <p>In other words, hiring open source maintainers is a lot like hiring any other kind of contractor. But some things are a bit different, too. Here's some advice based on our experiences:</p> <ol> <li>You'll have the most luck if you want to enhance an existing project and release the changes as open source.</li> <li>In general, you want to hire members of the core team. They have the best track records, they're the most productive, and they have the best chance of getting your changes merged upstream.</li> <li>You want to get your changes merged upstream. If you don't, you'll be maintaining a local fork, which is a headache.</li> <li>Before hiring, do some research. Who works on the features you care about? Are they somebody you'd enjoy working with? Read the mailing lists and glance at the version control history, and pick out a few people to approach.</li> <li>During the design phase, there may be a bit of give-and-take. The developers are looking at the larger health of the project, and you're looking at the needs of a specific business. This has occasionally made negotiations a bit more complicated for us, but the final result has typically been a better design than we would have chosen on our own.</li> </ol> <p>And most importantly, don't be shy. In any sufficiently large open source project, several members of the core team will already run consulting businesses. In smaller open source projects, you'll generally find several contributors who <em>want</em> to run consulting businesses.</p> <p>And if you're still hesitant to approach somebody, you can always ask, "Do you know anybody who'd be interested in getting paid to work on $FEATURE?" If they're not interested, you haven't put them on the spot, and they may tell you who to ask.</p> <p>On the whole, we've been impressed with the professionalism and productivity of open source maintainers, and I would recommend this route for others.</p> http://stackoverflow.com/questions/685533/python-convert-microsoft-office-docs-to-plain-text-on-linux/685546#685546 3 Answer by emk for python convert microsoft office docs to plain text on linux emk 2009-03-26T12:27:42Z 2009-03-26T12:32:59Z <p>The usual tool for converting Microsoft Office documents to HTML or other formats was mswordview, which has since been renamed to <a href="http://wvware.sourceforge.net/" rel="nofollow">vwWare</a>.</p> <p>If you're looking for a command-line tool, they actually recommend using AbiWord to perform the conversion:</p> <pre><code>AbiWord --to=txt </code></pre> <p>If you're looking for a library, start on the <a href="http://wvware.sourceforge.net/wvWare.html" rel="nofollow">wvWare overview page</a>. They also maintain <a href="http://wvware.sourceforge.net/wvInfo.html" rel="nofollow">a list of libraries and tools which read MS Office documents</a>.</p> http://stackoverflow.com/questions/683034/using-thread-new-to-send-email-on-rails/683076#683076 2 Answer by emk for Using Thread.new to send email on rails emk 2009-03-25T19:28:22Z 2009-03-25T19:28:22Z <p>In general, using green threads to run background tasks asynchronously will mean that your application can respond to the user <em>before</em> the mail is sent. You're not concerned about exploiting multiple CPUs; you're only concerned on off-loading the work onto a background process and returning a web page as soon as possible.</p> <p>And from examining the Rails documentation, it looks like deliver_signup_notification will block long enough to get the mail queued (although I may be wrong). So using a thread here might make your application seem more responsive, depending on how your mailer is configured.</p> <p>Unfortunately, it's not clear to me that deliver_signup_notification is necessarily thread-safe. I'd want to read the documentation carefully before relying on that.</p> <p>Note also that you're making assumptions about the lifetime of a Rails process once a request has been served. Many Rails applications using DRb (or a similar tool) to offload these background tasks onto an entirely separate worker process. The easiest way to do this changes fairly often--see Google for <a href="http://www.google.com/search?q=rails%2Bbackground%2Bworker" rel="nofollow">a number of popular libraries</a>.</p> http://stackoverflow.com/questions/682636/learning-multiple-programming-languages/682672#682672 10 Answer by emk for Learning multiple programming languages emk 2009-03-25T17:42:38Z 2009-03-25T17:49:49Z <p>You should learn new programming languages because they'll vary in ways that <em>aren't</em> on this list.</p> <p>This sounds like a sarcastic answer, but it's not. Languages vary in all sorts of crazy ways, and you generally won't even know what questions to ask until you learn a given language.</p> <p>For example, here's a few more questions you could ask:</p> <ol> <li>How does the language handle embedded database queries, and how does it generalize those features to other kinds of queries? (Try learning C# and LINQ.)</li> <li>How does the language allow you to solve constraint-based problems? (Try Mozart.)</li> <li>How do you implement efficient data structures using only non-destructive operations? (Try Haskell.)</li> <li>Is duck-typing really useful for large projects? (Try Ruby.)</li> <li>Are there some problems which <em>do</em> require static typing, if only because no human could ever get the code right without it? (Try reading almost any of the advanced Haskell bloggers.)</li> </ol> <p>Essentially, every truly worthwhile language should add another question to your list.</p> http://stackoverflow.com/questions/682014/how-do-you-incorporate-shared-ip-into-multiple-projects-while-still-allowing-easy/682076#682076 1 Answer by emk for How do you incorporate shared IP into multiple projects while still allowing easy branching? emk 2009-03-25T15:19:14Z 2009-03-25T15:19:14Z <p>In Subversion, you can either use <a href="http://svnbook.red-bean.com/en/1.1/ch07s04.html" rel="nofollow">Subversion externals</a>, or simple copy the necessary directory around in your Subversion tree:</p> <pre><code>svn cp svn+ssh://.../libs/foo/trunk svn+ssh://.../projects/bar/trunk/libs/foo </code></pre> <p>To locally modify the code, just commit to projects/bar/trunk/libs/foo.</p> <p>The fun part is merging in new changes from lib/foo/trunk. In this case, you want to go ahead and do a normal Subversion merge. (This will be <a href="http://subversion.tigris.org/svn%5F1.5%5Freleasenotes.html#merge-tracking" rel="nofollow">easier if you're using Subversion 1.5</a>. If you're using Subversion 1.4, you'll need to apply the patches manually.)</p> <p>Unfortunately, I have no experience with BitKeeper.</p> http://stackoverflow.com/questions/681379/regular-expression-match-only-if-subpattern-doesnt-match/681402#681402 1 Answer by emk for Regular expression match only if subpattern doesn't match emk 2009-03-25T12:40:31Z 2009-03-25T12:40:31Z <p>You could start with something like this:</p> <pre><code>/\*[^@] </code></pre> <p>But in general, you don't watch to match C-style comments with regular expressions, because of nasty corner-cases. Consider:</p> <pre><code>"foo\" /* " " */ " </code></pre> <p>There's no comment in that code (it's a compile-time concatenation of two string literals), but you're not going to have much luck parsing it without a real parser. (Technically, you <em>could</em> use a regular expression, because you only need a simple finite state machine. But it's a very disgusting regular expression.)</p> http://stackoverflow.com/questions/681326/practical-implications-of-osi-vs-tcp-ip-networking/681351#681351 1 Answer by emk for Practical implications of OSI vs TCP/IP networking. emk 2009-03-25T12:26:05Z 2009-03-25T12:31:09Z <p>They're probably referring to the <a href="http://en.wikipedia.org/wiki/OSI%5Fmodel" rel="nofollow">OSI model</a>, which is a commonly-used way of distinguishing between network layers. I'm not sure it's a useful way of looking at things, but it's taught in every networking course on the planet.</p> <p>OSI level 2 is the <a href="http://en.wikipedia.org/wiki/Data%5FLink%5FLayer" rel="nofollow">data link layer</a>, which operates immediately above the actual physical level. Basically, it's in charge of flow control, error detection, and possibly error correction. The data link layer is strictly "single hop". It's only concerned about about point-to-point data transfers, not about multi-hop transfers or routing.</p> <p>If they're actually referring the <a href="http://en.wikipedia.org/wiki/Open%5FSystems%5FInterconnection" rel="nofollow">OSI networking protocal</a> itself, run screaming as fast as you can. OSI was notoriously hard to implement, and I've never heard of an actual working installation. See the Wikipedia article for the gory details.</p> http://stackoverflow.com/questions/681262/difference-in-the-paths-in-gitignore-file/681280#681280 4 Answer by emk for Difference in the paths in .gitignore file? emk 2009-03-25T12:07:45Z 2009-03-25T12:22:05Z <p>If you're using a shell such as Bash 4, then ** is essentially a recursive version of *, which will match any number of subdirectories.</p> <p>This makes more sense if you add a file extension to your examples. To match log files immediately inside tmp, you would type:</p> <pre><code>/tmp/*.log </code></pre> <p>To match log files anywhere in any subdirectory of tmp, you would type:</p> <pre><code>/tmp/**/*.log </code></pre> <p>But testing with git version 1.6.0.4 and bash version 3.2.17(1)-release, it appears that git does not support ** globs at all. The <a href="http://www.kernel.org/pub/software/scm/git/docs/gitignore.html" rel="nofollow">most recent man page for gitignore</a> doesn't mention **, either, so this is either (1) very new, (2) unsupported, or (3) somehow dependent on your system's implementation of globbing.</p> <p>Also, there's something subtle going on in your examples. This expression:</p> <pre><code>tmp/* </code></pre> <p>...actually means "ignore any file <em>inside</em> a tmp directory, anywhere in the source tree, but don't ignore the tmp directories themselves". Under normal circumstances, you'd probably just write:</p> <pre><code>/tmp </code></pre> <p>...which would ignore a single top-level tmp directory. If you do need to keep the tmp directories around, while ignoring their contents, you should place an empty .gitignore file in each tmp directory to make sure that git actually creates the directory.</p> http://stackoverflow.com/questions/679249/mysql-and-filemaker-pro/679505#679505 1 Answer by emk for MySQL AND Filemaker Pro? emk 2009-03-24T22:28:11Z 2009-03-24T22:28:11Z <p>You may have a hard time talking them out of FileMaker, because it was actually a pretty clever tool for making small, in-house database applications, and it had a very loyal user base. But you're right--it's not a good tool for making a web application.</p> <p>I had a similar problem with a client who was still using a custom dBase IV application. Fortunately, Perl's CPAN archive has modules for talking to <em>anything</em>. So I wrote a script that exported the entire dBase IV database every night, and uploaded it into MySQL as a set of read-only tables.</p> <p>Unfortunately, this required taking MySQL down for 30 minutes every night. (It was a big database, and we had to convert free-form text to HTML.) So we switched to PostgreSQL, and performed the entire database update as a single transaction.</p> <p>But what if you need read-write access to the FileMaker database? In that case, you've got several choices, most of them bad:</p> <ol> <li>Build a <a href="http://work.rowanhick.com/2007/05/28/syncing-up-external-filemaker-data-with-rails/" rel="nofollow">bi-directional synchronization tool</a>.</li> <li>Get rid of FileMaker entirely. If the client's FileMaker databases are trivial, this may be relatively easy. I'd begin by writing a quick-and-dirty clone of their most important databases and demoing it to them in a web browser.</li> <li>The client may actually be best served by a FileMaker-based web application. If so, <a href="http://www.google.com/search?q=filemaker%2Bweb%2Bapplication" rel="nofollow">refer them to Google</a>.</li> </ol> <p>But how do you sell the client on a given choice? It's probably best to lay out the costs and benefits of each choice, and let the client decide which is best for their business. You might lose the job, but you'll maintain a reputation for honest advice, and you won't get involved in a project that's badly suited to your client.</p> http://stackoverflow.com/questions/677393/tracking-3rd-party-code-with-git/679346#679346 6 Answer by emk for Tracking 3rd party code with Git emk 2009-03-24T21:35:15Z 2009-03-24T22:03:44Z <p>There are two separate problems here:</p> <ol> <li>How do you maintain local forks of remote projects, and</li> <li>How do you keep a copy of remote projects in your own tree?</li> </ol> <p>Problem 1 is pretty easy by itself. Just do something like:</p> <pre><code>git clone git://example.com/foo.git cd foo git remote add upstream git://example.com/foo.git git remote rm origin git remote add origin ssh://.../my-forked-foo.git git push origin </code></pre> <p>You can then work on your forked repository normally. When you want to merge in upstream changes, run:</p> <pre><code>git pull upstream master </code></pre> <p>As for problem 2, one option is to use submodules. For this, cd into your main project, and run:</p> <pre><code>git submodule add ssh://.../my-forked-foo.git local/path/for/foo </code></pre> <p><strong>If I use git submodules, what do I need to know?</strong></p> <p>You may find git submodules to be a little bit tricky at times. Here are some things to keep in mind:</p> <ol> <li>Always commit the submodule before committing the parent.</li> <li>Always push the submodule before pushing the parent.</li> <li>Make sure that the submodule's HEAD points to a branch before committing to it. (If you're a bash user, I recommend using <a href="http://blog.bitfluent.com/post/27983389/git-utilities-you-cant-live-without" rel="nofollow">git-completion</a> to put the current branch name in your prompt.)</li> <li><em>Always</em> run 'git submodule update' after switching branches or pulling changes.</li> </ol> <p>You can work around (4) to a certain extent by using an alias created by one of my coworkers:</p> <pre><code>git config --global alias.pull-recursive '!git pull &amp;&amp; git submodule update --init' </code></pre> <p>...and then running:</p> <pre><code>git pull-recursive </code></pre> <p><strong>If git submodules are so tricky, what are the advantages?</strong></p> <ol> <li>You can check out the main project without checking out the submodules. This is useful when the submodules are huge, and you don't need them on certain platforms.</li> <li>If you have experienced git users, it's possible to have multiple forks of your submodule, and link them with different forks of your main project.</li> <li>Someday, somebody might actually fix git submodules to work more gracefully. The deepest parts of the submodule implementation are actually quite good; it's just the upper-level tools that are broken.</li> </ol> <p><strong>git submodules aren't for me. What next?</strong></p> <p>If you don't want to use git submodules, you might want to look into <a href="http://www.kernel.org/pub/software/scm/git/docs/howto/using-merge-subtree.html" rel="nofollow">git merge's subtree strategy</a>. This keeps everything in one repository.</p> <p><strong>What if the upstream repository uses Subversion?</strong></p> <p>This is pretty easy if you know how to use git svn:</p> <pre><code>git svn clone -s https://example.com/foo cd foo git remote add origin ssh://.../my-forked-foo.git git push origin </code></pre> <p>Then set up a local tracking branch in git.</p> <pre><code>git push origin master:local-fork git checkout -b local-fork origin/local-fork </code></pre> <p>Then, to merge from upstream, run:</p> <pre><code>git svn fetch git merge trunk </code></pre> <p>(I haven't tested this code, but it's more-or-less how we maintain one submodule with an upstream SVN repository.)</p> <p>Don't use git svn rebase, because it will make it very difficult to use git submodule in the parent project without losing data. Just treat the Subversion branches as read-only mirrors of upstream, and merge from them explicitly.</p> <p>If you need to access the upstream Subversion repository on another machine, try:</p> <pre><code>git svn init -s https://example.com/foo git svn fetch </code></pre> <p>You should then be able to merge changes from upstream as before.</p> http://stackoverflow.com/questions/676934/what-do-you-need-to-write-your-own-blog-engine/677029#677029 4 Answer by emk for What Do You Need To Write Your Own Blog Engine? emk 2009-03-24T11:35:42Z 2009-03-24T11:35:42Z <p>You can create a weblog engine using almost any programming language. But it might be easiest to base your work on "web framework", such as Ruby on Rails, ASP.NET, Django, PHP or something else along those lines.</p> <p>Here's a <a href="http://rubyonrails.org/screencasts" rel="nofollow">15 minute video</a> showing how to create a simple weblog engine using Ruby on Rails.</p> <p>Of course, as other people point out, there are an enormous number of weblog engines out there already. So if you write your own, it's probably going to be most useful as a learning exercise. If you want a full-featured weblog, you could also find an open source weblog engine and learn by modifying it.</p> http://stackoverflow.com/questions/643947/how-can-i-programmatically-change-a-value-in-the-windows-registry/643989#643989 0 Answer by emk for How can I programmatically change a value in the Window's Registry? emk 2009-03-13T18:24:04Z 2009-03-13T18:24:04Z <p>Actually, the easiest way to change a bunch of registry keys is to use a <a href="http://support.microsoft.com/kb/310516" rel="nofollow">*.reg file</a> and simply load it into the registry. But be careful: You generally can't send these files to people via e-mail, because they get filtered by many mail servers.</p> <p>We occasionally use this technique to pass around application configurations and test them on other machines.</p> <p>I only mention this non-programmatic solution because you suggested that either a C# application or a batch file would be OK, which suggests that you're looking for something lightweight and you aren't too worried about the details.</p> http://stackoverflow.com/questions/643897/ruby-on-rails-deployment-requirements/643932#643932 3 Answer by emk for Ruby on Rails deployment requirements emk 2009-03-13T18:14:29Z 2009-03-13T18:14:29Z <p>Even a year ago, Ruby on Rails applications were obnoxiously hard to deploy. (And I say this as somebody who loves Rails.) But today, things are much easier. Unfortunately, I don't have any experience deploying Rails on Windows servers. I can, however, tell you about deploying on Linux.</p> <p>The simplest setup is probably a Linux (or BSD machine) running Apache and Phusion Passenger. Apache should be installed by default on most Linux servers, and Passenger has a nice <a href="http://www.modrails.com/install.html" rel="nofollow">command-line installation tool</a>.</p> <p>For a database, I generally use MySQL, though PostgreSQL might be more suitable if you do lots of really complex queries. Again, MySQL will be installed on most Linux servers.</p> <p>As for your actual deployment process, I'd recommend using <a href="http://www.capify.org/" rel="nofollow">Capistrano</a>. This allows you to push updated code to your server with a single command, update your database as necessary, and even revert to an older version of your code if something goes wrong.</p> <p>The advantage of deploying on Windows is that you already understand it. The advantage to deploying on Linux is that lots of people are familiar with that setup, and will be able to help you past the most common problems. If you do decide to deploy on Windows, I'd make sure that you find a good support community to answer your questions. (The more you deviate from a typical Rails setup, the more you need to know to make things work. So even if you don't end up going with the biggest crowd, it helps to find a smaller crowd and follow them.)</p> http://stackoverflow.com/questions/642595/dedicated-server-backup-solutions/642608#642608 2 Answer by emk for dedicated server backup solutions? emk 2009-03-13T13:08:16Z 2009-03-13T13:16:52Z <p>At work, we use <a href="http://backuppc.sourceforge.net/" rel="nofollow">BackupPC</a> over a remote SSH login. BackupPC is an open source, disk-based backup system.</p> <p>We also evaluated Amanda and a variety of other open source backup packages. None of these actually <em>require</em> the use of tape drives, but most of them still use a heavily tape-based model. And we didn't particularly enjoy worrying about virtual tape volumes.</p> <p>BackupPC, on other other hand, requires a single large disk partition to use as storage pool, and it stores content using a chained hash of file contents. This allows it to consolidate files that are duplicated across multiple servers and multiple backup runs. So if you have multiple servers with duplicated content, BackupPC will use considerably less disk space.</p> <p>If you're only trying to back up a single server, then rsync may also be an excellent choice. But BackupPC has a web-based administration interface, and it supports incremental and full backups. It can be configured to avoid backups during business hours. (However, if one of your servers hasn't been backed up for a long time, BackupPC will go ahead and grab a backup whenever it can.)</p> <p>Overall, it's a very simple system to maintain. It runs without any human intervention, and it e-mails you if something goes wrong or if a server's most recent backups are getting too stale.</p> http://stackoverflow.com/questions/561074/how-to-alias-activerecord-class-methods-dynamically-in-a-rails-plugin/561225#561225 1 Answer by emk for How to alias ActiveRecord class methods dynamically in a rails plugin? emk 2009-02-18T14:20:22Z 2009-02-18T14:38:30Z <p>Your best way to refactor this code is to leave <code>find</code> and <code>calculate</code> unchanged, and add apply the wrapping using a class-level function.</p> <p>Here's rough sketch, without your module and mixin logic:</p> <pre><code>class A def find x puts 'finding' end def calculate x puts 'calculating' end end class B &lt; A def self.make_wrapper_method name define_method name do |*args| puts "entering" result = super *args puts "exiting" result end end make_wrapper_method :find make_wrapper_method :calculate end </code></pre> <p>Note that this will need to be modified if <code>B</code> has already overridden <code>find</code> or <code>calculate</code>.</p> <p>To use this code, first make your version work correctly, then modify it to use <code>define_method</code>. (And if you need extremely high performance, you may need to use one of the <code>*_eval</code> functions to create the wrappers instead of <code>define_method</code>.)</p> http://stackoverflow.com/questions/546817/iterating-over-two-lists-in-parallel-in-bin-sh 2 Iterating over two lists in parallel in /bin/sh emk 2009-02-13T17:17:07Z 2009-02-16T05:50:13Z <p>I have two lists of equal length, with no spaces in the individual items:</p> <pre><code>list1="a b c" list2="1 2 3" </code></pre> <p>I want to iterate over these two lists in parallel, pairing a with 1, b with 2, etc.:</p> <pre><code>a 1 b 2 c 3 </code></pre> <p>I'm attempting to support modern portable Bourne shell, so Bash/ksh arrays aren't available. Shelling out to awk would be acceptable in a pinch, but I'd rather keep this in pure sh if possible.</p> <p>Thank you for any pointers you can provide!</p> http://stackoverflow.com/questions/546817/iterating-over-two-lists-in-parallel-in-bin-sh/548284#548284 0 Answer by emk for Iterating over two lists in parallel in /bin/sh emk 2009-02-14T00:57:13Z 2009-02-14T00:57:13Z <p>I had been working on a sed-based answer when the first solutions started showing up here. But upon further investigation, it turned out that the items in the list were separated by newlines, not spaces, which allowed me to go with a solution based on head and tail:</p> <pre><code>original_revs="$(cd original &amp;&amp; git rev-parse --all)" &amp;&amp; working_revs="$(cd working &amp;&amp; git rev-parse --all)" &amp;&amp; while test -n "$original_revs"; do original_commit="$(echo "$original_revs" | head -n 1)" &amp;&amp; working_commit="$(echo "$working_revs" | head -n 1)" &amp;&amp; original_revs="$(echo "$original_revs" | tail -n +2)" &amp;&amp; working_revs="$(echo "$working_revs" | tail -n +2)" &amp;&amp; ... done </code></pre> <p>I'm posting this just in case somebody encounters this variant of the problem, but I'm awarding the accepted answer based on the problem as posted.</p> http://stackoverflow.com/questions/92396/why-cant-variables-be-declared-in-a-switch-statement/92423#92423 6 Answer by emk for Why can't variables be declared in a switch statement? emk 2008-09-18T13:15:23Z 2008-09-18T13:15:23Z <p>You can't do this, because <code>case</code> labels are actually just entry points into the containing block.</p> <p>This is most clearly illustrated by <a href="http://en.wikipedia.org/wiki/Duff%27s_device" rel="nofollow">Duff's device</a>. Here's some code from Wikipedia:</p> <pre><code>strcpy(char *to, char *from, int count) { int n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n &gt; 0); } } </code></pre> <p>Notice how the <code>case</code> labels totally ignore the block boundaries. Yes, this is evil. But this is why your code example doesn't work. Jumping to a <code>case</code> label is the same as using <code>goto</code>, so you aren't allowed to jump over a local variable with a constructor.</p> <p>As several other posters have indicated, you need to put in a block of your own:</p> <pre><code>switch (...) { case FOO: { MyObject x(...); ... break; } ... } </code></pre> http://stackoverflow.com/questions/92073/smallest-unicode-encodings-for-different-languages/92109#92109 1 Answer by emk for Smallest Unicode encodings for different languages? emk 2008-09-18T12:32:30Z 2008-09-18T12:41:29Z <p>For any given language, your bytes-per-character rates are fairly constant, because most languages are allocated to contiguous code pages. The big exception is accented Latin characters, which are allocated higher in the code space than the unaccented forms. I don't have hard numbers for these.</p> <p>For languages with contiguous character allocation, there is a <a href="http://en.wikipedia.org/wiki/Comparison_of_Unicode_encodings#In_detail" rel="nofollow">table with detailed numbers for various languages</a> on Wikipedia. In general, UTF-8 works well for most small character sets (except the ones allocated on high code pages), and UTF-16 is great for two-byte character sets. </p> <p>If you need denser compression, you may also want to look at <a href="http://www.unicode.org/notes/tn14/" rel="nofollow">Unicode Technical Note 14</a>, which compares some special-purpose encodings designed to reduce data size for a variety of languages. But these techniques aren't especially common.</p> http://stackoverflow.com/questions/91616/easiest-cross-platform-widget-toolkit/91777#91777 2 Answer by emk for Easiest cross platform widget toolkit? emk 2008-09-18T11:34:22Z 2008-09-18T11:34:22Z <p>As with the other posters, I strongly recommend looking at C++ toolkits. GTK will work on Windows and the Mac OS, but will only give you truly good results on Linux. And even some of the GTK maintainers are inventing their their own <a href="http://live.gnome.org/Vala" rel="nofollow">object-oriented C dialect</a> to avoid writing GUIs against the native GTK API.</p> <p>As for C++, it depends on what you want. Ease of development? Native GUIs on every platform? Commercial support?</p> <p>If you want native-looking GUIs on Win32 and Linux (and something semi-reasonable on the Mac), one excellent choice is wxWidgets. Here's a <a href="http://www.randomhacks.net/articles/2002/12/10/wxwindows-experiences" rel="nofollow">longer article with real-world wxWidgets experiences</a>. The Mac port has improved substantially since 2002, when that article was written, but it still has some soft spots.</p> http://stackoverflow.com/questions/88141/will-i-need-a-computer-science-education-for-soft-computing-machine-learning/88278#88278 0 Answer by emk for Will I Need a Computer Science Education for Soft Computing/Machine Learning? emk 2008-09-17T22:19:35Z 2008-09-17T22:19:35Z <p>Without a degree, you may miss out on some jobs in academia and in big corporations. Academia loves degrees (after all, they grant 'em), and HR departments tend to be a bit clueless and credential-driven.</p> <p>But to most employers, all a degree says is, "This person could buckle down for 4 years and get something done." Basically, you need to find another way to prove you work hard and know your stuff. There's a <em>lot</em> of ways to do this.</p> <p>For example, you could begin by writing an open source project that used "soft computing" techniques to solve a particular class of real-world problems. If your project was interesting to business users or startups, you'd have very little trouble getting hired.</p> http://stackoverflow.com/questions/87212/whats-the-best-statically-typed-language-for-a-dynamically-typed-language-progra/87275#87275 1 Answer by emk for What's the best statically-typed language for a dynamically-typed language programmer to learn? emk 2008-09-17T20:28:25Z 2008-09-17T20:28:25Z <p>How crazy are you feeling? :-)</p> <p>Java and C# are both popular and widely used. Both have recently added some interesting type system features: Java generics, and local type inference in C#. C++ templates are also interesting, in a perverse sort of way. You'll get a nice, gentle introduction using any of these languages.</p> <p>If you're looking to <em>really</em> stretch your brain, look at <a href="http://book.realworldhaskell.org/" rel="nofollow">Haskell</a> or ML. These languages have more advanced type systems (type inference, Haskell's typeclasses, ML's parameterized modules).</p> http://stackoverflow.com/questions/86971/best-way-to-update-multi-gigabyte-program-dvd-fulfillment-updater-software 2 Best way to update multi-gigabyte program (DVD fulfillment? Updater software?) emk 2008-09-17T19:55:59Z 2008-09-17T20:01:11Z <p>Two years ago, we shipped a multi-gigabyte Windows application, with lots of video files. Now we're looking to release a significant update, with approximately 1 gigabyte of new and changed data.</p> <p>We're currently looking at DVD fulfillment houses (like <a href="http://www.dvd-fulfillment.com/default.asp?ref=600&amp;gclid=CNjuvqXJ45UCFQLGGgodlWYceg" rel="nofollow">these folks</a>, for example), which claim to be able to ship DVDs to our customers for $5 and up. Does anyone have any experience with these companies?</p> <p>We've also looked at a bunch of network-based "updater" software. Unfortunately, most of these tools are intended for much smaller programs. Are there any libraries or products which handle gigabyte-sized updates well?</p> <p>Thank you for your advice!</p> http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top/85303#85303 3 Answer by emk for What is needed to get Delphi back on top? emk 2008-09-17T16:55:49Z 2008-09-17T16:55:49Z <p>In our case? An inexpensive, low-end version of Delphi, with prices prominently displayed on the website.</p> <p>We use InnoSetup, an open source installer package written in Delphi, and we'd really like to add some new features to it, and send our patches to the author.</p> <p>Back when Delphi was Inprise, it cost something like $800. Today, the website <a href="http://www.codegear.com/products/delphi/win32" rel="nofollow">doesn't show any prices</a>. This usually suggests that either (1) Delphi is embarrassingly expensive, or (2) a salesperson wants to talk to me on the phone and figure out how much money I've got. Then, when I say no, the salesperson will call me back every 3 months.</p> <p>Microsoft has quite a few inexpensive, low-end options for C# and C++. If Delphi is going to survive as anything but a niche product for legacy enterprise code, it will need to do the same.</p> http://stackoverflow.com/questions/79999/what-parallel-programming-model-do-you-recommend-today-to-take-advantage-of-the-m/84271#84271 17 Answer by emk for What parallel programming model do you recommend today to take advantage of the manycore processors of tomorrow? emk 2008-09-17T15:10:10Z 2008-09-17T15:10:10Z <p>Multi-core programming may actually require more than one paradigm. Some current contenders are:</p> <ol> <li><a href="http://labs.google.com/papers/mapreduce.html" rel="nofollow">MapReduce</a>. This works well where a problem can be easily decomposed into parallel chunks.</li> <li><a href="http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell" rel="nofollow">Nested Data Parallelism</a>. This is similar to MapReduce, but actually supports recursive decomposition of a problem, even when the recursive chunks are of irregular size. Look for NDP to be a big win in purely functional languages running on massively parallel but limited hardware (like GPUs).</li> <li><a href="http://en.wikipedia.org/wiki/Software_transactional_memory" rel="nofollow">Software Transactional Memory</a>. If you need traditional threads, STM makes them bearable. You pay a 50% performance hit in critical sections, but you can scale complex locking schemes to 100s of processors without pain. This will not, however, work for distributed systems.</li> <li><a href="http://www.erlang.org/" rel="nofollow">Parallel object threads with messaging</a>. This really clever model is used by Erlang. Each "object" becomes a lightweight thread, and objects communicate by asynchronous messages and pattern matching. It's basically true parallel OO. This has succeeded nicely in several real-world applications, and it works great for unreliable distributed systems.</li> </ol> <p>Some of these paradigms give you maximum performance, but only work if the problem decomposes cleanly. Others sacrifice some performance, but allow a wider variety of algorithms. I suspect that some combination of the above will ultimately become a standard toolkit.</p> http://stackoverflow.com/questions/1322505/how-to-release-a-subset-of-deliverables/1323043#1323043 Comment by emk on How to release a subset of deliverables? emk 2009-08-24T17:22:20Z 2009-08-24T17:22:20Z I've tried to answer some of questions. The answers are based on my own personal experiences, so your mileage may vary. :-) http://stackoverflow.com/questions/1322789/difference-between-mit-license-and-public-domain/1322827#1322827 Comment by emk on Difference between MIT License and public domain emk 2009-08-24T15:03:39Z 2009-08-24T15:03:39Z +1, because I've heard that at least some lawyers say this (and because a few are confused by public domain even within the US). Oh, and the MIT license also contains quite a few disclaimers. http://stackoverflow.com/questions/1322884/does-going-out-of-scope-like-this-free-the-associated-memory/1322898#1322898 Comment by emk on Does going out of scope like this free the associated memory? emk 2009-08-24T14:59:10Z 2009-08-24T14:59:10Z Thank you for pointing out the rather serious bug in method2. http://stackoverflow.com/questions/1314208/writing-a-new-refactoring-plugin-for-eclipse/1315990#1315990 Comment by emk on Writing a new refactoring plugin for Eclipse? emk 2009-08-23T20:24:53Z 2009-08-23T20:24:53Z Ah, thank you! Those are also very useful articles. I think the time has arrived for me to start digging through the source code for the built-in refactorings. http://stackoverflow.com/questions/51390/where-did-all-the-java-applets-go/51402#51402 Comment by emk on Where did all the java applets go? emk 2009-08-20T20:17:40Z 2009-08-20T20:17:40Z I don't know. I've never actually seen a JavaFX demo run successfully in Firefox 3.5 on my Mac, or even give me an error message telling me what I need to install. :-( http://stackoverflow.com/questions/75759/enums-in-ruby/75801#75801 Comment by emk on Enums in Ruby emk 2009-08-20T20:14:16Z 2009-08-20T20:14:16Z Popular Ruby frameworks rely heavily on runtime metaprogramming, and performing too much load-time checking would take away most of Ruby's expressive power. To avoid problems, most Ruby programmers practice test-driven design, which will find not just typos but also logic errors. http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/72156#72156 Comment by emk on How do I clone all remote branches with Git? emk 2009-07-20T21:44:51Z 2009-07-20T21:44:51Z Cristian: I used to always create a branch 'foo' for every branch 'origin/foo', but this led to two problems: (1) I wound up with lots of really stale tracking branches that were many commits behind the corresponding remote branch, and (2) in older versions of git, running 'git push' would attempt to push all my local branches to a remote, even when those branches were stale. So now I only keep local branches for things that I'm actively developing, and access the origin/* branches directly if I need information about them. (That said, you could use a shell script to parse 'git branch -a'.) http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/900967#900967 Comment by emk on How can you tell if a person is a programmer? emk 2009-06-14T12:21:40Z 2009-06-14T12:21:40Z I once popped the conversational stack 3 times, greatly to the amusement and horror of my conversational partner. This cannot be a good sign. :-) http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986428#986428 Comment by emk on Reformat C++ braces without changing indentation? emk 2009-06-12T19:05:24Z 2009-06-12T19:05:24Z Many thanks! This is a good start, and it can be adapted to handle other constructs like 'catch'. http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986428#986428 Comment by emk on Reformat C++ braces without changing indentation? emk 2009-06-12T13:30:04Z 2009-06-12T13:30:04Z Great! I'll try this out in an hour or so. http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986337#986337 Comment by emk on Reformat C++ braces without changing indentation? emk 2009-06-12T12:33:05Z 2009-06-12T12:33:05Z About 75% of the code uses the style we want to use, and the remaining 25% uses the other style. If the overall style were actually consistent, we'd leave it alone. http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986338#986338 Comment by emk on Reformat C++ braces without changing indentation? emk 2009-06-12T12:31:09Z 2009-06-12T12:31:09Z If you can (1) point me at a version of indent with the necessary options, and (2) explain anything which isn't obvious from the manual, then I'll accept this answer. But I've already spent half an hour looking at GNU indent with no luck. http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986337#986337 Comment by emk on Reformat C++ braces without changing indentation? emk 2009-06-12T12:28:31Z 2009-06-12T12:28:31Z We've lived with this inconsistent formatting for 7+ years, and we've decided that we can afford a once-a-decade flag day to make our code more enjoyable to hack on. :-) All outstanding branches have been merged, and we're not concerned out our increasingly ancient stable branches. http://stackoverflow.com/questions/986321/reformat-c-braces-without-changing-indentation/986338#986338 Comment by emk on Reformat C++ braces without changing indentation? emk 2009-06-12T12:24:07Z 2009-06-12T12:24:07Z As far as I can tell, most indent commands always reindent source code, just like all the other tools. Do you know any way to turn this off? Also, indent generally does not support C++. http://stackoverflow.com/questions/752006/whats-the-recommended-way-to-get-winhttp-h/752098#752098 Comment by emk on What's the recommended way to get winhttp.h? emk 2009-04-16T10:34:01Z 2009-04-16T10:34:01Z Thanks for the links! Accepted.