User jleedev - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T09:20:30Zhttp://stackoverflow.com/feeds/user/19750http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1884753/license-info-of-a-deb-package/1884785#18847850Answer by jleedev for license info of a deb packagejleedev2009-12-10T23:16:11Z2009-12-11T00:06:43Z<p>There's no simple command that I know of. You can do something like this:</p>
<pre><code>dpkg-deb --fsys-tarfile foo.deb |tar -xvO ./usr/share/doc/foo/copyright
</code></pre>
<p>This prints the file to standard output.</p>
<p><em>Edit</em> Hmm, that sounds hard. After a quick perusal of the apt cache on my Debian system, I found some phrases that might be useful:</p>
<ul>
<li>"GNU General Public License"</li>
<li>"the above copyright notice and this permission notice", making sure you unwrap lines first</li>
<li><p>"<code>/usr/share/common-licenses/*</code>"</p>
<p>This seems to be the closest to a standard license you'll get, but be careful since often the <em>packaging</em> is under a common-license, but the package contents are under a separate license.</p></li>
<li><code>^License: MPL-1.1 | GPL-2+ | Apache-2.0</code></li>
</ul>
<p>However, some packages (ImageMagick) simply have a free-form license in the copyright file that doesn't really conform to any stock license, except that someone considered it DFSG-approved.</p>
http://stackoverflow.com/questions/1854625/why-cant-i-use-system-valuetype-as-a-generics-constraint/1854692#18546920Answer by jleedev for Why can't I use System.ValueType as a generics constraint?jleedev2009-12-06T07:54:09Z2009-12-06T07:54:09Z<p>Instead of making it generic, just change the parameter's type to <code>ValueType</code>.</p>
http://stackoverflow.com/questions/1846721/vim-good-way-to-setup-makeprgxcodebuild/1846743#18467431Answer by jleedev for Vim: good way to setup makeprg=xcodebuild ?jleedev2009-12-04T12:43:48Z2009-12-04T12:50:57Z<p>I'd say <code>ftplugin</code>, it's very easy. Write this in <code>.vim/ftplugin/objc.vim</code>:</p>
<pre><code>set makeprg=xcodebuild\ -activetarget\ -activeconfiguration
</code></pre>
<p>Also, Vim's filetype detector will consider your .m file to be Objective-C if it notices <code>#include</code>, <code>#import</code>, or <code>/*</code> in the first ten lines. You can write an <code>ftdetect</code> plugin to change the default: <code>.vim/ftdetect/objc.vim</code>:</p>
<pre><code>autocmd BufNewFile,BufReadPost *.m set filetype=objc
</code></pre>
http://stackoverflow.com/questions/1846556/programming-languages-for-writing-gui-application/1846618#18466182Answer by jleedev for Programming Languages for writing GUI applicationjleedev2009-12-04T12:21:15Z2009-12-04T12:21:15Z<p><a href="http://github.com/shoes/shoes" rel="nofollow">Ruby Shoes</a>. It is the prettiest API I've ever seen, and it runs on Windows, OS X, and Linux.</p>
http://stackoverflow.com/questions/1843996/how-does-catch-object-o-work/1844045#18440452Answer by jleedev for How does Catch (object o) work?jleedev2009-12-04T00:19:36Z2009-12-04T00:39:23Z<p>That shouldn't be legal:</p>
<blockquote>
<h2>15.10 The try statement</h2>
<p>When a catch clause specifies a class-type, the type shall be System.Exception or a type that derives from System.Exception.</p>
</blockquote>
<p>Similarly, the only thing that C# lets you throw is an object of type System.Exception.</p>
<p>However,</p>
<blockquote>
<p>Note: Some environments, especially those supporting multiple languages, might support exceptions that are not representable as an object derived from System.Exception, although such an exception could never be generated by C# code. In such an environment, a general catch clause might be used to catch such an exception....</p>
</blockquote>
<p>The general catch clause doesn't let you catch the object, though. If you're only using C#, then I would use <code>catch (Exception e)</code> if I wanted to take some action on the exception's message, or log it somewhere; I would save <code>catch</code> for when you really don't care about the actual exception value. If you were actually depending on the general catch clause to catch things that aren't Exceptions, you should document it with a comment.</p>
http://stackoverflow.com/questions/1841737/hashing-multiple-files/1842978#18429780Answer by jleedev for Hashing Multiple Filesjleedev2009-12-03T21:17:37Z2009-12-03T21:17:37Z<p>Ruby:</p>
<pre><code>#!/usr/bin/env ruby
require 'digest/md5'
Dir.glob('**/*') do |f|
next unless File.file? f
next if /\.md5sum-[0-9a-f]{32}/ =~ f
md5sum = Digest::MD5.file f
newname = "%s/%s.md5sum-%s%s" %
[File.dirname(f), File.basename(f,'.*'), md5sum, File.extname(f)]
File.rename f, newname
end
</code></pre>
<p>Handles filenames that have spaces, no extension, and that have already been hashed.</p>
<p>Ignores hidden files and directories — add <code>File::FNM_DOTMATCH</code> as the second argument of <code>glob</code> if that's desired.</p>
http://stackoverflow.com/questions/1836801/git-should-i-ignore-the-index-or-is-there-a-killer-application-for-it/1836851#18368511Answer by jleedev for Git: Should I ignore the Index or is there a killer application for it?jleedev2009-12-03T00:19:29Z2009-12-03T00:19:29Z<p>Aside from interactive staging, the other important usage of the index is during a merge conflict: Git stages the three versions of the file so it knows the file isn't ready, so there's a version on hand that isn't littered with conflict markers. Third-party tools could use the index here to provide a nice merging interface.</p>
<p>That's not to say this feature fundamentally requires the index — I'm sure Mercurial handles merge conflict without having an index — but the way git approaches this seems nice to me.</p>
http://stackoverflow.com/questions/1836046/normalizing-line-endings-in-ruby/1836138#18361384Answer by jleedev for Normalizing line endings in Rubyjleedev2009-12-02T22:00:35Z2009-12-02T22:05:50Z<p>Best is just to handle the two cases that you want to change specifically and not try to get too clever:</p>
<pre><code>s.gsub /\r\n?/, "\n"
</code></pre>
http://stackoverflow.com/questions/1835837/git-command-not-found/1835854#18358542Answer by jleedev for git: command not foundjleedev2009-12-02T21:11:28Z2009-12-02T21:47:04Z<p>From the page you linked to:</p>
<pre><code>/usr/local/git/bin
</code></pre>
<p>Is that in your PATH?</p>
<p>Open <code>~/.profile</code> in your favorite editor and add the line</p>
<pre><code>export PATH=$PATH:/usr/local/git/bin
</code></pre>
<p>This appends the item to your PATH variable (separarated by colons), so it's compatible with other commands that modify the path.</p>
http://stackoverflow.com/questions/1835620/how-can-i-centre-the-title-of-the-table-of-contents-in-latex/1835722#18357221Answer by jleedev for How can I centre the title of the table of contents in LaTeX?jleedev2009-12-02T20:51:26Z2009-12-02T20:51:26Z<p>This works (without the usepackage):</p>
<pre><code>\renewcommand{\contentsname}{\centering Contents}
</code></pre>
<p>Make sure it's in the preamble, perhaps, and try killing the <code>.aux</code> file.</p>
http://stackoverflow.com/questions/1835040/c-inheritance-designing-a-linked-list/1835152#18351522Answer by jleedev for C++ inheritance designing a linked listjleedev2009-12-02T19:13:08Z2009-12-02T19:33:30Z<p><em>Edit</em>: I see.</p>
<p>Ideally, you'd have just one linked list implementation that can hold any kind of value, including — and here's the kicker — a compound data structure that has a linked list as one of its fields. In the code you have right now, the inheritance is actually unnecessary as far as I can tell, you're generally duplicating all the hard work of creating a linked list, and you're mixing the linked list data structure with your higher-level object representing the various lists of words.</p>
<p>Here is one possible way I might structure the data structures here:</p>
<ul>
<li><p>The generic linked list:</p>
<pre><code>template <typename T>
class LinkedList { ... };
</code></pre></li>
<li><p>A class that uses linked lists to represent whatever list of words you're making:</p>
<pre><code>class TokenList {
struct Token {
string word;
LinkedList<string> related;
};
LinkedList<Token> list;
// Methods to add/search/remove tokens from the lists and sublists
};
</code></pre></li>
</ul>
<p><em>(Also, I suspect the data structure you're actually seeking is a <code>map</code>, but that's another discussion.)</em></p>
http://stackoverflow.com/questions/1832940/is-using-eval-in-python-a-bad-practice/1832968#18329684Answer by jleedev for Is Using eval In Python A Bad Practice?jleedev2009-12-02T13:38:31Z2009-12-02T13:38:31Z<p>In this case, yes. Instead of</p>
<pre><code>exec 'self.Foo=val'
</code></pre>
<p>you should use the <a href="http://docs.python.org/library/functions.html" rel="nofollow">builtin</a> function <code>setattr</code>:</p>
<pre><code>setattr(self, 'Foo', val)
</code></pre>
http://stackoverflow.com/questions/1829621/setting-variables-with-blocks-in-ruby/1831697#18316971Answer by jleedev for Setting variables with blocks in rubyjleedev2009-12-02T09:20:51Z2009-12-02T09:30:45Z<p>Although others have given more idiomatic solutions to your specific problem, there's actually a cool method <code>Object#instance_eval</code>, which is a standard trick that many Ruby DSLs use. It sets <code>self</code> to the receiver of <code>instance_eval</code> inside its block:</p>
<p>Short example:</p>
<pre><code>x = ''
x.instance_eval do
for word in %w(this is a list of words)
self << word # This means ``x << word''
end
end
p x
# => "thisisalistofwords"
</code></pre>
<p>It doesn't pervasively cover everything in the way Perl's <code>$_</code> does, but it allows you to implicitly send methods to one single object.</p>
http://stackoverflow.com/questions/1830420/is-it-possible-to-compare-private-attributes-in-ruby/1830446#18304463Answer by jleedev for Is it possible to compare private attributes in Ruby?jleedev2009-12-02T03:14:33Z2009-12-02T03:25:45Z<p>There are several methods</p>
<p>Getter:</p>
<pre><code>class X
attr_reader :a
def m( other )
a == other.a
end
end
</code></pre>
<p><code>instance_eval</code>:</p>
<pre><code>class X
def m( other )
@a == other.instance_eval { @a }
end
end
</code></pre>
<p><code>instance_variable_get</code>:</p>
<pre><code>class X
def m( other )
@a == other.instance_variable_get :@a
end
end
</code></pre>
<p>I don't think ruby has a concept of "friend" or "protected" access, and even "private" is easily hacked around. Using a getter creates a read-only property, and instance_eval means you have to know the name of the instance variable, so the connotation is similar.</p>
http://stackoverflow.com/questions/1824245/scope-of-local-variables-of-a-function-in-c/1824283#18242836Answer by jleedev for scope of local variables of a function in Cjleedev2009-12-01T06:05:23Z2009-12-01T07:36:06Z<p>Modify it to add a second call to <code>printf</code> and you'll see a different value from the first time. Compile it with optimizations turned on and you'll see another set of values. Do <em>anything</em> with the value and you're stepping into undefined territory, which means that the compiler is free to summon demons through your nasal passages.</p>
<p>On my system, I see <code>50</code> and then <code>0</code>; with optimizations I see <code>0</code> and then <code>32767</code>.</p>
<p>If you make the local variable <code>static</code>, then you can return its address since it becomes just like a global (but remember that there is only one instance of it).</p>
<p>When a function returns, the local storage it was using on the stack is now considered "unused" by the program, since the stack doesn't go that high anymore. Typically, though, the values are still there, since there's no urgent need to clear them. The memory is also still owned by the program, since there's no sense in returning memory to the operating system a few bytes at a time. So for your specific example, under the circumstances in which you compiled it, the memory pointed to still contains the value <code>50</code>. Officially, though, the value of <code>*p</code> is <em>indeterminate</em>, and attempts to use it result in <em>undefined</em> behavior.</p>
<p>One existential crisis of the C language is how on the one hand, it says nothing about the stack and the various bits of hexadecimal sludge that make up a running process; on the other hand, it's necessary to understand those in order to protect yourself from crashes, buffer overflows, and undefined behavior. Just remember that you're lucky that GCC gives a warning for this.</p>
http://stackoverflow.com/questions/1824417/major-changes-in-python-since-version-2-2-3/1824451#18244511Answer by jleedev for major changes in python since version 2.2.3jleedev2009-12-01T06:58:22Z2009-12-01T07:28:56Z<p>That's weird, because it compiles if you remove the <code>()</code> in the class definition. However, the <a href="http://www.python.org/doc/2.2/ref/class.html#tok-inheritance" rel="nofollow">documentation</a> says that empty parens there is ok.</p>
<p>Since you're using lots of python 2.5 features, it's going to be hard work to find them all. I would recommend reading the "What's new in Python" for every version between 2.2 and 2.5, then coming up with a list of features that you might be able to search for with your, such as:</p>
<ul>
<li>Comprehensions and generators</li>
<li>Ternary expression</li>
<li>Decorators</li>
<li>New-style classes</li>
</ul>
<p>Luckily, most of the new features come with a new language keyword (or a new way of using a keyword, in the case of the ternary <code>x if p else y</code>), so it shouldn't be hard to grep for them.</p>
http://stackoverflow.com/questions/1818501/javascript-how-is-function-x-different-from-x-function6JavaScript: How is "function x() {}" different from "x = function() {}" ?jleedev2009-11-30T08:22:45Z2009-12-01T06:29:13Z
<p>In the answers to <a href="http://stackoverflow.com/questions/336859/javascript-var-functionname-function-vs-function-functionname">this question</a>, we read that <code>function f() {}</code> defines the name locally, while <code>f = function() {}</code> defines it globally. That makes perfect sense to me, but there's some strange behavior that's different between the two declarations.</p>
<p>I made an HTML page with the script</p>
<pre><code>onload = function() {
alert("hello");
}
</code></pre>
<p>and it worked as expected. When I changed it to</p>
<pre><code>function onload() {
alert("hello");
}
</code></pre>
<p>nothing happened. (Firefox still fired the event, but WebKit, Opera, and Internet Explorer didn't, although frankly I've no idea which is correct.)</p>
<p>In both cases (in all browsers), I could verify that both <code>window.onload</code> and <code>onload</code> were set to the function. In both cases, the global object <code>this</code> is set to the window, and I no matter how I write the declaration, the <code>window</code> object is receiving the property just fine.</p>
<p>What's going on here? Why does one declaration work differently from the other? Is this a quirk of the JavaScript language, the DOM, or the interaction between the two?</p>
<p><hr></p>
<p>If I change the first example to <code>var onload = function...</code>, then it still works fine.</p>
http://stackoverflow.com/questions/1818501/javascript-how-is-function-x-different-from-x-function/1824361#18243610Answer by jleedev for JavaScript: How is "function x() {}" different from "x = function() {}" ?jleedev2009-12-01T06:29:13Z2009-12-01T06:29:13Z<p>Here's what I think is going on, based on Tim Down's helpful comments and a brief discussion with Jonathan Penn:</p>
<p>When the JavaScript interpreter assigns to the <code>window.onload</code> property, it's talking to an object that the browser has given it. The setter that it invokes notices that the property is called <code>onload</code>, and so goes off to the rest of the browser and wires up the appropriate event. All of this is outside the scope of JavaScript — the script just sees that the property has been set.</p>
<p>When you write a declaration <code>function onload() {}</code>, the setter doesn't get called in quite the same way. Since the declaration causes an assignment to happen at <em>parse</em> time, not evaluation time, the script interpreter goes ahead and creates the variable without telling the browser; or else the window object isn't ready to receive events. Whatever it is, the browser doesn't get a chance to see the assignment like it does when you write <code>onload = function() {}</code>, which goes through the normal setter routine.</p>
http://stackoverflow.com/questions/1822849/what-are-these-ms-that-keep-showing-up-in-my-files-in-emacs/1822882#18228825Answer by jleedev for What are these ^M's that keep showing up in my files in emacs?jleedev2009-11-30T22:32:08Z2009-11-30T22:32:08Z<p>In <a href="http://www.kernel.org/pub/software/scm/git/docs/git-config.html" rel="nofollow">git-config</a>, set <code>core.autocrlf</code> to <code>true</code> to make git automatically convert line endings correctly for your platform.</p>
http://stackoverflow.com/questions/1819866/git-pull-error-entry-notuptodate-cannot-merge/1819886#18198862Answer by jleedev for Git pull - error entry notuptodate cannot mergejleedev2009-11-30T13:41:19Z2009-11-30T13:41:19Z<p>To throw away all your changes and go back to the latest commit, use</p>
<pre><code>git reset --hard HEAD
</code></pre>
<p>A fast-forward is a kind of merge where there's no actual merging to do, you just have to hop along the commits. In this case, git isn't actually telling you <em>what</em> to do, but it's letting you know that you really ought to pull (because it would be trivial).</p>
http://stackoverflow.com/questions/1819561/why-does-glib-redefine-types/1819582#18195825Answer by jleedev for Why does glib redefine types?jleedev2009-11-30T12:38:06Z2009-11-30T12:38:06Z<p>Check out <a href="http://library.gnome.org/devel/glib/2.22/glib-Basic-Types.html" rel="nofollow">Basic Types</a> in the GLib documentation. Essentially, it's to guarantee that certain types will exist with certain semantics, regardless of which C compiler or platform you're using. The types that C guarantees anyway are <code>typedef</code>ed just to make all of the type names look uniform.</p>
http://stackoverflow.com/questions/1819293/how-to-add-weights-to-a-mysql-table-and-select-random-values-according-to-these/1819365#18193651Answer by jleedev for How to add "weights" to a MySQL table and select random values according to these?jleedev2009-11-30T11:55:04Z2009-11-30T12:11:34Z<p>I found this <a href="http://code.google.com/p/quodlibet/source/browse/quodlibet/quodlibet/qltk/playorder.py#138" rel="nofollow">nice little algorithm</a> in Quod Libet. You could probably translate it to some procedural SQL.</p>
<pre><code>function WeightedShuffle(list of items with weights):
max_score ← the sum of every item’s weight
choice ← random number in the range [0, max_score)
current ← 0
for each item (i, weight) in items:
current ← current + weight
if current ≥ choice or i is the last item:
return item i
</code></pre>
http://stackoverflow.com/questions/1818025/reading-characters-outside-ascii/1818104#18181042Answer by jleedev for Reading characters outside ASCII.jleedev2009-11-30T06:15:24Z2009-11-30T06:15:24Z<p>Your system is using UTF-8 character encoding (as it should) so the character '¤' causes your program to read the sequence of bytes <code>C2 A4</code>. Since a <code>char</code> is one byte, it reads them one at a time. Look into the <code>wchar_t</code> and the corresponding <code>wcin</code> and <code>wcout</code> streams to read multibyte characters, although I don't know which encodings they support or how they play with locales.</p>
<p>Also, your program is outputting invalid UTF-8, so you really shouldn't be seeing those two characters — I get question marks on my system.</p>
<p>(This is a nitpick and somewhat offtopic, but your <code>while(input)</code> should be <code>while(cin)</code>, otherwise you'll get an infinite loop.)</p>
http://stackoverflow.com/questions/1816993/haskell-dividing-num/1817118#18171184Answer by jleedev for Haskell dividing numjleedev2009-11-29T23:17:53Z2009-11-29T23:46:04Z<blockquote>
<p>My <code>avg</code> function signature should have nothing to do with the division operator's quirks</p>
</blockquote>
<p>Why is that? If you want to compute the average of a bunch of Integers, you'll have to divide at some point, so you'll have to convert them from Integers to the division-supporting type of your choice. A close look at the <code>Num</code> class (<code>:i Num</code> in ghci) reveals one problem with the type of <code>avg</code>: <code>Num</code> doesn't have enough methods — basically enough to add, multiply, and subtract. There's no guarantee that the number I give to <code>avg</code> can be converted to a <code>Double</code> at all.</p>
<p>If you enter an untyped function to compute an average, Haskell responds with the most generic type possible:</p>
<pre><code>Prelude List> :type \x -> sum x / genericLength x
\x -> sum x / genericLength x :: (Fractional a) => [a] -> a
</code></pre>
<p>So that's the correct type of <code>avg</code>.</p>
<p>You might notice that <code>avg [1,2,3 :: Integer]</code> gives a type error. You can get around that by passing the argument to <code>toRational</code> or <code>fromIntegral</code> first, which use the <code>Real</code> and <code>Integral</code> instances for <code>Integer</code>, respectively.</p>
<p><hr></p>
<p>Regarding the expression <code>sum [1,2,3] / len [1,2,3]</code>: It's true that a literal number like <code>1</code> has the type of <code>Num a => a</code>, which calls <code>fromInteger</code> on whatever type it turns out to be, but an expression like <code>1/2</code> has a more specific type of <code>Fractional a => a</code>, which you can see if you ask for the type of that expression instead of printing it out.</p>
<p>Something that might be helpful is <code>:set -Wall</code> in ghci, which turns on lots of warnings whenever a default type is chosen for you, giving a clue that the most generic type might no longer be correct.</p>
http://stackoverflow.com/questions/1811764/closures-in-ruby/1811862#18118622Answer by jleedev for Closures in Ruby jleedev2009-11-28T07:21:17Z2009-11-28T07:21:17Z<p>One difference is that while Scheme has only one kind of procedure, Ruby has four. Most of the time, they behave similarly enough to your standard lambda, but you should try to <a href="http://innig.net/software/ruby/closures-in-ruby.rb" rel="nofollow">understand all the details in depth</a>.</p>
http://stackoverflow.com/questions/1811321/building-a-window-manager/1811356#18113567Answer by jleedev for Building a Window Managerjleedev2009-11-28T02:35:46Z2009-11-28T03:18:26Z<p>One important decision is how you're going to talk to the X server. You can use the <a href="http://tronche.com/gui/x/xlib/" rel="nofollow">Xlib</a> bindings for your language of choice, or you can use the higher-level <a href="http://xcb.freedesktop.org/" rel="nofollow">XCB</a> bindings. (If you're <a href="http://www0.us.ioccc.org/1991/davidguy.hint" rel="nofollow">insane</a>, you might open a socket to the X server directly.)</p>
<p>To know how a window manager ought to behave, there are two documents that specify the conventions and policies: <a href="http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html" rel="nofollow">EWMH</a> and <a href="http://tronche.com/gui/x/icccm/" rel="nofollow">ICCCM</a><sup>1</sup>. Conforming to these means your window manager will behave nicely in GNOME, KDE, XFCE, and any other desktop environment that comes along, although simply ignoring them is certainly easier on your first try.</p>
<p>A window manager needn't be a huge, complicated ball of C — Successful window managers have been written in high-level languages like Lisp, Haskell, and Python, and even some in C have remained small and readable. <a href="http://xmonad.org/" rel="nofollow">XMonad</a>, written in Haskell, stayed under 1000 lines for quite some time. <a href="http://www.nongnu.org/stumpwm/" rel="nofollow">StumpWM</a> (Common Lisp) and <a href="http://dwm.suckless.org/" rel="nofollow">DWM</a> (C) are both quite minimalist. You might be able to read their source code to get some inspiration as to how to design a WM.</p>
<p><hr></p>
<p><sup>1</sup> Elijah Newren wrote:</p>
<blockquote>
<p>DO NOT GO AND READ THOSE THINGS. THEY ARE REALLY, REALLY BORING. If you do, you'll probably end up catching up on your sleep instead of hacking on Metacity. ;-)</p>
</blockquote>
<p>Come to think of it, <a href="http://git.gnome.org/cgit/metacity/tree/" rel="nofollow">Metacity</a>'s documentation has a good bit to say about how it interacts with windows and what sort of extended properties it supports.</p>
http://stackoverflow.com/questions/1785359/c-dynamic-return-type/1785608#17856080Answer by jleedev for C#, dynamic return typejleedev2009-11-23T20:07:11Z2009-11-23T20:07:11Z<blockquote>
<p>there are alot of " left(str,1) < 'x' " but other times it is simply abc = left(str,3)</p>
</blockquote>
<p>In this particular case, you could just return a single-character string. Comparing strings operates on their lexicographical order, so there's no specific need to use chars here (unless, of course, the original author was using polymorphism to treat the chars differently from strings, in which case you have my sympathies).</p>
http://stackoverflow.com/questions/1776780/video-format-that-wouldnt-require-a-browser-plugin/1776845#17768455Answer by jleedev for Video format that wouldn't require a browser pluginjleedev2009-11-21T21:25:12Z2009-11-21T21:30:37Z<p>There is no single video that will play in every browser. If you want it to work across the most browsers, you're going to have to encode your video more than once. <a href="http://diveintohtml5.org/video.html" rel="nofollow">Dive into HTML5 video</a> has the gory details.</p>
<p>You nest your video references so that browsers try these in order, falling back if it's not supported:</p>
<ol>
<li>Ogg Theora</li>
<li>MP4 H.264</li>
<li>A Flash container displaying #2</li>
</ol>
<p>Number 1 gets you Firefox 3.5 and Chrome. Number 2 gets you Safari and the mobile phone WebKit browsers. Number 3 gets you IE, Firefox ≤3, and Opera.</p>
http://stackoverflow.com/questions/1774844/method-definition-without-a-name-in-ruby-on-rails/1774854#17748544Answer by jleedev for Method definition without a name in Ruby on Railsjleedev2009-11-21T07:42:39Z2009-11-21T08:44:32Z<p>In this case, <code>begin</code> is just the name of a method; it's unrelated to the <code>begin</code>…<code>rescue</code> syntax for handling exceptions (in which the <code>begin</code> is sometimes optional). <code>foo.begin</code> is valid syntax for calling this method as well.</p>
<p>Since we're inside a Rails controller, <code>begin</code> is additionally the name of an action.</p>
<p>Constructors are defined with the <code>initialize</code> instance method.</p>
http://stackoverflow.com/questions/1753594/are-there-any-guidelines-as-to-when-links-should-open-in-a-new-window/1753704#17537041Answer by jleedev for Are there any guidelines as to when links should open in a new window?jleedev2009-11-18T04:49:45Z2009-11-18T04:49:45Z<p>The <a href="http://www.w3.org/TR/WCAG/#consistent-behavior" rel="nofollow">WCAG</a> says "Make web pages appear and operate in consistent ways," and goes on to describe how a <strong>change of context</strong> should only be initiated by a user request or it should be easily disabled.</p>
<p>In <a href="http://www.w3.org/TR/html4/present/frames.html#h-16.3.2" rel="nofollow">HTML4</a> and in <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#valid-browsing-context-name-or-keyword" rel="nofollow">HTML5</a>, the process by which a link opens in a new window is described, and in both cases user agents may suppress this if so configured by the user.</p>
<p>However, these are really descriptions of mechanism — when the browser should and shouldn't open a window — not policy.</p>
http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1845660#1845660Comment by jleedev on What's the most elegant 10-20 line function you've seen/written?jleedev2009-12-11T19:42:26Z2009-12-11T19:42:26ZI removed some of the formatting abuse to make it easier to see.http://stackoverflow.com/questions/1879371/flood-fill-algorithm/1879420#1879420Comment by jleedev on Flood fill algorithmjleedev2009-12-10T08:34:49Z2009-12-10T08:34:49ZThe code works once you add bounds checking.http://stackoverflow.com/questions/1877921/what-is-the-pattern-for-unit-testing-flow-controlComment by jleedev on What is the Pattern for Unit Testing flow controljleedev2009-12-10T06:32:44Z2009-12-10T06:32:44ZMaybe your methods are too long.http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1846197#1846197Comment by jleedev on What's the most elegant 10-20 line function you've seen/written?jleedev2009-12-10T00:50:42Z2009-12-10T00:50:42ZThis code seems trite by itself, but it can be useful where you have a compile-time constant that <i>must</i> be prime — perhaps in the context of a hash algorithm, or a finite field.http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1845752#1845752Comment by jleedev on What's the most elegant 10-20 line function you've seen/written?jleedev2009-12-10T00:48:12Z2009-12-10T00:48:12ZAugh! <i>Inserting</i> conditionals for no reason?http://stackoverflow.com/questions/1877795/how-to-force-internet-explorer-ie-to-really-reload-the-pageComment by jleedev on How to force Internet Explorer (IE) to REALLY reload the page?jleedev2009-12-09T23:54:28Z2009-12-09T23:54:28ZUse a private browsing window, maybe?http://stackoverflow.com/questions/1871939/my-emacss-m-x-key-is-bad-can-you-help-me/1872173#1872173Comment by jleedev on My emacs's M-x key is Bad. Can you help me?jleedev2009-12-09T08:19:32Z2009-12-09T08:19:32ZI want a keyboard with an <code>M-x</code> key.http://stackoverflow.com/questions/1855884/determine-font-color-based-on-background-color/1855903#1855903Comment by jleedev on Determine font color based on background colorjleedev2009-12-06T17:23:51Z2009-12-06T17:23:51ZIt's probably not important, but you might want a better function to compute the brightness <a href="http://stackoverflow.com/questions/596216/formula-to-determine-brightness-of-rgb-color" rel="nofollow" title="formula to determine brightness of rgb color">stackoverflow.com/questions/596216/…</a>http://stackoverflow.com/questions/1853557/facing-issue-generating-pdf-using-fpdfComment by jleedev on Facing issue generating pdf using fpdfjleedev2009-12-05T21:50:37Z2009-12-05T21:50:37ZTurn on error reporting with <a href="http://www.php.net/manual/en/function.error-reporting.php" rel="nofollow">php.net/manual/en/…</a> to see them when the script runs.http://stackoverflow.com/questions/1803165/signing-a-pdf-fileComment by jleedev on Signing a PDF filejleedev2009-12-04T19:11:04Z2009-12-04T19:11:04ZWhat is the precise error that Adobe gives? I.e. is the signature invalid or is the CA unknown?http://stackoverflow.com/questions/63998/hidden-features-of-ruby/474888#474888Comment by jleedev on Hidden features of Rubyjleedev2009-12-04T15:42:58Z2009-12-04T15:42:58ZThis language is impossible.http://stackoverflow.com/questions/1847053/how-to-get-address-of-base-stack-pointer/1847109#1847109Comment by jleedev on How to get address of base stack pointerjleedev2009-12-04T14:12:39Z2009-12-04T14:12:39ZWhat if you make it <code>volatile</code>?http://stackoverflow.com/questions/63998/hidden-features-of-ruby/474888#474888Comment by jleedev on Hidden features of Rubyjleedev2009-12-04T12:59:31Z2009-12-04T12:59:31ZArray#choice is in 1.8.7http://stackoverflow.com/questions/158229/what-are-the-pros-of-vb-netComment by jleedev on What are the pros of VB.NET?jleedev2009-12-04T11:32:38Z2009-12-04T11:32:38Z@jammus Far too many questions are tagged both [c#] and [vb.net], but a Google search <a href="http://www.google.com/search?q=site%3Astackoverflow.com+comparison+of+c%23+and+vb.net" rel="nofollow">google.com/search?q=site%3Astackoverflow.com+comp…</a> finds them really well.http://stackoverflow.com/questions/623747/moving-from-c-to-vb-net/623790#623790Comment by jleedev on Moving from C# to VB.Netjleedev2009-12-04T10:25:54Z2009-12-04T10:25:54Z<code>Option Base 0</code> is the default. You can make an array declaration slightly more readable by saying <code>Dim monthNames(0 to 11)</code>, which clearly states the bounds.