User Javier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:02:21Z http://stackoverflow.com/feeds/user/11649 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856210/trying-to-derive-a-2d-transformation-matrix-using-only-the-images/1856265#1856265 1 Answer by Javier for Trying to derive a 2D transformation matrix using only the images... Javier 2009-12-06T19:09:38Z 2009-12-06T19:09:38Z <p>You only need 3 points to define a 3x3 transformation matrix. If you have the points (0,0), (0,1) and (1,0) and transform them by the matrix [a b c d e f 0 0 1], you'll get (c,f), (b,e) and (a,d).</p> http://stackoverflow.com/questions/1845268/what-does-this-scheme-function-do/1845425#1845425 0 Answer by Javier for What does this scheme function do? Javier 2009-12-04T07:34:58Z 2009-12-04T07:34:58Z <p>counts non-nil leaves of a tree</p> http://stackoverflow.com/questions/1836861/how-to-update-a-django-page-without-a-page-reload/1837023#1837023 0 Answer by Javier for how to update a Django page without a page reload ? Javier 2009-12-03T01:08:28Z 2009-12-03T01:08:28Z <p>two approaches:</p> <ol> <li><p>just update the database and wait until the next AJAX query. that means it should do the query periodically, you'll have to balance between immediacy and server load. it helps a little if you can do a cheap query to just verify if there has been an update. maybe make that check rely only on memcached instead of going to the DB</p></li> <li><p>use <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">comet</a>. In short: the client does an AJAX query asking for the update. the server sees there's no update, so it doesn't answer. instead, the connection is kept open for a long time. eventually either the update comes and the server finally answers, or the client times out and kill the connection. in that case, the client should immediately reissue the query to keep waiting for the update.</p></li> </ol> http://stackoverflow.com/questions/1805638/html-forms-working-offline/1805792#1805792 1 Answer by Javier for HTML forms working offline Javier 2009-11-26T21:42:03Z 2009-11-26T21:42:03Z <p>I'd say go for HTML5. Not all browsers support it; but all will. In the meanwhile, i think it's better to say "to get offline features try such or such browser", instead of "please download this huge plugin with lots of scary warnings".</p> <p>Also a simple demographics: HTML5 is in what, 5% of all browsers? 10%? still a lot more than the 0% of users with Gears already installed.</p> <p>It's a real pity, thanks a lot Google for pushing the envelope with Gears; but in the wild the only plugin generally accepted is Flash. Fortunately, HTML5 is almost there already, with nearly the same features.</p> http://stackoverflow.com/questions/1805645/ideas-for-implementing-a-vfs/1805758#1805758 0 Answer by Javier for Ideas for implementing a VFS Javier 2009-11-26T21:34:57Z 2009-11-26T21:34:57Z <p>I'd go with WebDAV. A <em>lot</em> less code, and well defined standards</p> http://stackoverflow.com/questions/1804106/how-to-automatically-download-all-my-pics-from-my-website-not-using-ftp/1804147#1804147 3 Answer by Javier for How to automatically download all my pics from my website not using FTP? Javier 2009-11-26T14:54:58Z 2009-11-26T14:54:58Z <p>one word: <a href="http://www.gnu.org/software/wget/manual/wget.html" rel="nofollow"><code>wget</code></a></p> http://stackoverflow.com/questions/1798455/concurrency-how-does-shared-memory-vs-message-passing-handle-large-data-structur/1798578#1798578 10 Answer by Javier for Concurrency: how does shared memory vs message passing handle large data structures? Javier 2009-11-25T17:26:53Z 2009-11-25T17:26:53Z <ul> <li><p>Yes, shared state could be faster in this case. But only if you can forgo the locks, and this is only doable if it's absolutely read-only. if it's 'mostly read-only' then you need a lock (unless you manage to write lock-free structures, be warned that they're even trickier than locks), and then you'd be hard-pressed to make it perform as fast as a good message-passing architecture.</p></li> <li><p>Yes, you could write a 'server process' to share it. With really lightweight processes, it's no more heavy than writing a small API to access the data. Think like an object (in OOP sense) that 'owns' the data. Splitting the data in chunks to enhance parallelism (called 'sharding' in DB circles) helps in big cases (or if the data is on slow storage).</p></li> <li><p>Even if NUMA is getting mainstream, you still have more and more cores per NUMA cell. And a big difference is that a message can be passed between just two cores, while a lock has to be flushed from cache on ALL cores, limiting it to the inter-cell bus latency (even slower than RAM access). If anything, shared-state/locks is getting more and more unfeasible.</p></li> </ul> <p>in short.... get used to message passing and server processes, it's all the rage.</p> http://stackoverflow.com/questions/1765560/what-are-the-differences-in-variable-scoping-between-python-and-scheme/1765688#1765688 2 Answer by Javier for What are the differences in variable scoping between Python and Scheme? Javier 2009-11-19T18:54:38Z 2009-11-19T18:54:38Z <p>In Python variable scope can be either global or function. In Scheme, the scope can be any block.</p> <p>For example, in Scheme you could define a variable inside a loop, and it wouldn't be accessible from outside the loop. In Python, the scope being the whole function, this variable would 'leak' out of the loop into the rest of the function.</p> <p>About your specific question: note that anonymous (lambda) functions in Python are horribly limited (just a single expression, no if/then statements, loops, etc.), so you usually define complete (named) inner functions. In this case the scope rules are similar to Scheme: the inner function can access the outer function's variables (creating a closure), and the outer function can't access variables defined inside the inner function.</p> <p>In short: lexical scoping and closures work as expected; just remember that the scoping granularity is per function, not per block.</p> http://stackoverflow.com/questions/1765573/how-to-parse-a-rendered-web-page-containing-javascript/1765648#1765648 0 Answer by Javier for How to parse a rendered web page containing javascript. Javier 2009-11-19T18:47:40Z 2009-11-19T18:47:40Z <p>according to <a href="http://en.wikipedia.org/wiki/Halting%5Fproblem" rel="nofollow">Turing's Halting Problem Theorem</a>, you can't.</p> <p>That's what we mean when we say that JavaScript is a <a href="http://en.wikipedia.org/wiki/Turing%5Fcomplete" rel="nofollow">Turing complete</a> language. The only way is to execute the JavaScript and let it render the page.</p> http://stackoverflow.com/questions/883313/django-excel-xlwt/883351#883351 9 Answer by Javier for django excel xlwt Javier 2009-05-19T15:09:44Z 2009-11-19T15:26:37Z <p>neat package! i didn't know about this</p> <p>According to the doc, the <code>save(filename_or_stream)</code> method takes either a filename to save on, or a file-like stream to write on.</p> <p>And a Django response object happens to be a file-like stream! so just do <code>xls.save(response)</code>. Look the Django docs about <a href="http://docs.djangoproject.com/en/dev/howto/outputting-pdf/#complex-pdfs" rel="nofollow">generating PDFs</a> with ReportLab to see a similar situation.</p> <p><strong>edit:</strong> (adapted from ShawnMilo's comment):</p> <pre><code>def xls_to_response(xls, fname): response = HttpResponse(mimetype="application/ms-excel") response['Content-Disposition'] = 'attachment; filename=%s' % fname xls.save(response) return response </code></pre> <p>then, from your view function, just create the <code>xls</code> object and finish with </p> <pre><code>return xls_to_response(xls,'foo.xls') </code></pre> http://stackoverflow.com/questions/1756867/qt-moc-include-file-problem/1756920#1756920 1 Answer by Javier for Qt moc_ include file problem Javier 2009-11-18T15:47:07Z 2009-11-18T15:47:07Z <p>sometimes i find the moc files get stale, or more likely, don't get generated in the first place. usually fixed with a full cleanup and rebuild of the project.</p> <p>when using QtCreator, this happens mostly when at first i didn't put the <code>Q_OBJECT</code> macro, but added it later. it seems that the qmake step don't re-check if it has to pass the file through <code>moc</code>.</p> http://stackoverflow.com/questions/1717721/examples-of-php-in-c/1717955#1717955 5 Answer by Javier for Examples of PHP In C++ Javier 2009-11-11T20:47:17Z 2009-11-11T20:47:17Z <p><em>never</em> try to learn any complex subject by 'translating' from another one, no matter how well you know the old one.</p> <p>You'd only get inconsistent concepts, with the limitations of both and the advantages of none.</p> http://stackoverflow.com/questions/1709914/objective-c-and-windows/1710035#1710035 3 Answer by Javier for Objective-C and Windows Javier 2009-11-10T18:14:02Z 2009-11-10T18:14:02Z <p>The compiler is no problem, since gcc includes an Objectve-C frontend. You could simply install <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> and use it. the issue is about libraries.</p> <p>The Cocoa system is very Apple proprietary; but it's a descendant from NeXTStep. For a while (when NeXT was even deeper in debts than Apple) it was named OpenStep, and available as a shell around the NT kernel. Around that time, the <a href="http://www.gnustep.org/" rel="nofollow">GNUStep</a> project was started, and it seems it's still there.</p> <p>Note, however, that any xxStep libraries gives only a NeXT-like GUI, very different from modern macs. Also, a lot of the newer capabilities are not only new GUI; but new APIs too and these won't be found there.</p> <p>in short... it's easier to go with a mac.</p> http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-charts/1702998#1702998 3 Answer by Javier for Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts? Javier 2009-11-09T18:54:42Z 2009-11-09T18:54:42Z <p>Now you can use <a href="http://code.google.com/p/svgweb/" rel="nofollow">SVG anywhere</a></p> http://stackoverflow.com/questions/1694144/can-two-application-listen-to-the-same-port/1694271#1694271 1 Answer by Javier for Can two application listen to the same port? Javier 2009-11-07T20:19:16Z 2009-11-07T20:19:16Z <p>In principle, no.</p> <p>It's not written in stone; but it's the way all APIs are written: the app opens a port, gets a handle to it, and the OS notifies it (via that handle) when a client connection (or a packet in UDP case) arrives.</p> <p>If the OS allowed two apps to open the same port, how would it know which one to notify?</p> <p>But... there are ways around it:</p> <ol> <li>As Jed <a href="http://stackoverflow.com/questions/1694144/can-two-application-listen-to-the-same-port/1694149#1694149">noted</a>, you could write a 'master' process, which would the the only one that really has the port and notifies others, using any logic it wants to separate client requests.</li> <li>On Linux and BSD (at least) you can set up 'remapping' rules that redirect packets from the 'visible' port to different ones (where the apps are listening), according to any network related criteria (maybe network of origin, or some simple forms of load balance).</li> </ol> http://stackoverflow.com/questions/1625629/does-any-version-control-system-have-a-persistent-local-only-change-feature/1625687#1625687 0 Answer by Javier for Does any version control system have a "persistent local only change" feature? Javier 2009-10-26T16:13:46Z 2009-10-26T16:13:46Z <p>i do a similar thing on <a href="http://monotone.ca/" rel="nofollow">monotone</a>, using the <code>propagate</code> command.</p> <p>in short, i have a 'development' branch and a 'deployed' branch. in the deployed branch, the config has a few settings different (some directories and DEBUG=False). When i want to deploy, i do a <code>mtn propagate</code> from the development to the deployed branch. then at the server i do a pull and update, so the workspace gets the latest changes from its branch, which include all new developments, but respect the setting differences.</p> http://stackoverflow.com/questions/1608902/memcached-locking-and-race-conditions/1609287#1609287 0 Answer by Javier for Memcached, Locking and Race Conditions Javier 2009-10-22T18:57:18Z 2009-10-23T21:06:32Z <p>memcached operations are atomic. the server process will queue the requests and serve each one completely before going to the next, so there's no need for locking.</p> <p><strong>edit:</strong> memcached has an increment command, which <em>is</em> atomic. You just have to store the counter as a separate value in the cache.</p> http://stackoverflow.com/questions/1610411/whats-the-best-way-to-represent-a-many-to-many-relationship-in-a-database/1610429#1610429 2 Answer by Javier for what's the best way to represent a many-to-many relationship in a database? Javier 2009-10-22T22:46:12Z 2009-10-22T22:46:12Z <p>the canonical way is to have an intermediate table, with just two fields: the primary key of each of the connected tables.</p> http://stackoverflow.com/questions/1608939/how-to-scale-a-tcp-listener-on-modern-multicore-multisocket-machines/1609168#1609168 6 Answer by Javier for How to scale a TCP listener on modern multicore/multisocket machines.... Javier 2009-10-22T18:38:07Z 2009-10-22T18:38:07Z <p>the easiest suggestion is to use <a href="http://www.monkey.org/~provos/libevent/" rel="nofollow">libevent</a>, it makes it easy to write a simple non-blocking single-threaded server that would comply with your requirements.</p> <p>if the processing for each response takes some time, or if it uses some blocking API (like almost anything from a DB), then you'll need some threading.</p> <ul> <li><p>One answer is the worker threads, where you spawn a set of threads, each listening on some queue to work. it can be separate processes, instead of threads, if you like. The main difference would be the communications mechanism to tell the workers what to do.</p></li> <li><p>A different way to do is to use several threads, and give to each of them a portion of those 150K connections. each will have it's own process loop and work mostly like the single-threaded server, except for the listening port, which will be handled by a single thread. This helps spreading the load between cores, but if you use a blocking resource, it would block all the connections handled by this specific thread.</p></li> </ul> <p>libevent lets you use the second way if you're careful; but there's also an alternative: <a href="http://software.schmorp.de/pkg/libev" rel="nofollow">libev</a>. it's not as well known as libevent, but it specifically supports the multi-loop scheme.</p> http://stackoverflow.com/questions/114765/how-can-i-write-freely-available-open-source-software-and-make-a-living-from-it-a/115321#115321 2 Answer by Javier for How can I write freely available open-source software and make a living from it as well? Javier 2008-09-22T14:59:46Z 2009-10-12T22:49:33Z <p>It's very hard to get a job <em>writing</em> open source software; but it's relatively easy to work (and get paid for it) <em>using</em> open source software for further development. For in-house use the GPL doesn't impose any restrictions.</p> <p>If you depend heavily in a few projects, you'd soon find yourself making changes to the codebase. If written carefully, these could be contributed 'upstream' to the project itself, making it better for your purposes, and easier to maintain since you have less inhouse patches and there's more people enhancing your enhancements.</p> <p>Eventually, you could find yourself working more for the OSS project and less for the specific applications used. This can get tricky to explain to management; but with appropriate resource allocation is the most productive approach.</p> http://stackoverflow.com/questions/717834/advantages-of-upnp-igd-over-socks 0 Advantages of uPNP/IGD over SOCKS? Javier 2009-04-04T21:16:25Z 2009-10-10T20:00:03Z <p>I'm curious why is it more pervasive. Does it has a better API?</p> <p>I remember long ago when i first learned about NAT (i used it for sharing a dialup 14.4kbps modem), i thought that someday every home would have a router with NAT included, but it would "obviously" need also a SOCKS process to be able to open listening ports. When broadband started appearing, it was nice to see NAT as a common feature, and I supposed that SOCKS would be an extra, and slowly become more and more common... but nothing! i had to manually forward ports. then appeared that uPNP, but very few 'serious' applications support it, mostly P2P sharing, games, and some IM.</p> <p>I still haven't seen any home router to include SOCKS (apart from Linux-based firmware upgrades, of course). does anybody know why??</p> <p>edit:</p> <p>as Vartec noted, UPnP is a zeroconf and service discovery, not proxy service. now i know that what i'm referring to is IGD protocol, the NAT traversal service present in home routers, and discovered via UPnP. so, my question would more properly be "Why IGD/UPnP instead of SOCKS?"</p> http://stackoverflow.com/questions/246546/good-techniques-for-understanding-someone-elses-code/246731#246731 0 Answer by Javier for Good techniques for understanding someone else's code Javier 2008-10-29T13:11:06Z 2009-10-07T20:56:31Z <p>I did once with a very old Bridge game written in an old dialect of C. I started writing a few shell scripts to build the call tree with line count for each function (didn't have any commercial tool at the time), identified the 'leaf' functions and worked up from there until I found the "big" one.</p> <p>I printed that on continuous paper and covered a wall. (Yes, 2 mt height, 12 columns of paper, most of that was a single function.)</p> <p>Then, pencil in hand looked at it, speaking aloud and drawing on top. A couple of weeks later, it was working on a new compiler, and I went on to write a new environment surrounding it. I threw everything else, it was easier to rewrite after figuring out the call interface function and a few others assumed.</p> http://stackoverflow.com/questions/1214071/rsync-and-myisam-tables/1532982#1532982 0 Answer by Javier for rsync and MyISAM tables Javier 2009-10-07T17:13:01Z 2009-10-07T17:13:01Z <p>when doing local copies, rsync defaults to <code>--whole-file</code> for a reason: it's faster than doing the checks.</p> <ul> <li>If you want the fastest <em>local</em> copy, you already got it.</li> <li>If you want to see the rsync speedup, copy over the network. It's impressive, but won't be faster than a local full copy.</li> </ul> <p>rsync for local copies is a nice replacement to <code>cp</code> when you have a big directory where only some files change. It'll copy those file whole; but quickly skip those not modified (just checking timestamps and filesize). For a single big file, it's no better than <code>cp</code>.</p> http://stackoverflow.com/questions/1521019/should-a-php-coder-move-to-python-for-scalable-applications/1521158#1521158 2 Answer by Javier for Should a PHP coder move to Python for scalable applications? Javier 2009-10-05T16:47:01Z 2009-10-05T16:47:01Z <p>Q1: Should I learn another language?<br/> A1: Definitely. no if's, why's or but's. Always learn.</p> <p>Q2: Should I move working applications to another language?<br/> A2: Don't break what's working; but if they're not working well, then rewriting might be a good idea.</p> <p>Q3: Are Python/Ruby/Scala more 'scalable' than PHP?<br/> A3: Not really; but there seem to be fewer bad frameworks, so it might be easier to find the good ones.</p> http://stackoverflow.com/questions/1511621/where-can-i-find-a-lisp-reader-in-c/1511741#1511741 1 Answer by Javier for Where can I find a Lisp reader in C? Javier 2009-10-02T20:53:14Z 2009-10-02T20:53:14Z <p>there are lots of embeddable Scheme implementations, off the top of my head: <a href="http://www.cs.indiana.edu/scheme-repository/imp/siod.html" rel="nofollow">SIOD</a>, <a href="http://www.gnu.org/software/guile/guile.html" rel="nofollow">Guile</a>, <a href="http://www.call-with-current-continuation.org/" rel="nofollow">ChickenScheme</a>, <a href="http://groups.csail.mit.edu/mac/projects/s48/" rel="nofollow">Scheme48</a>....</p> http://stackoverflow.com/questions/1511685/what-company-platform-browser-will-be-the-first-to-have-high-quality-native-3d-su/1511724#1511724 1 Answer by Javier for What Company/Platform/Browser will be the first to have high quality native 3D support? Javier 2009-10-02T20:49:26Z 2009-10-02T20:49:26Z <p>Java applets have had OpenGL support for decades!</p> http://stackoverflow.com/questions/1506764/how-to-map-ctrla-and-ctrlshifta-differently/1506944#1506944 0 Answer by Javier for How to map Ctrl+A and Ctrl+Shift+A differently? Javier 2009-10-01T23:01:34Z 2009-10-01T23:01:34Z <p>as you've noted, you get the same keycode. so the only way to distinguish them is to check the state of the <code>Shift</code> key in your event handling function. of course, if you have more than .5sec delay between keypress and processing, you'll miss some hits</p> http://stackoverflow.com/questions/1506834/is-it-possible-to-make-urls-conditional-with-django/1506926#1506926 3 Answer by Javier for Is it possible to make URLs conditional with django? Javier 2009-10-01T22:53:53Z 2009-10-01T22:53:53Z <p>the urlconf is executed at startup time, not for each request; so you don't have the opportunity to include or not according to the URL used to acess.</p> <p>the best would be to write your own middleware, or a restricting decorator (like @login_required), it's quite easy to write your own decorator (i like them more than middlewares for most specific tasks)</p> http://stackoverflow.com/questions/1505748/can-someone-suggest-a-high-performance-shared-memory-api-that-supports-complex-da/1505850#1505850 2 Answer by Javier for Can someone suggest a high performance shared memory API that supports complex data? Javier 2009-10-01T19:06:12Z 2009-10-01T19:13:41Z <p>This is something i've wanted to write for some time, but there's always some more pressing thing to do...</p> <p>still, for most of the usecases of a shared key-data RAM store, <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a> would be the simplest answer.</p> <p>In your case, it looks like it's lower-level, so it memcached, fast as it is, might not be the best answer. I'd try <a href="http://judy.sourceforge.net/" rel="nofollow">Judy Arrays</a> on a <code>shmem</code> block. They're really fast, so even if you wrap the access with a simplistic lock, you'd still get high performance access.</p> <p>For more complex tasks, I'd search about lock-free structures (some links: <a href="http://www.erdani.org/publications/cuj-2004-10.pdf" rel="nofollow">1</a>, <a href="http://research.microsoft.com/en-us/um/people/simonpj/Papers/stm/lock-free-flops06.pdf" rel="nofollow">2</a>, <a href="http://www.audiomulch.com/~rossb/code/lockfree/liblfds/index.htm" rel="nofollow">3</a>,<a href="http://udrepper.livejournal.com/14249.html" rel="nofollow">4</a>). I even wrote <a href="http://javier.guerrag.com/2008/06/compiles-ship-it.html" rel="nofollow">one</a> some time ago, with <a href="http://javier.guerrag.com/2008/05/lock-free-concurrent-lua.html" rel="nofollow">hopes</a> of integrating it in a <a href="http://www.lua.org/" rel="nofollow">Lua</a> kernel, but it proved really hard to keep with the existing implementation. Still, it might interest you.</p> http://stackoverflow.com/questions/1505747/database-based-priority-queue/1505867#1505867 1 Answer by Javier for Database based Priority Queue Javier 2009-10-01T19:10:02Z 2009-10-01T19:10:02Z <p>Maybe you want a <a href="http://en.wikipedia.org/wiki/Message%5Fqueue" rel="nofollow">Message Queue</a>?</p> <p>There are several good ones, both proprietary and open source. For a simple API, check <a href="http://memcachedb.org/memcacheq/" rel="nofollow">memcacheq</a>, for a more complete, high-performace, take a look at <a href="http://www.rabbitmq.com/" rel="nofollow">RabbitMQ</a></p> http://stackoverflow.com/questions/1863028/string-compare-logic/1863039#1863039 Comment by Javier on String Compare "Logic" Javier 2009-12-07T22:05:01Z 2009-12-07T22:05:01Z @Pavel Minaev: are you sure? http://stackoverflow.com/questions/1861901/nfs-or-smb-on-windows-share/1861916#1861916 Comment by Javier on NFS or SMB on Windows Share Javier 2009-12-07T19:02:39Z 2009-12-07T19:02:39Z not by OS (not anymore, at least); but by mentality. also, there are very few good NFS implementations for windows. http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202742#202742 Comment by Javier on Coding in Other (Spoken) Languages Javier 2009-12-06T18:52:01Z 2009-12-06T18:52:01Z Spanish (as most languages) has a vastly larger vocabulary than English; but English makes it easy to invent new words and still be understood. That makes it very succinct and easy to use on technical issues. Also, English is much more imperative and favors simple sentences (if anything, to avoid ambiguity), maybe that makes it more 'natural' for procedural programming. Also note that I would never say that English is &quot;better&quot; than any other language; but BASIC is based in English, translating it results in an unreadable mess. http://stackoverflow.com/questions/1849240/how-can-i-programatically-convert-svg-files-containing-text-to-pdf-files-specifi Comment by Javier on How can I programatically convert SVG files containing text to PDF files (specifically on CentOS 5.3 x86_64)? Javier 2009-12-04T19:50:57Z 2009-12-04T19:50:57Z can't you compile svg2pdf on a centos machine and install in your server? http://stackoverflow.com/questions/1841542/how-to-do-something-like-google-analytics Comment by Javier on how to do something like google-analytics Javier 2009-12-03T18:11:43Z 2009-12-03T18:11:43Z AFAICT, google analytics doesn't 'send data form 1 server to another'. it's just some javascript that reports to their own server. the 'other' server isn't involved in any way. http://stackoverflow.com/questions/1835756/using-try-vs-if-in-python/1835844#1835844 Comment by Javier on Using try vs if in python Javier 2009-12-02T21:33:15Z 2009-12-02T21:33:15Z .... and that's one (of many) reasons why it's so hard to do a real optimizing JIT for Python. As the recently in beta LuaJIT 2 proves, dynamic languages <i>can</i> be really, really fast; but it heavily depends on the initial language design and the style it encourages. (on a related note, language design is why even the very best JavaScirpt JITs can't compare to LuaJIT 1, much less 2) http://stackoverflow.com/questions/1835809/problem-with-variable-scoping-in-python/1835848#1835848 Comment by Javier on Problem with variable scoping in Python Javier 2009-12-02T21:18:49Z 2009-12-02T21:18:49Z +1; but note that the last condition is already done in the '@login_required' decorator http://stackoverflow.com/questions/1833484/c-frontend-only-compiler-convert-c-to-c/1833611#1833611 Comment by Javier on C++ frontend only compiler (convert C++ to C). Javier 2009-12-02T15:31:58Z 2009-12-02T15:31:58Z AFAICT, it doesn't have a compiler. it seems to be just the IDE, with plugins to support several third party compilers. i fail to see how it could help the original question http://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826928#1826928 Comment by Javier on Is there ever a good reason to use eval() ? Javier 2009-12-01T16:23:52Z 2009-12-01T16:23:52Z corollary: don't tag anything as 'language-agnostic' unless you're comfortable with at least a dozen languages http://stackoverflow.com/questions/1821658/retrieving-untagged-objects-with-django-tagging/1821768#1821768 Comment by Javier on Retrieving untagged objects with django-tagging Javier 2009-11-30T19:14:01Z 2009-11-30T19:14:01Z use parenthesis instead square brackets to get a generator instead of a list. (mostly) same usage, far lower memory requirements. http://stackoverflow.com/questions/1805645/ideas-for-implementing-a-vfs/1805758#1805758 Comment by Javier on Ideas for implementing a VFS Javier 2009-11-27T15:16:01Z 2009-11-27T15:16:01Z in mac WebDAV is a real, mounted FS. for windows there are some third party solutions, not sure if they're free or not http://stackoverflow.com/questions/1805906/c-c-library-for-https-client-with-basic-authentication/1805917#1805917 Comment by Javier on C / C++ Library for HTTPS Client with Basic Authentication Javier 2009-11-26T22:28:34Z 2009-11-26T22:28:34Z they're all linux http://stackoverflow.com/questions/1805809/how-to-handle-mass-database-manipulation-every-second-threading/1805851#1805851 Comment by Javier on How to handle mass database manipulation every second - threading? Javier 2009-11-26T22:27:01Z 2009-11-26T22:27:01Z +1 on profile first, +1 on don't hit the DB each iteration, +1 on don't create/destroy threads on each object, +1 on not too many threads. .... now, where's the +4 button? bah, it wasn't so interesting problem to start, lets round it to +1 http://stackoverflow.com/questions/1805645/ideas-for-implementing-a-vfs/1805758#1805758 Comment by Javier on Ideas for implementing a VFS Javier 2009-11-26T22:22:59Z 2009-11-26T22:22:59Z yes, i implemented most of it in Lua a long time ago. I don't remember many specifics beyond that the only hard part of the RFCs was the locking semantics. http://stackoverflow.com/questions/1799072/c-short-circuiting-of-booleans Comment by Javier on C++ short-circuiting of booleans Javier 2009-11-25T19:02:31Z 2009-11-25T19:02:31Z note that it doesn't have anything to do with lazy evaluation. While it's true that lazy evaluating languages make this behavior trivial to implement; in C/C++ case, it's just compiled into the equivalent of a series of nested ifs.