User Javier - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T07:02:21Zhttp://stackoverflow.com/feeds/user/11649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856210/trying-to-derive-a-2d-transformation-matrix-using-only-the-images/1856265#18562651Answer by Javier for Trying to derive a 2D transformation matrix using only the images...Javier2009-12-06T19:09:38Z2009-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#18454250Answer by Javier for What does this scheme function do?Javier2009-12-04T07:34:58Z2009-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#18370230Answer by Javier for how to update a Django page without a page reload ?Javier2009-12-03T01:08:28Z2009-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#18057921Answer by Javier for HTML forms working offlineJavier2009-11-26T21:42:03Z2009-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#18057580Answer by Javier for Ideas for implementing a VFSJavier2009-11-26T21:34:57Z2009-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#18041473Answer by Javier for How to automatically download all my pics from my website not using FTP? Javier2009-11-26T14:54:58Z2009-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#179857810Answer by Javier for Concurrency: how does shared memory vs message passing handle large data structures?Javier2009-11-25T17:26:53Z2009-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#17656882Answer by Javier for What are the differences in variable scoping between Python and Scheme?Javier2009-11-19T18:54:38Z2009-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#17656480Answer by Javier for How to parse a rendered web page containing javascript.Javier2009-11-19T18:47:40Z2009-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#8833519Answer by Javier for django excel xlwtJavier2009-05-19T15:09:44Z2009-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#17569201Answer by Javier for Qt moc_ include file problemJavier2009-11-18T15:47:07Z2009-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#17179555Answer by Javier for Examples of PHP In C++Javier2009-11-11T20:47:17Z2009-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#17100353Answer by Javier for Objective-C and WindowsJavier2009-11-10T18:14:02Z2009-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#17029983Answer by Javier for Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts?Javier2009-11-09T18:54:42Z2009-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#16942711Answer by Javier for Can two application listen to the same port?Javier2009-11-07T20:19:16Z2009-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#16256870Answer by Javier for Does any version control system have a "persistent local only change" feature?Javier2009-10-26T16:13:46Z2009-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#16092870Answer by Javier for Memcached, Locking and Race ConditionsJavier2009-10-22T18:57:18Z2009-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#16104292Answer by Javier for what's the best way to represent a many-to-many relationship in a database?Javier2009-10-22T22:46:12Z2009-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#16091686Answer by Javier for How to scale a TCP listener on modern multicore/multisocket machines....Javier2009-10-22T18:38:07Z2009-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#1153212Answer by Javier for How can I write freely available open-source software and make a living from it as well?Javier2008-09-22T14:59:46Z2009-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-socks0Advantages of uPNP/IGD over SOCKS?Javier2009-04-04T21:16:25Z2009-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#2467310Answer by Javier for Good techniques for understanding someone else's codeJavier2008-10-29T13:11:06Z2009-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#15329820Answer by Javier for rsync and MyISAM tablesJavier2009-10-07T17:13:01Z2009-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#15211582Answer by Javier for Should a PHP coder move to Python for scalable applications?Javier2009-10-05T16:47:01Z2009-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#15117411Answer by Javier for Where can I find a Lisp reader in C?Javier2009-10-02T20:53:14Z2009-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#15117241Answer by Javier for What Company/Platform/Browser will be the first to have high quality native 3D support?Javier2009-10-02T20:49:26Z2009-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#15069440Answer by Javier for How to map Ctrl+A and Ctrl+Shift+A differently?Javier2009-10-01T23:01:34Z2009-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#15069263Answer by Javier for Is it possible to make URLs conditional with django?Javier2009-10-01T22:53:53Z2009-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#15058502Answer by Javier for Can someone suggest a high performance shared memory API that supports complex data?Javier2009-10-01T19:06:12Z2009-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#15058671Answer by Javier for Database based Priority QueueJavier2009-10-01T19:10:02Z2009-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#1863039Comment by Javier on String Compare "Logic"Javier2009-12-07T22:05:01Z2009-12-07T22:05:01Z@Pavel Minaev: are you sure?http://stackoverflow.com/questions/1861901/nfs-or-smb-on-windows-share/1861916#1861916Comment by Javier on NFS or SMB on Windows ShareJavier2009-12-07T19:02:39Z2009-12-07T19:02:39Znot 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#202742Comment by Javier on Coding in Other (Spoken) LanguagesJavier2009-12-06T18:52:01Z2009-12-06T18:52:01ZSpanish (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 "better" 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-specifiComment by Javier on How can I programatically convert SVG files containing text to PDF files (specifically on CentOS 5.3 x86_64)?Javier2009-12-04T19:50:57Z2009-12-04T19:50:57Zcan't you compile svg2pdf on a centos machine and install in your server?http://stackoverflow.com/questions/1841542/how-to-do-something-like-google-analyticsComment by Javier on how to do something like google-analyticsJavier2009-12-03T18:11:43Z2009-12-03T18:11:43ZAFAICT, 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#1835844Comment by Javier on Using try vs if in pythonJavier2009-12-02T21:33:15Z2009-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#1835848Comment by Javier on Problem with variable scoping in PythonJavier2009-12-02T21:18:49Z2009-12-02T21:18:49Z+1; but note that the last condition is already done in the '@login_required' decoratorhttp://stackoverflow.com/questions/1833484/c-frontend-only-compiler-convert-c-to-c/1833611#1833611Comment by Javier on C++ frontend only compiler (convert C++ to C).Javier2009-12-02T15:31:58Z2009-12-02T15:31:58ZAFAICT, 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 questionhttp://stackoverflow.com/questions/1826859/is-there-ever-a-good-reason-to-use-eval/1826928#1826928Comment by Javier on Is there ever a good reason to use eval() ?Javier2009-12-01T16:23:52Z2009-12-01T16:23:52Zcorollary: don't tag anything as 'language-agnostic' unless you're comfortable with at least a dozen languageshttp://stackoverflow.com/questions/1821658/retrieving-untagged-objects-with-django-tagging/1821768#1821768Comment by Javier on Retrieving untagged objects with django-taggingJavier2009-11-30T19:14:01Z2009-11-30T19:14:01Zuse 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#1805758Comment by Javier on Ideas for implementing a VFSJavier2009-11-27T15:16:01Z2009-11-27T15:16:01Zin mac WebDAV is a real, mounted FS. for windows there are some third party solutions, not sure if they're free or nothttp://stackoverflow.com/questions/1805906/c-c-library-for-https-client-with-basic-authentication/1805917#1805917Comment by Javier on C / C++ Library for HTTPS Client with Basic AuthenticationJavier2009-11-26T22:28:34Z2009-11-26T22:28:34Zthey're all linuxhttp://stackoverflow.com/questions/1805809/how-to-handle-mass-database-manipulation-every-second-threading/1805851#1805851Comment by Javier on How to handle mass database manipulation every second - threading?Javier2009-11-26T22:27:01Z2009-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 +1http://stackoverflow.com/questions/1805645/ideas-for-implementing-a-vfs/1805758#1805758Comment by Javier on Ideas for implementing a VFSJavier2009-11-26T22:22:59Z2009-11-26T22:22:59Zyes, 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-booleansComment by Javier on C++ short-circuiting of booleansJavier2009-11-25T19:02:31Z2009-11-25T19:02:31Znote 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.