User Branan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T12:15:44Z http://stackoverflow.com/feeds/user/13894 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/688165/cross-platform-webcam-access 2 Cross-Platform webcam access Branan 2009-03-27T01:17:55Z 2009-12-01T12:11:10Z <p>I'm looking for a cross-platform video capture library, for webcam access. One that wraps V4L/V4L2 on Linux, DirectShow on Windows, and QuickTime on the Mac.</p> <p>C or C++ is preferred, but I can work in Java or Python if those have better options for libraries.</p> http://stackoverflow.com/questions/103980/specifying-location-of-new-inlineshape-in-word-vba 1 Specifying location of new inlineshape in Word VBA? Branan 2008-09-19T17:40:44Z 2009-09-10T07:51:37Z <p>I'm working on a document "wizard" for the company that I work for. It's a .dot file with a header consisting of some text and some form fields, and a lot of VBA code. The body of the document is pulled in as an OLE object from a separate .doc file.</p> <p>Currently, this is being done as a <code>Shape</code>, rather than an <code>InlineShape</code>. I did this because I can absolutely position the Shape, whereas the InlineShape always appears at the beginning of the document.</p> <p>The problem with this is that a <code>Shape</code> doesn't move when the size of the header changes. If someone needs to add or remove a line from the header due to a special case, they also need to move the object that defines the body. This is a pain, and I'd like to avoid it if possible.</p> <p>Long story short, how do I position an <code>InlineShape</code> using VBA in Word?</p> <p>Oh, and this is for a 10-year-old system setup, so Office '97.</p> http://stackoverflow.com/questions/946762/xdeviceinfo-use-values-that-arent-in-the-xinputextension-spec 0 XDeviceInfo.use values that aren't in the XInputExtension spec Branan 2009-06-03T19:43:03Z 2009-06-03T19:43:03Z <p>The XInput specification defines three <code>use</code> values for the <code>XDeviceInfo</code> structure. They are:</p> <ul> <li><code>IsXKeyboard</code></li> <li><code>IsXPointer</code></li> <li><code>IsXExtensionDevice</code></li> </ul> <p>These roughly equate to (if I'm reading the XInput spec correctly):</p> <ul> <li>Device is being used for core keyboard events</li> <li>Device is being used for core pointer events</li> <li>Device is available as an extension device</li> </ul> <p>My X server (1.5.3) reports 4 devices</p> <ol> <li>A "Virtual Core Keyboard" with use <code>IsXKeyboard</code></li> <li>A "Virtual Core Pointer" with use <code>IsXPointer</code></li> <li>A "Mouse0" with use <code>IsXExtensionPointer</code></li> <li>A "Keyboard0" with use <code>IsXExtensionKeyboard</code></li> </ol> <p>It is the last two that I am interested in. Those are the actual devices in my xorg.conf file.</p> <p>My best guess is that the <code>IsXExtensionKeyboard</code> and <code>IsXExtensionPointer</code> values mean "This device is being used to send core events, but you can use it as an extension device if you want to". Am I on the right track with that? What other information about those values (and any other new features of XInput that might not be in the spec) is available?</p> http://stackoverflow.com/questions/605874/permissions-problems-in-mac-os-x-tiger-server/660473#660473 3 Answer by Branan for Permissions Problems in Mac OS X Tiger Server Branan 2009-03-18T23:19:54Z 2009-03-18T23:19:54Z <p>I suspect you need to set the <code>setgid</code> bit on the directory. See <a href="http://en.wikipedia.org/wiki/Setuid#setgid%5Fon%5Fdirectories" rel="nofollow">Wikipedia</a></p> http://stackoverflow.com/questions/604247/opengl-cross-platform-window/604359#604359 3 Answer by Branan for OpenGL cross platform window Branan 2009-03-02T22:36:59Z 2009-03-02T22:36:59Z <p>When Qt 4.5 comes out (later this month, I think) it will be LGPL, so if you can wait a couple weeks, you can use Qt without having to open-source your program.</p> http://stackoverflow.com/questions/497685/how-do-you-get-around-the-maximum-cuda-run-time/497706#497706 4 Answer by Branan for How do you get around the maximum CUDA run-time? Branan 2009-01-30T23:36:11Z 2009-01-30T23:36:11Z <p>This isn't possible. The time-out is there to prevent bugs in calculations from taking up the GPU for long periods of time.</p> <p>If you use a dedicated card for CUDA work, the time limit is lifted. I'm not sure if this requires a Tesla card, or if a GeForce with no monitor connected can be used.</p> http://stackoverflow.com/questions/466377/how-to-detect-what-cpu-is-being-used-during-runtime/466452#466452 10 Answer by Branan for How to detect what CPU is being used during runtime ? Branan 2009-01-21T18:38:16Z 2009-01-21T18:55:43Z <p>The <code>cpuid</code> instruction, used with <code>EAX=0</code> will return a 12-character vendor string in <code>EBX</code>, <code>EDX</code>, <code>ECX</code>, in that order.</p> <p>For Intel, this string is "GenuineIntel". For AMD, it's "AuthenticAMD". Other companies that have created x86 chips have their own strings.The <a href="http://en.wikipedia.org/wiki/CPUID" rel="nofollow">Wikipedia page</a> for <code>cpuid</code> has many (all?) of the strings listed, as well as an example ASM listing for retrieving the details.</p> <p>You really only need to check if ECX matches the last four characters. You can't use the first four, because some Transmeta CPUs also start with "Genuine"</p> <ul> <li>For Intel, this is <code>0x6c65746e</code></li> <li>For AMD, this is <code>0x444d4163</code></li> </ul> <p>If you convert each byte in those to a character, they'll appear to be backwards. This is just a result of the little endian design of x86. If you copied the register to memory and looked at it as a string, it would work just fine.</p> <p>Example Code:</p> <pre><code>bool IsIntel() // returns true on an Intel processor, false on anything else { int id_str; // The first four characters of the vendor ID string __asm__ ("cpuid":\ // run the cpuid instruction with... "=c" (id_str) : // id_str set to the value of EBX after cpuid runs... "a" (0) : // and EAX set to 0 to run the proper cpuid function. "eax", "ebx", "edx"); // cpuid clobbers EAX, ECX, and EDX, in addition to EBX. if(id_str==0x6c65746e) // letn. little endian clobbering of GenuineI[ntel] return true; else return false; } </code></pre> <p>EDIT: One other thing - this can easily be changed into an <code>IsAMD</code> function, <code>IsVIA</code> function, <code>IsTransmeta</code> function, etc. just by changing the magic number in the <code>if</code>.</p> http://stackoverflow.com/questions/436263/good-download-manager-for-drupal 1 Good download manager for Drupal? Branan 2009-01-12T17:37:16Z 2009-01-12T22:17:37Z <p>I'm looking for a download manager module for Drupal. Ideally, it would give the same sort of power that the Sourceforge manager or the Drupal theme download manager gives. That is:</p> <ul> <li>Multiple download objects, with descriptions</li> <li>Each type has multiple versions available</li> <li>Nicely delimited on the page</li> <li>Unstable, Supported, and Unsupported markers would be nice, but not necessary.</li> </ul> <p>Ease of administration would be nice, but I can handle an arcane upload system if that's what's available.</p> http://stackoverflow.com/questions/436263/good-download-manager-for-drupal/437231#437231 0 Answer by Branan for Good download manager for Drupal? Branan 2009-01-12T22:17:37Z 2009-01-12T22:17:37Z <p>Project works for me, since I'm fine with using Drupal 5. Just for the sake of others who may not be as flexible, does anyone know of anything similar that works with Drupal 6?</p> http://stackoverflow.com/questions/376278/parameter-evaluation-order-before-a-function-calling-in-c/376341#376341 0 Answer by Branan for Parameter evaluation order before a function calling in C Branan 2008-12-17T22:49:13Z 2008-12-17T22:49:13Z <p>Grant's answer is correct, it's undefined.</p> <p>BUT,,,</p> <p>By your example, your compiler seems to be evaluating in right-to-left order (unsurprisingly, the order that arguments are pushed onto the stack). If you can do other tests to show that the order is maintained consistently even with optimizations enabled, and if you're only going to stick with that one version of the compiler, you can safely assume right-to-left ordering.</p> <p>It's totally non-portable and a horrible, horrible thing to do, though.</p> http://stackoverflow.com/questions/332295/what-is-the-most-efficient-way-to-manage-a-large-set-of-lines-in-opengl/332439#332439 6 Answer by Branan for What is the most efficient way to manage a large set of lines in OpenGL? Branan 2008-12-01T22:15:58Z 2008-12-01T22:35:08Z <p>Vertex Buffer Objects are probably what you want. Once you load the original data set in, you can make modifications to existing chunks with <code>glBufferSubData()</code>.</p> <p>If you add extra line segments and overflow the size of your buffer, you'll of course have to make a new buffer, but this is no different than having to allocate a new, larger memory chunk in C when something grows.</p> <p>EDIT: A couple of notes on display lists, and why not to use them:</p> <ol> <li>In OpenGL 3.0, display lists are deprecated, so using them isn't forward-compatible past 3.0 (2.1 implementations will be around for a while, of course, so depending on your target audience this might not be a problem)</li> <li>Whenever you change anything, you have to rebuild the entire display list, which defeats the entire purpose of display lists if things are changed often.</li> </ol> http://stackoverflow.com/questions/226377/operating-system-compile-time/230323#230323 0 Answer by Branan for Operating System compile time Branan 2008-10-23T16:02:41Z 2008-10-23T16:02:41Z <p>Why would you want to worry about build times? Longer build times are <a href="http://xkcd.com/303/" rel="nofollow">way more fun</a>.</p> http://stackoverflow.com/questions/142240/explicit-code-parallelism-in-c/142291#142291 3 Answer by Branan for Explicit code parallelism in c++ Branan 2008-09-26T22:09:26Z 2008-09-26T22:30:48Z <p>Hyperthreading is a much higher-level system than instruction reordering. It makes the processor look like two processors to the operating system, so you'd need to use an actual threading library to take advantage of that. The same thing naturally applies to multicore processors.</p> <p>If you don't want to use low-level threading libraries and instead want to use a task-based parallel system (and it sounds like that's what you're after) I'd suggest looking at <a href="http://www.openmp.org/" rel="nofollow">OpenMP</a> or Intel's <a href="http://www.threadingbuildingblocks.org/" rel="nofollow">Threading Building Blocks</a>.</p> <p>TBB is a library, so it can be used with any modern C++ compiler. OpenMP is a set of compiler extensions, so you need a compiler that supports it. GCC/G++ will from verion 4.2 and newer. Recent versions of the Intel and Microsoft compilers also support it. I don't know about any others, though.</p> <p>EDIT: One other note. Using a system like TBB or OpenMP will scale the processing as much as possible - that is, if you have 100 objects to work on, they'll get split about 50/50 in a two-core system, 25/25/25/25 in a four-core system, etc.</p> http://stackoverflow.com/questions/141939/gcc3-3-undefined-reference-to-stdrbtreeinsertunique/141957#141957 1 Answer by Branan for gcc3.3 undefined reference to std::_Rb_tree<>::insert_unique Branan 2008-09-26T21:01:54Z 2008-09-26T21:01:54Z <p><code>std::_Rb_Tree</code> might be a red-black tree, which would most likely be from using <code>map</code>. It should be part of <code>libstdc++</code>, unless your library is linking against a different version of <code>libstdc++</code> than the application, which from what you've said so far seems unlikely.</p> <p>EDIT: Just to clarify, the red-black tree is the underlying data structure in <code>map</code>. All that <code>hash_map</code> does is hash the key before using it, rather than using the raw value.</p> http://stackoverflow.com/questions/141752/would-you-consider-float-values-to-behave-differently-across-a-release-and-debug/141771#141771 2 Answer by Branan for Would you consider float values to behave differently across a release and debug builds to be a bug? Branan 2008-09-26T20:29:31Z 2008-09-26T20:29:31Z <p>It's not a bug. Any floating point uperation has a certain imprecision. In Release mode, optimization will change the order of the operations and you'll get a slightly different result. The difference should be small, though. If it's big you might have other problems.</p> http://stackoverflow.com/questions/141337/c-stl-should-i-store-entire-objects-or-pointers-to-objects/141366#141366 7 Answer by Branan for C++ STL: should I store entire objects, or pointers to objects? Branan 2008-09-26T19:15:17Z 2008-09-26T19:23:06Z <p>Why not get the best of both worlds: do a container of smart pointers (such as <code>boost::shared_ptr</code>). You don't have to manage the memory, and you don't have to deal with large copy operations.</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/134552#134552 0 Answer by Branan for What was your first home computer? Branan 2008-09-25T17:03:32Z 2008-09-25T17:03:32Z <p>The first computer I remember using was a dual-boot Win95/DOS. It spent most of its time in DOS, running Mechwarrior 2.</p> <p>The first computer I actually owned was a home-built 486 with DOS. I taught myself BASIC in the QBASIC interpreter.</p> http://stackoverflow.com/questions/103980/specifying-location-of-new-inlineshape-in-word-vba/128344#128344 0 Answer by Branan for Specifying location of new inlineshape in Word VBA? Branan 2008-09-24T16:55:49Z 2008-09-24T16:55:49Z <p>My final code ended up using <code>ThisDocument.Paragraphs</code> to get the range I needed. But GSerg pointed me in the right direction of using a <code>Range</code> to get my object where it needed to be.</p> http://stackoverflow.com/questions/32448/which-4-x-version-of-gcc-should-one-use/122630#122630 0 Answer by Branan for Which 4.x version of gcc should one use? Branan 2008-09-23T17:59:18Z 2008-09-23T17:59:18Z <p>I can't say anything about 4.3.2, but my laptop is a Gentoo Linux system built with GCC 4.3.{0,1} (depending on when each package was built), and I haven't seen any problems. This is mostly just standard desktop use, though. If you have any weird code, your mileage may vary.</p> http://stackoverflow.com/questions/122400/what-are-reserved-filenames-for-various-platforms/122429#122429 1 Answer by Branan for What are reserved filenames for various platforms? Branan 2008-09-23T17:24:13Z 2008-09-23T17:24:13Z <p>Unless you're touching special directories, the only illegal names on Linux are '<code>.</code>' and '<code>..</code>'. Any other name is possible, although accessing some of them from the shell requires using escape sequences.</p> <p>EDIT: As Vinko Vrsalovic said, files starting with '<code>-</code>' and '<code>--</code>' are a pain from the shell, since those character sequences are interpreted by the application, not the shell.</p> http://stackoverflow.com/questions/116701/how-can-a-c-c-program-put-itself-into-background/116833#116833 0 Answer by Branan for How can a C/C++ program put itself into background? Branan 2008-09-22T19:07:24Z 2008-09-22T19:07:24Z <p>If you need a script to have the PID of the program, you can still get it after a fork.</p> <p>When you fork, save the PID of the child in the parent process. When you exit the parent process, either output the PID to STD{OUT,ERR} or simply have a <code>return pid;</code> statement at the end of <code>main()</code>. A calling script can then get the pid of the program, although it requires a certain knowledge of how the program works.</p> http://stackoverflow.com/questions/116535/what-is-the-best-way-to-only-include-certain-libraries-on-certain-operating-syste/116664#116664 1 Answer by Branan for What is the best way to only include certain libraries on certain operating systems in c/c++? Branan 2008-09-22T18:37:09Z 2008-09-22T18:37:09Z <p>If you just need to worry about header files, then the preprocessor will do everything you need. If you want to handle differing source files, and possibly different libraries you'll need a tool to handle it.</p> <p>Some options include:</p> <ul> <li><a href="http://sources.redhat.com/autobook/" rel="nofollow">The Autotools</a></li> <li><a href="http://www.scons.org/" rel="nofollow">Scons</a></li> <li><a href="http://www.cmake.org/" rel="nofollow">CMake</a></li> </ul> <p>My personal favorite is CMake. The Autotools uses a multi-stage process that's relatively easy to break, and scons just feels weird to me. Cmake will also generate project files for a variety of IDEs, in addition to makefiles.</p> http://stackoverflow.com/questions/103358/c-strings-utf-8-or-16-bit-encoding/103418#103418 1 Answer by Branan for C++ strings: utf-8 or 16-bit encoding? Branan 2008-09-19T16:23:03Z 2008-09-20T01:01:52Z <p>From what I've read, it's better to use a 16-bit encoding internally unless you're short on memory. It fits almost all living languages in one character</p> <p>I'd also look at <a href="http://www.icu-project.org/" rel="nofollow">ICU</a>. If you're not going to be using certain STL features of strings, using the ICU string types might be better for you.</p> http://stackoverflow.com/questions/105212/linux-recursively-list-all-files-in-a-directory-including-files-in-symlink-direct/105258#105258 0 Answer by Branan for LINUX Recursively list all files in a directory including files in symlink directories Branan 2008-09-19T20:23:59Z 2008-09-19T20:23:59Z <p><code>ls -R -L</code></p> <p><code>-L</code> dereferences symbolic links. This will also make it impossible to see any symlinks to files, though - they'll look like the pointed-to file.</p> http://stackoverflow.com/questions/104968/can-i-use-lgpl-library-in-bsd-x11-licensed-project/104989#104989 0 Answer by Branan for Can I use LGPL library in BSD/X11 licensed project? Branan 2008-09-19T19:54:04Z 2008-09-19T19:54:04Z <p>IANAL, but...</p> <p>As long as you follow the linking restrictions in the LGPL, you should be OK - basically, the user has to be able to modify the LGPL'd code. Since your code is BSD-licensed, and the BSD-license allows a binary without source (which would voilate the LGPL) you'd need to create a dynamic library licensed under the LGPL of all your LGPL'd code and use that.</p> http://stackoverflow.com/questions/103213/as-a-developer-where-is-the-web-headed/103305#103305 0 Answer by Branan for As a developer, where is the web headed? Branan 2008-09-19T16:08:03Z 2008-09-19T16:08:03Z <p>We need a replacement for JavaScript. <em>badly</em>. It's a mess. In fact, I think the browser is the wrong place to be doing rich-client applications in general. Let's keep the browser for HTML and simple scripts.</p> <p>I'd rather see better effort at getting a fast, cross-platform bytecode framework in place. (.NET/MONO is getting there). It has most of the same benefits as javascript - cross platform and easy to deploy. But without the drawbacks - half-a-dozen browsers to write specialized code for, poor performance on machines that are even a couple years old, and, perhaps worst of all, the crummy security around javascript.</p> <p>There are a few big issues with this right now:</p> <ol> <li>Most .NET programmers are trained to write code only for Windows, so don't know when they're doing non-portable things (easy enough to fix)</li> <li>There's no automatic updating when a change is made (Which I don't consider a problem - it encourages better software design practices)</li> <li>There's the idea that "web 2.0" needs to be browser-based. I think as long as the web is involved, it's web2.0, whether it's javascript or a .NET program that pulls data from a server.</li> </ol> http://stackoverflow.com/questions/103174/figuring-out-the-right-language-for-the-job-branching-out-from-c/103222#103222 2 Answer by Branan for Figuring out the right language for the job: branching out from C# Branan 2008-09-19T15:57:21Z 2008-09-19T15:57:21Z <p>I use python for prototyping, since there's almost no turn around time between edits and actually running the new version of the code. I may even end up using it for a real project - the more I use it, the more I like it.</p> <p>It will take some getting used to as a C# programmer, though - the indentation-defines-structure system it uses is a little weird at first.</p> http://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro/98956#98956 -1 Answer by Branan for How to generate a newline in a cpp macro ? Branan 2008-09-19T02:22:10Z 2008-09-19T13:54:54Z <p>use <code>\</code>, like so:</p> <pre><code>#define my_multiline_macro(a, b, c) \ if(a) { \ b += c; \ } </code></pre> http://stackoverflow.com/questions/99853/how-many-of-you-prefer-full-screen/99911#99911 0 Answer by Branan for How many of you prefer full screen? Branan 2008-09-19T05:36:40Z 2008-09-19T05:36:40Z <p>I use fullscreen on my desktop, with it's crummy 1280x1024 LCD. My laptop is 1400x1050, and that's big enough that I don't feel the need to maximize anymore. Not much of a difference between 1280x1024 and 1400x1050, but it's enough.</p> http://stackoverflow.com/questions/97875/rm-rf-equivalent-for-windows/97900#97900 1 Answer by Branan for RM -rf equivalent for Windows? Branan 2008-09-18T23:12:44Z 2008-09-18T23:12:44Z <p><code>rmdir /S /Q %DIRNAME%</code></p> http://stackoverflow.com/questions/605874/permissions-problems-in-mac-os-x-tiger-server/655998#655998 Comment by Branan on Permissions Problems in Mac OS X Tiger Server Branan 2009-03-18T23:45:51Z 2009-03-18T23:45:51Z Either I'm a complete idiot and missed your post, or we cross-posted. Regardless, I'm voting you up, since you seem to have beaten me to the punch. http://stackoverflow.com/questions/58640/great-programming-quotes/58855#58855 Comment by Branan on Great programming quotes Branan 2009-02-25T21:52:04Z 2009-02-25T21:52:04Z It may be a lame excuse, but it's still true - there will be complaints about any language. Even Python. http://stackoverflow.com/questions/532066/how-do-i-use-print-in-python-without-a-line-break-or-space Comment by Branan on How do I use print in python without a line break or space? Branan 2009-02-10T18:02:57Z 2009-02-10T18:02:57Z @S.Lott: since he's using print as a statement and not a function, I'd say it's 2.X http://stackoverflow.com/questions/325906/most-used-parts-of-boost/325917#325917 Comment by Branan on Most used parts of Boost Branan 2009-02-10T17:54:02Z 2009-02-10T17:54:02Z more precisely, Smart pointers give you RAII when there's no choice but to allocate memory dynamically. http://stackoverflow.com/questions/508448/opengl-16-bit-display-via-tao-c/509293#509293 Comment by Branan on OpenGl 16 bit display via Tao/C# Branan 2009-02-03T23:05:29Z 2009-02-03T23:05:29Z I'm not sure any 1.4 hardware supports shaders, even ASM ones http://stackoverflow.com/questions/262657/the-coolest-server-names/266042#266042 Comment by Branan on The Coolest Server Names Branan 2009-02-03T17:50:06Z 2009-02-03T17:50:06Z +1 for pointing me to a new and fun Google app http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381524#381524 Comment by Branan on What is the best comment in source code you have ever encountered? Branan 2009-02-02T23:10:25Z 2009-02-02T23:10:25Z I'm more impressed with the mind-boggling amount of space in that #define. I almost thought Pi was defined to nothing. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/379021#379021 Comment by Branan on What is the best comment in source code you have ever encountered? Branan 2009-02-02T23:09:32Z 2009-02-02T23:09:32Z I refuse to acknowledge that as XML. It is clearly a space-delimited list. http://stackoverflow.com/questions/469696/what-is-your-most-useful-c-c-snippet/476044#476044 Comment by Branan on What is your most useful C/C++ snippet? Branan 2009-01-30T23:17:20Z 2009-01-30T23:17:20Z Two notes - CRITICAL_SECTION is win32, so this isn't cross-platform. Also, the Boost threading library can do pretty much the same thing with boost::lock_guard <a href="http://www.boost.org/doc/libs/1_37_0/doc/html/thread/synchronization.html" rel="nofollow">boost.org/doc/libs/&hellip;</a> http://stackoverflow.com/questions/496732/what-is-the-code-snippet-you-are-most-proud-of/496775#496775 Comment by Branan on What is the code snippet you are most proud of? Branan 2009-01-30T22:54:58Z 2009-01-30T22:54:58Z @saua: I always thought the bash syntax kinda looked like a puking smiley. http://stackoverflow.com/questions/417599/svn-best-practices-working-in-a-team/417620#417620 Comment by Branan on SVN best-practices - working in a team Branan 2009-01-21T20:36:49Z 2009-01-21T20:36:49Z branching and merging is something of a pain in SVN. Other VCSs handle it much better, but I would never advocate a branch-heavy process for SVN. http://stackoverflow.com/questions/466377/how-to-detect-what-cpu-is-being-used-during-runtime/466389#466389 Comment by Branan on How to detect what CPU is being used during runtime ? Branan 2009-01-21T18:46:09Z 2009-01-21T18:46:09Z This is the right way to do it if you want failover code when dealing with other brands - if you know your code will only ever run on AMD and Intel processors, I think mine is a bit clearer. http://stackoverflow.com/questions/449168/are-there-any-good-3rd-party-gui-products-for-python/449258#449258 Comment by Branan on Are there any good 3rd party GUI products for Python? Branan 2009-01-16T22:31:41Z 2009-01-16T22:31:41Z Evan: Qt will be LGPL, but PyQt has its own license. It hasn't yet been determined if PyQt will be licensed LGPL for Qt 4.5 http://stackoverflow.com/questions/436263/good-download-manager-for-drupal/436344#436344 Comment by Branan on Good download manager for Drupal? Branan 2009-01-12T18:03:32Z 2009-01-12T18:03:32Z That's exactly what I was looking for. Thanks =) http://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/398993#398993 Comment by Branan on What is the worst web usability error you have encountered? Branan 2008-12-29T23:43:51Z 2008-12-29T23:43:51Z 2 is really annoying for people who use the tab key to navigate. If you use the mouse it's no big deal - you're just re-selecting the same box. But if you tab, you end up skipping a box. Not fun.