User Sean - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:07:46Zhttp://stackoverflow.com/feeds/user/4919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/264224/setting-the-gzip-timestamp-from-python/264297#2642970Answer by Sean for setting the gzip timestamp from PythonSean2008-11-05T03:44:19Z2008-11-05T03:44:19Z<p>In lib/gzip.py, we find the method that builds the header, including the part that does indeed contain a timestamp. In Python 2.5, this begins on line 143:</p>
<pre><code>def _write_gzip_header(self):
self.fileobj.write('\037\213') # magic header
self.fileobj.write('\010') # compression method
fname = self.filename[:-3]
flags = 0
if fname:
flags = FNAME
self.fileobj.write(chr(flags))
write32u(self.fileobj, long(time.time())) # The current time!
self.fileobj.write('\002')
self.fileobj.write('\377')
if fname:
self.fileobj.write(fname + '\000')
</code></pre>
<p>As you can see, it uses time.time() to fetch the current time. According to the online module docs, time.time will "return the time as a floating point number expressed in seconds since the epoch, in UTC." So, if you change this to a floating-point constant of your choosing, you can always have the same headers written out. I can't see a better way to do this unless you want to hack the library some more to accept an optional time param that you use while defaulting to time.time() when it's not specified, in which case, I'm sure they'd love it if you submitted a patch!</p>
http://stackoverflow.com/questions/209198/borland-x86-inlined-assembler-get-a-labels-address/209359#2093590Answer by Sean for Borland x86 inlined assembler; get a label's address?Sean2008-10-16T16:37:38Z2008-10-16T16:37:38Z<p>From what I recall, you can't use an external (C++) label in your inline assembly, although you can have TASM-style labels in the asm block that can be referenced by the assembly instructions itself. I think I would use a flag and a post-assembler switch statement to handle branching. For example:</p>
<pre><code>int result=0;
__asm__ {
mov result, 1
}
switch (result){
case 1: printf("You wanted case 1 to happen in your assembler\n"); break;
case 0: printf("Nothing changed with the result variable.. defaulting to:\n");
default: printf("Default case!\n"); break;
}
</code></pre>
http://stackoverflow.com/questions/188510/how-to-format-a-string-as-a-telephone-number-in-c/188616#1886167Answer by Sean for How to format a string as a telephone number in C#Sean2008-10-09T18:39:15Z2008-10-09T18:39:15Z<p>From a <a href="http://blog.stevex.net/index.php/string-formatting-in-csharp/" rel="nofollow">good page</a> full of examples:</p>
<pre><code>String.Format(”{0:(###) ###-####}”, 8005551212);
This will output “(800) 555-1212″.
</code></pre>
<p>Although a regex may work even better, keep in mind the old programming quote:</p>
<blockquote>
<p>Some people, when confronted with a
problem, think “I know, I’ll use
regular expressions.” Now they have
two problems.<br />
--Jamie Zawinski, in comp.lang.emacs</p>
</blockquote>
http://stackoverflow.com/questions/156443/what-opensource-projects-do-you-support-or-what-keeps-you-from-supporting-projec/165834#1658341Answer by Sean for What opensource projects do you support, or what keeps you from supporting projects?Sean2008-10-03T05:51:55Z2008-10-03T05:51:55Z<p>Because I use Linux on a daily basis (as not only a development platform but also as a desktop and media server), I constantly run into small problems with the kernel or installed modules that, for example, make my SATA RAID array fail. When I find a bug with how the SATA RAID wakes from a suspended state because the driver is looking for a [parallel] ATA drive, I fix it and submit the patch to whomever maintains the driver.</p>
<p><em>If everyone submitted the small changes it took to get their system working, we would be much close to having software that works for everyone.</em></p>
http://stackoverflow.com/questions/142928/image-recognition/143002#1430022Answer by Sean for Image RecognitionSean2008-09-27T04:35:59Z2008-09-27T04:35:59Z<p>It's very east to manipulate the large multi-dimensional or complex arrays of pixel information that are pictures using high-level languages such as <strong>Python</strong>. There's a library called <a href="http://www.pythonware.com/products/pil/" rel="nofollow">PIL (the Python Imaging Library</a>) that is quite useful and will let you do general filters and transformations (change the brightness, soften, desaturate, crop, etc) as well as manipulate the raw pixel data.</p>
<p>It is the <a href="http://www.pythonware.com/library/pil/handbook/introduction.htm" rel="nofollow">easiest and simplest</a> image library I've used to date and can be extended to do whatever it is you're interested in (<a href="http://www.asakusuma.com/index.php?act=article&id=20" rel="nofollow">edge detection</a> in very little code, for example).</p>
http://stackoverflow.com/questions/128689/doing-crud-in-turbogears/142712#1427120Answer by Sean for Doing CRUD in TurbogearsSean2008-09-27T01:30:15Z2008-09-27T01:30:15Z<p>While <a href="http://docs.turbogears.org/1.0/CRUDTemplate" rel="nofollow">CRUDTemplate</a> looks mildly complex, I'd say that you can implement CRUD/ABCD using just about any ORM that you choose. It just depends on how much of it you with to automate (which generally means defining models/schemas ahead of time). You may learn more and have better control if you put together your own using SQLAlchemy or SQLObject, woth of which work great with TurboGears.</p>
http://stackoverflow.com/questions/142507/how-much-access-do-you-give-ba-pms/142682#1426821Answer by Sean for How much access do you give BA/PM's? Sean2008-09-27T01:15:22Z2008-09-27T01:15:22Z<p>I've never hear of this being considered a problem or a security issue. In fact, after reading the question, <strong>I have some serious questions about what your last PM was doing</strong>! By all means, embrace the fact that you have an interested manager and give her at least read access so she can do a check out and see what it is her developers are working with.</p>
http://stackoverflow.com/questions/142470/what-are-the-main-differences-between-the-popular-web-frameworks/142667#1426674Answer by Sean for What are the main differences between the popular web frameworks?Sean2008-09-27T01:02:48Z2008-09-27T01:09:29Z<p>I am going to briefly address each area for three popular Python frameworks. This is only based on my personal experiences and observations.</p>
<h2>Development speed and convenience</h2>
<p>For <strong>TurboGears</strong>, <strong>Pylons</strong>, and <strong>Django</strong>, development speed is roughly equal. Being modern frameworks, it's easy to get started on a new site and start throwing together pages. Python is famously fast to develop and debug and I would put any Python framework as having a shorter development time than any other setup I've worked with (including PHP, Perl, Embedded Perl, and C#/ASP.Net).</p>
<h2>Barriers to entry - developer training and infrastructure</h2>
<p>If you know Python and are willing to watch a <a href="http://files.turbogears.org/video/20MinuteWiki2nd.mov" rel="nofollow">20 minute video tutorial</a>, you can create a fairly complete wiki-type site from scratch. Or you can walk through a <a href="http://aymanh.com/turbogears-tutorial-social-bookmarking-application" rel="nofollow">social-bookmarking site tutorial</a> in 30 minutes (including installation). These are TurboGears examples but the other two frameworks have nearly identical tutorials as well.</p>
<p>The test/development infrastructure that comes out of the box with these frameworks is generally enough to complete most sites. At any point, you can swap out components to meet your production environment requirements. For example, SQLite is fine for setting up your models and loading test data, but you will want to install MySQL (for example) before going live or storing large amounts of data.</p>
<p>In all cases, the requirements are very low and dictated entirely by your scalability requirements and not any peculiarities of the framework. If you are comfortable with a certain template language or ORM, it will probably plug right in.</p>
<h2>Lock-in</h2>
<p>This is a generalized problem across all frameworks. When you select a language, you limit your code-reuse options. When you select a templater, you are again locked in (although that's easier to change, in general, than other things). The same goes for your ORM, database, and so on. There is nothing these frameworks do specifically that will help or hinder lock-in.</p>
<h2>Flexibility</h2>
<p>It's all about MVC with these three frameworks. As you said, that's a very different discussion!</p>
<h2>Performance, scalability, and stability</h2>
<p>Well, if you write good code, your site will perform well! Again, this is a problem across all frameworks addressed by <a href="http://agilemanifesto.org/principles.html" rel="nofollow">different development techniques</a> and is probably way outside the scope of this answer.</p>
http://stackoverflow.com/questions/139972/committing-a-directory-to-subversion/140116#1401161Answer by Sean for Committing a Directory to SubversionSean2008-09-26T15:10:24Z2008-09-26T15:10:24Z<p>I think the problem is that you are committing changes to the actual SVN repository itself instead of doing an import, checking out a copy for yourself, making changes, and then doing a commit from your checked-out working copy after adding any subdirectories. So: <code>import</code>, <code>checkout</code>, <em>make changes</em>, and then finally do an <code>add</code> for each new file or directory and <code>commit -m "message"</code> form the top level.</p>
<p>More information in the <a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.basic.in-action.wc" rel="nofollow">free online SVN "turtle" book</a>.</p>
http://stackoverflow.com/questions/131165/evolutionary-algorithms-optimal-repopulation-breakdowns/131193#1311933Answer by Sean for Evolutionary Algorithms: Optimal Repopulation BreakdownsSean2008-09-25T02:39:18Z2008-09-25T02:39:18Z<p>This is a hotly-debated (in the literature and <a href="http://mitpress.mit.edu/catalog/item/default.asp?tid=5974&ttype=2" rel="nofollow">Melanie, et al books</a>) topic that seems to be very domain-specific. What works for one problem of one type with n parameters will almost never work for another problem, another domain, or another parametric set.</p>
<p>So, as TraumaPony suggested, tweak it yourself for each problem you are solving or write something to optimize it for you. The best thing you can do is keep track of all of your "knob-twiddling" and fine-tuning experiments so you can map out the solution terrain and get a feel for how to optimize within that space quickly. Also try alternative techniques like hill-climbing so you can have a baseline to beat.</p>
<p>@<a href="#131189" rel="nofollow">Kyle Burton</a>: crossover vs. mutation rates are also <a href="http://www.springerlink.com/content/kptgd4gr8ffb4ph1/" rel="nofollow">constantly debated</a> in each class of problems handed over to GAs and GPs.</p>
http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documented/131149#1311493Answer by Sean for Should all public methods of an API be documented?Sean2008-09-25T02:21:50Z2008-09-25T02:21:50Z<p>This is where I would normally chime in with the "both-ways-uphill when I was a kid" mantras about documenting only when your boss asks you to BUT ... lately I have changed my tune. I think it is <em>crucial</em> to provide thorough documentation of every public method when you are working on an open-source project, a library to be commonly called, or know ahead of time that someone else will have to work closely with the interfaces you are providing.</p>
<p>Documentation makes for maintainable code, but, like anything, you can overdo it and spend time writing comments and POD and wikis when you should be working on adding features and getting unit tests to pass. This is addressed in the <a href="http://en.wikipedia.org/wiki/Agile_software_development#Principles_behind_agile_methods_.E2.80.94_The_Agile_Manifesto" rel="nofollow">Agile Manifesto</a> (ie: face-to-face communication is better than documentation and so on up the ladder of interface methods).</p>
http://stackoverflow.com/questions/48203/java-linux-distros-for-java-development/48217#4821715Answer by Sean for Java: Linux distros for Java DevelopmentSean2008-09-07T07:18:01Z2008-09-22T15:30:57Z<p>A real Sun geek would chime in here about the virtues of using Solaris as a Java development platform, but I am much more ambivalent. Developing with Java is about the same on any linux distro; you are going to wind up having to install the JDK and tools of your choosing (Eclipse, Sun Studio, Tomcat, etc) so you may as well choose a distro on other criteria... perhaps how comfortable you are with it, how easy package management is, and if the look & feel suit your development habits are all big factors.</p>
<p>So, to answer your question more directly, a Java developer would do well with any major linux distro that they are comfortable with using in general. If you want some Java goodness out of the box, Fedora 9 and Ubuntu 8.04 have OpenJDK (and NetBeans) according to <a href="http://www.vnunet.com/vnunet/news/2215568/open-source-java-added-linux" rel="nofollow">a recent announcement</a>.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111878#1118783Answer by Sean for What did you use to teach yourself python?Sean2008-09-21T19:46:13Z2008-09-21T19:46:13Z<p>I agree with William Keller; use the tutorial to get your feet wet (it's short) and then read Dive Into Python or a Book, whichever works for you, as you begin your own project. At first, just to get the hang of the Pythonic style of doing things, check out all the great projects tagged with Python at <a href="http://code.google.com/hosting/search?q=label:Python" rel="nofollow">Google OSS project hosting</a>.</p>
<p>If you get stuck, you can normally get answers within seconds at the <a href="http://www.python.org/community/irc/" rel="nofollow">Python IRC channel</a> on freenode.</p>
http://stackoverflow.com/questions/85119/running-multiple-sites-from-a-single-python-web-framework2Running multiple sites from a single Python web frameworkSean2008-09-17T16:37:23Z2008-09-19T00:44:52Z
<p>What are come good (or at least clever) ways of running multiple sites from a single, common Python web framework (ie: Pylons, TurboGears, etc)? I know you can do redirection based on the domain or path to rewrite the URI to point at a site-specific location and I've also seen some brutish "<code>if site == 'site1' / elseif / elseif / etc</code>" that I would like to avoid.</p>
http://stackoverflow.com/questions/87657/what-are-some-good-programming-challenge-websites/87670#876702Answer by Sean for What are some good programming challenge websites?Sean2008-09-17T21:07:32Z2008-09-17T21:07:32Z<p><a href="http://xkcd.com" rel="nofollow">xkcd</a> turned me on to <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a>, which can be completed in any language. It's pretty challenging after a while (hope you enjoy recursion!) and a bunch of people are doing it so there's a good amount of comparing solutions in just about every language under the sun.</p>
http://stackoverflow.com/questions/84932/how-do-i-get-the-full-path-to-a-perl-script-that-is-executing/84973#849731Answer by Sean for How do I get the full path to a Perl script that is executing?Sean2008-09-17T16:21:33Z2008-09-17T16:21:33Z<p>Have you tried:</p>
<pre><code>$ENV{'SCRIPT_NAME'}
</code></pre>
<p>or</p>
<pre><code>use FindBin '$Bin';
print "The script is located in $Bin.\n";
</code></pre>
<p>It really depends on how it's being called and if it's CGI or being run from a normal shell, etc.</p>
http://stackoverflow.com/questions/61311/web-based-service-for-using-remote-computers/61331#613311Answer by Sean for Web based service for Using Remote Computers..Sean2008-09-14T13:23:22Z2008-09-14T13:23:22Z<p>Aha! You are looking for <a href="https://www.copilot.com/" rel="nofollow">Copilot</a>, one of Fog Creek Software's newest apps. It's free to use on weekends, so hurry up and give it a shot. I think it's a great alternative to the built-in remote desktop for helping friends and relatives.</p>
<p>For more info about its development, <a href="http://www.joelonsoftware.com/items/2007/01/26.html" rel="nofollow">check Joel's blog</a>.</p>
http://stackoverflow.com/questions/49962/task-schedulers/50056#500567Answer by Sean for Task SchedulersSean2008-09-08T16:09:55Z2008-09-08T16:09:55Z<p>As described in a paper titled <a href="http://www.ee.duke.edu/~krish/wip.pdf" rel="nofollow">Real-Time Task Scheduling for Energy-Aware Embedded Systems</a>, Swaminathan and Chakrabarty describe the challenges of real-time task scheduling in low-power (embedded) devices with multiple processor speeds and power consumption profiles available. The scheduling algorithm they outline (and is shown to be only about 1% worse than an optimal solution in tests) has an interesting way of scheduling tasks they call the LEDF Heuristic.</p>
<p>From the paper:</p>
<blockquote>
<p><em>The low-energy earliest deadline first
heuristic, or simply LEDF, is an
extension of the well-known earliest
deadline first (EDF) algorithm. The
operation of LEDF is as follows: LEDF
maintains a list of all released
tasks, called the “ready list”. When
tasks are released, the task with the
nearest deadline is chosen to be
executed. A check is performed to see
if the task deadline can be met by
executing it at the lower voltage
(speed). If the deadline can be met,
LEDF assigns the lower voltage to the
task and the task begins execution.
During the task’s execution, other
tasks may enter the system. These
tasks are assumed to be placed
automatically on the “ready list”.
LEDF again selects the task with the
nearest deadline to be executed. As
long as there are tasks waiting to be
executed, LEDF does not keep the pro-
cessor idle. This process is repeated
until all the tasks have been
scheduled.</em></p>
</blockquote>
<p>And in pseudo-code:</p>
<pre><code>Repeat forever {
if tasks are waiting to be scheduled {
Sort deadlines in ascending order
Schedule task with earliest deadline
Check if deadline can be met at lower speed (voltage)
If deadline can be met,
schedule task to execute at lower voltage (speed)
If deadline cannot be met,
check if deadline can be met at higher speed (voltage)
If deadline can be met,
schedule task to execute at higher voltage (speed)
If deadline cannot be met,
task cannot be scheduled: run the exception handler!
}
}
</code></pre>
<p>It seems that real-time scheduling is an interesting and evolving problem as small, low-power devices become more ubiquitous. I think this is an area in which we'll see plenty of further research and I look forward to keeping abreast!</p>
http://stackoverflow.com/questions/49879/colored-build-output-in-visual-studio/49991#499913Answer by Sean for colored build output in Visual StudioSean2008-09-08T15:49:23Z2008-09-08T15:49:23Z<p>The problem isn't with your build scripts, but with Visual Studio not supporting <a href="http://en.wikipedia.org/wiki/ANSI_escape_code" rel="nofollow">ANSI control codes</a> to change the color.</p>
http://stackoverflow.com/questions/49964/count-a-list-of-cells-with-the-same-background-color/49983#499832Answer by Sean for Count a list of cells with the same background colorSean2008-09-08T15:46:11Z2008-09-08T15:46:11Z<p>Excel has no way of gathering that attribute with it's built-in functions. If you're willing to use some VB, all your color-related questions are answered here:</p>
<p><a href="http://www.cpearson.com/excel/colors.aspx" rel="nofollow">http://www.cpearson.com/excel/colors.aspx</a></p>
<p>Example form the site:</p>
<blockquote>
<p>The SumColor function is a color-based
analog of both the SUM and SUMIF
function. It allows you to specify
separate ranges for the range whose
color indexes are to be examined and
the range of cells whose values are to
be summed. If these two ranges are the
same, the function sums the cells
whose color matches the specified
value. For example, the following
formula sums the values in B11:B17
whose fill color is red.</p>
<p><code>=SUMCOLOR(B11:B17,B11:B17,3,FALSE)</code></p>
</blockquote>
http://stackoverflow.com/questions/48877/choosing-between-ajax-flex-and-silverlight/48900#4890011Answer by Sean for Choosing between AJAX, Flex and SilverlightSean2008-09-07T23:38:25Z2008-09-07T23:38:25Z<p>Here's a quick rundown of each area (with lots of helpful links):</p>
<h2>cross-platform compatibility</h2>
<p><a href="http://arstechnica.com/news.ars/post/20050808-5183.html" rel="nofollow">AJAX</a> works in <a href="http://www.musingsfrommars.org/2006/03/ajax-dhtml-library-scorecard.html" rel="nofollow">any modern browser</a> that can run Javascript. Flex requires flash or anything else that can handle SWFs but, once that's installed, it's a <a href="http://blog.arc90.com/2006/07/10_reasons_we_love_flex_2.php" rel="nofollow">total freeride</a> as far as compatibility. Silverlight is <a href="http://wildermuth.com/2008/04/03/Silverlight_Compatibility_Confusion" rel="nofollow">tricky and misunderstood</a> so carefully consider your <a href="http://en.wikipedia.org/wiki/Silverlight#Compatibility" rel="nofollow">userbase</a> before going with this MS foray into the rich webapp arms race. Also keep in mind that Silverlight is still in Beta, so it may become more widely used and installed in the future as it is developed.</p>
<h2>performance</h2>
<p>I'm fearful of making too many statements about performance because it really depends on how much you are willing to optimize and the exact nature of your application. Also, some technology stacks are just never going to be very fast. <a href="http://www.jamesward.com/wordpress/2007/04/30/ajax-and-flex-data-loading-benchmarks/" rel="nofollow">Some people out there have been making comparisons</a>, but again, <a href="http://metalinkltd.com/?p=108" rel="nofollow">it depends on a great many factors</a> (even the version of the browser from which you are testing!). It's probably best to choose based on other factors and optimize once you've started to develop.</p>
<h2>developer tools</h2>
<p>There are the "golden standard" dev tools for each of the three:</p>
<ul>
<li><p>AJAX has basically unlimited options, depending on the rest of your technology and architecture choices. The big questions you're actually faced with are which libraries to rely upon, and Google has voiced a pretty well adopted answer with things like <a href="http://code.google.com/webtoolkit/" rel="nofollow">Web Toolkit</a>. When you get right down to it, it's just XML and Javascript, right?</p></li>
<li><p>Flex is from Adobe and, just like with Flash development, you'd better stick with <a href="http://www.adobe.com/products/flex/flexdownloads/index.html" rel="nofollow">their homegrown tools</a> because--well--they're making the standards as they go along.</p></li>
<li><p>Microsoft has positioned Microsoft Expression Blend versions 2.0 and 2.5 for designing the UI of Silverlight 1.0 and 2 applications respectively. Visual Studio 2008 can be used to develop and debug Silverlight applications (<a href="http://en.wikipedia.org/wiki/Silverlight#Development_tools" rel="nofollow">from wikipedia</a>). </p></li>
</ul>
<h2>community support</h2>
<p>There is both official and unofficial community, corporate, and open-source support for all three options. Whichever you are already integrated with and which makes you feel most at home are very individual things, but I'll offer this advice: stick with what you know. If you are a MS developer and have MSDN as your homepage, you are probably going to think the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1840cab5-196c-4264-b55d-562242a72625&displaylang=en" rel="nofollow">Silverlight docs</a> and forums are really helpful. Flex has a very similar story; the forums are pretty good and if you're a Flash person already, you're going to be right at home with their <a href="http://www.adobe.com/support/documentation/en/flex/" rel="nofollow">documentation</a> and <a href="http://www.adobe.com/devnet/flex/" rel="nofollow">user community</a>.</p>
<p>On the other hand, AJAX is basically all over the place because you can implement so many different ways and use so many widely-varied libraries. Each library can have it's own forums to visit and mailing lists to lurk within for answers.</p>
<p>Once again, all three have corporate giants trying to foster their communities and to get the best support possible to the developers that will give them greater market share in the future.</p>
http://stackoverflow.com/questions/48777/python-no-module-named-core-exceptions/48806#488064Answer by Sean for Python: No module named core.exceptions Sean2008-09-07T21:28:54Z2008-09-07T21:28:54Z<p><code>core.exceptions</code> is part of django; what version of django do you have installed? The AppEngine comes with the appropriate version for whatever release you've downloaded (in the lib/django directory). It can be installed by going to that directory and running <strong><code>python setup.py install</code></strong></p>
http://stackoverflow.com/questions/48225/play-button-in-browser/48231#482311Answer by Sean for Play button in browserSean2008-09-07T07:53:09Z2008-09-07T07:53:09Z<p>There are <strong>many</strong> flash mp3 players that you can use that do this. Usually, you just have to edit a text file to point at the mp3s you want to have available.</p>
<p>Here is the first one that showed up on a google search for <code>flash mp3 player</code>: <a href="http://www.flashmp3player.org/demo.html" rel="nofollow">http://www.flashmp3player.org/demo.html</a></p>
http://stackoverflow.com/questions/48157/configure-static-routes-on-windows/48166#481664Answer by Sean for Configure static routes on WindowsSean2008-09-07T05:04:05Z2008-09-07T05:04:05Z<p><code>route</code> is a very old and basic tool for displaying and modifying the entries in the local IP routing table while <code>netsh</code> is the newer, more robust command-line <strong>scripting utility</strong> that allows you to, either locally or <strong>remotely</strong>, manipulate the network configuration.</p>
<p><code>netsh</code> has a zillion more features than route; it can even save your current settings as a script that another instance of netsh can parse. Check out <a href="http://technet.microsoft.com/en-us/library/bb490939.aspx" rel="nofollow">Using <code>netsh</code></a> to see the giant feature set and compare it to how very basic and simple <code>routes</code> is.</p>
http://stackoverflow.com/questions/48144/what-are-advantages-of-bytecode-over-native-code/48153#4815316Answer by Sean for What are advantages of bytecode over native code?Sean2008-09-07T04:46:27Z2008-09-07T04:46:27Z<p>Hank Shiffman from SGI said (a long time ago, but it's till true):</p>
<blockquote>
<p>There are three advantages of Java
using byte code instead of going to
the native code of the system:</p>
<ol>
<li><p><strong>Portability</strong>: Each kind of computer has its unique instruction
set. While some processors include the
instructions for their predecessors,
it's generally true that a program
that runs on one kind of computer
won't run on any other. Add in the
services provided by the operating
system, which each system describes in
its own unique way, and you have a
compatibility problem. In general, you
can't write and compile a program for
one kind of system and run it on any
other without a lot of work. Java gets
around this limitation by inserting
its virtual machine between the
application and the real environment
(computer + operating system). If an
application is compiled to Java byte
code and that byte code is interpreted
the same way in every environment then
you can write a single program which
will work on all the different
platforms where Java is supported.
(That's the theory, anyway. In
practice there are always small
incompatibilities lying in wait for
the programmer.)</p></li>
<li><p><strong>Security</strong>: One of Java's virtues is its integration into the Web. Load
a web page that uses Java into your
browser and the Java code is
automatically downloaded and executed.
But what if the code destroys files,
whether through malice or sloppiness
on the programmer's part? Java
prevents downloaded applets from doing
anything destructive by disallowing
potentially dangerous operations.
Before it allows the code to run it
examines it for attempts to bypass
security. It verifies that data is
used consistently: code that
manipulates a data item as an integer
at one stage and then tries to use it
as a pointer later will be caught and
prevented from executing. (The Java
language doesn't allow pointer
arithmetic, so you can't write Java
code to do what we just described.
However, there is nothing to prevent
someone from writing destructive byte
code themselves using a hexadecimal
editor or even building a Java byte
code assembler.) It generally isn't
possible to analyze a program's
machine code before execution and
determine whether it does anything
bad. Tricks like writing
self-modifying code mean that the evil
operations may not even exist until
later. But Java byte code was designed
for this kind of validation: it
doesn't have the instructions a
malicious programmer would use to hide
their assault.</p></li>
<li><p><strong>Size</strong>: In the microprocessor world RISC is generally preferable
over CISC. It's better to have a small
instruction set and use many fast
instructions to do a job than to have
many complex operations implemented as
single instructions. RISC designs
require fewer gates on the chip to
implement their instructions, allowing
for more room for pipelines and other
techniques to make each instruction
faster. In an interpreter, however,
none of this matters. If you want to
implement a single instruction for the
switch statement with a variable
length depending on the number of case
clauses, there's no reason not to do
so. In fact, a complex instruction set
is an advantage for a web-based
language: it means that the same
program will be smaller (fewer
instructions of greater complexity),
which means less time to transfer
across our speed-limited network.</p></li>
</ol>
</blockquote>
<p>So when considering byte code vs native, consider which trade-offs you want to make between portability, security, size, and execution speed. If speed is the only important factor, go native. If any of the others are more important, go with bytecode.</p>
<p>I'll also add that maintaining a series of OS and architecture-targeted compilations of the same code base for every release can become very tedious. It's a huge win to use the same Java bytecode on multiple platforms and have it "just work."</p>
http://stackoverflow.com/questions/48135/how-can-i-allow-incoming-connections-to-a-server-inside-of-virtualbox/48145#481453Answer by Sean for How can I allow incoming connections to a server inside of VirtualBox?Sean2008-09-07T04:37:11Z2008-09-07T04:37:11Z<p>VirtualBox (after version 1.3.8, anyway) will let you map incoming connections in the NAT configuration. There's an excellent tutorial on <a href="http://www.aviransplace.com/2008/06/12/virtualbox-configuring-port-forwarding-with-nat/" rel="nofollow">Aviran's Place</a> that describes the steps to configure port mapping.</p>
http://stackoverflow.com/questions/48115/dhcp-overwrites-cisco-vpn-resolv-conf-on-linux/48130#481304Answer by Sean for DHCP overwrites Cisco VPN resolv.conf on LinuxSean2008-09-07T04:12:27Z2008-09-07T04:12:27Z<p>If you are running without NetworkManager handling the connections, use the resolvconf package to act as an intermediary to programs tweaking /etc/resolv.conf: <strong><code>sudo apt-get install resolvconf</code></strong></p>
<p>If you are using NetworkManager it will handle this for you, so get rid of the resolvconf package: <strong><code>sudo apt-get remove resolvconf</code></strong></p>
<p>I found out about this when setting up vpnc on Ubuntu last week. A search for <strong><code>vpn resolv.conf</code></strong> on ubuntuforums.org has 250 results, many of which are very related!</p>
http://stackoverflow.com/questions/47658/standards-document/48119#481191Answer by Sean for Standards DocumentSean2008-09-07T03:55:53Z2008-09-07T03:55:53Z<p>I'm going to second Jason's suggestion.</p>
<p>I just completed a standards document for a team of 10-12 that work mostly in perl. The document says to use "perltidy-like indentation for complex data structures." We also provided everyone with example perltidy settings that would clean up their code to meet this standard. It was very clear and very much industry-standard for the language so we had great buyoff on it by the team.</p>
<p>When setting out to write this document, I asked around for some examples of great code in our repository and googled a bit to find other standards documents that smarter architects than I to construct a template. It was tough being concise and pragmatic without crossing into micro-manager territory but very much worth it; having <em>any</em> standard is indeed key.</p>
<p>Hope it works out!</p>
http://stackoverflow.com/questions/48041/hbase-hadoop-query-help/48112#481126Answer by Sean for Hbase / Hadoop Query HelpSean2008-09-07T03:42:38Z2008-09-07T03:42:38Z<p>I think you, like many of us, are making the mistake of treating bigtable and HBase like just another RDBMS when it's actually a column-oriented storage model meant for efficiently storing and retrieving large sets of sparse data. This means storing, ideally, many-to-one relationships within a single row, for example. Your queries should return very few rows but contain (potentially) many datapoints.</p>
<p>Perhaps if you told us more about what you were trying to store, we could help you design your schema to match the bigtable/HBase way of doing things.</p>
<p>For a good rundown of what HBase does differently than a "traditional" RDBMS, check out this awesome article: <a href="http://blog.rapleaf.com/dev/?p=26" rel="nofollow">Matching Impedance: When to use HBase</a> by Bryan Duxbury.</p>
http://stackoverflow.com/questions/35480/clearing-classdbis-internal-cache/47599#475992Answer by Sean for Clearing Class::DBI's internal cache.Sean2008-09-06T16:05:05Z2008-09-06T16:05:05Z<p>$obj->dbi_commit(); may be what you are looking for if you have uncompleted transactions. However, this is not very likely the case, as it tends to complete any lingering transactions automatically on destruction.</p>
<p>When you do this:</p>
<pre><code>Music::Artist->purge_object_index_every(2000);
</code></pre>
<p>You are telling it to examine the object cache every 2000 object loads and remove any dead references to conserve memory use. I don't think that is what you want at all.</p>
<p>Furthermore,</p>
<pre><code>Music::DBI->clear_object_index();
</code></pre>
<p>Removes all objects form the live object index. I don't know how this would help at all; it's not flushing them to disk, really.</p>
<p>It sounds like what you are trying to do should work just fine the way you have it, but there may be a problem with your SQL or elsewhere that is preventing the INSERT or UPDATE from working. Are you doing error checking for each database query as the perldoc suggests? Perhaps you can begin there or in your database error logs, watching the queries to see why they aren't being completed or if they ever arrive.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/139972/committing-a-directory-to-subversion/140360#140360Comment by Sean on Committing a Directory to SubversionSean2008-09-27T04:39:01Z2008-09-27T04:39:01ZAh, great! Hope you clear it up and get everything working.http://stackoverflow.com/questions/131165/evolutionary-algorithms-optimal-repopulation-breakdownsComment by Sean on Evolutionary Algorithms: Optimal Repopulation BreakdownsSean2008-09-27T04:28:03Z2008-09-27T04:28:03ZSide note: have you considered one of the many tournament-based selection techniques?http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documentedComment by Sean on Should all public methods of an API be documented?Sean2008-09-25T02:29:44Z2008-09-25T02:29:44ZSorry to edit tags, but I wanted to make sure you were showing up in the most popular clouds and not creating superfluous tags.http://stackoverflow.com/questions/89154/benefits-of-using-short-circuit-evaluation/89173#89173Comment by Sean on Benefits of using short-circuit evaluationSean2008-09-18T01:37:59Z2008-09-18T01:37:59ZLazy evaluation is something different; it's when you only bothering to evaluate an expression when and where you know <i>for certain</i> its result will be used.http://stackoverflow.com/questions/48777/python-no-module-named-core-exceptionsComment by Sean on Python: No module named core.exceptions Sean2008-09-08T12:47:16Z2008-09-08T12:47:16ZHey, glad it finally worked!