User Tom Leys - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:27:29Zhttp://stackoverflow.com/feeds/user/11440http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1634374/optimizing-random-access-bilinear-sampling/1780970#17809701Answer by Tom Leys for Optimizing random-access bilinear samplingTom Leys2009-11-23T03:27:04Z2009-11-23T03:27:04Z<p>Interesting problem.</p>
<p>Your problem definition has basically enforced unpredictable access to in[x,y] - since any vector might be provided. Assuming the vector image tends to refer to local pixels, the very first optimisation would be to ensure that you traverse the memory in a suitable order to make the most of cache locality. This might mean scanning 32*32 blocks in the "for each pixel" loop so that in[x,y] hits the same pixels as often as possible in a short time.</p>
<p>Most likely the performance of your algorithm is going to be bound by two things</p>
<ol>
<li>How fast you can load <code>vectors[x,y]</code> and <code>in[x,y]</code> from main memory</li>
<li>How long it takes to do the multiplications and sums</li>
</ol>
<p>There are SSE instructions that can multiply several elements together at a time and then add them together (multiply and accumulate). What you should do is compute </p>
<pre><code>af = (1 - xf) * ( 1 - yf )
bf = ( xf) * ( 1 - yf )
cf = (1 - xf) * ( yf )
df = ( xf) * ( yf )
</code></pre>
<p>and then compute</p>
<pre><code>a *= af
b *= bf
c *= cf
d *= cf
return (a + b + c + d)
</code></pre>
<p>There is a good chance that both of these steps could be accomplished with a surprisingly small number of SSE instructions (depending on your pixel representation).</p>
<p>I think that caching intermediate values is very unlikely to be useful - it seems extremely unlikely that >1% of the vector requests will point to exactly the same place, and caching stuff will cost you much more in memory bandwidth than it will save.</p>
<p>If you use the prefetch instructions on your cpu to prefetch <code>in[vectors[x+1, y]]</code> as you process <code>vectors[x,y]</code> you might improve memory performance, there is no way the CPU will be able to predict your random walk around memory otherwise.</p>
<p>The final way to improve the performance of your algorithm is to handle chunks of input pixels at once, i.e <code>x[0..4], x[5..8]</code> - this lets you unroll the inner maths loops. However, you are so likely to be memory bound that this won't help.</p>
http://stackoverflow.com/questions/1752140/what-is-faster-on-division-doubles-floats-uint32-uint64-in-c-c/1752396#17523961Answer by Tom Leys for What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/CTom Leys2009-11-17T22:41:50Z2009-11-17T22:41:50Z<p>As Stephen mentioned, use the <a href="http://www.intel.com/Assets/PDF/manual/248966.pdf" rel="nofollow">optimisation manual</a> - but you should also be considering the use of SSE instructions. These can do 4 or 8 divisions / multiplications in a single instruction.</p>
<p>Also, it is fairly common for a division to take a single clock cycle to process. The result may not be available for several clock cycles (called latency), however the next division can begin during this time (overlapping with the first) as long as it does not require the result from the first. This is due to pipe-lining in the CPU, in the same way as you can wash more clothes while the previous load is still drying.</p>
<p>Multiplying to divide is a common trick, and should be used wherever your divisor changes infrequently.</p>
<p>There is a very good chance that you will spend time and effort making the maths fast only to discover that it is the speed of memory access (as you navigate the input and write the output) that limits your final implimentation.</p>
http://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing/1677274#16772741Answer by Tom Leys for algorithm for list identification and parsingTom Leys2009-11-04T22:58:57Z2009-11-05T21:12:42Z<p>Rather than focusing on the code, how about the method. Building a little on what swillden said...</p>
<p>If your lists are consumed by human users, you could ask them to correct you when you make a mistake (this correction is visible either to the person entering the text or to a later user viewing the text). If a given input looks a lot like a list but not enough to be sure, you show them the list and the raw input and ask them to choose.</p>
<p>To automatically categorise inputs as lists or as text you could create several metrics to base your decision on :</p>
<ul>
<li>Given the separators (i.e <code>[' ', '\t', ',', '.', 'and']</code>) how many does this phrase use? expect one or two. Which ones?</li>
<li>Is the input composed of fragments (use some sort of grammar system) - fragments tend to indicate lists.</li>
<li>Does this input field (or context in your input) tend to have list items</li>
<li>The words in the list itself (some words might turn out to always mean a sentence or a list in your domain)</li>
</ul>
<p>You then pass this information into a Bayesian filter and train it using your user's suggestions. Most of the items I mention would boil into special "keywords" that you tag an item with before you pass it into the filter. If the filter has a clear answer either way, treat it as a list or string. If the filter is uncertain, ask the user and use their answer to train the filter.</p>
<p><strong>Edit</strong></p>
<p>You could always train the system manually (i.e without exposing your system to the users) by first classifying lists using your existing scripts and then checking them by hand. Take a list of 500 inputs, run a filter looking for , or other easy lists and classify them as lists. Train the Bayesian filter on those (with everything else non-list) and then check the output by hand for all 500 for further training. </p>
<p>Each day someone could receive an email with all the edge cases for that day and could clink links in the email to correct the system if necessary.</p>
<p>As a side issue (relating to OP comment), in general Bayesian filters are much easier to implement, debug, test, analyse and scale than Neural networks. </p>
http://stackoverflow.com/questions/1642392/how-to-defer-a-django-db-operation-from-within-twisted/1677455#16774550Answer by Tom Leys for How to defer a Django DB operation from within Twisted?Tom Leys2009-11-04T23:42:42Z2009-11-04T23:42:42Z<p>I have been successful using the method you described as your current method. You'll find by reading the docs that the twisted DB api uses threads under the hood because most SQL libraries have a blocking API.</p>
<p>I have a twisted server that saves data from power monitors in the field, and it does it by starting up a subthread every now and again and calling my Django save code. You can read more about <a href="http://blog.gridspy.co.nz/2009/10/realtime-data-from-sensors-to-browsers.html" rel="nofollow">my live data collection pipeline</a> (that's a blog link).</p>
<p>Are you saying that you are starting up a sub thread and that is <em>still</em> blocking?</p>
http://stackoverflow.com/questions/1617532/non-repeatable-django-problem-error-was-module-object-has-no-attribute-valid/1619188#16191880Answer by Tom Leys for Non-repeatable django problem: Error was: 'module' object has no attribute 'validators' Tom Leys2009-10-24T21:28:30Z2009-10-25T21:00:00Z<p>This is very difficult to debug without a stack trace from your application. </p>
<p>What the error message means is that one of your modules expects another module to contain a variable called "validators" </p>
<p>My guess would be that you are assigning to a global variable of that name in some method and then expecting it to be present in another method. Try to find the keyword validators in your code and see where it is used. </p>
<p><em>edit:</em>
Based on the original poster's stacktrace, it looks like the view that handles a URL is not being imported. It looks like views use URL strings using names, not module functions. </p>
<p>Try changing from this pattern of declaring URLS</p>
<pre><code>urlpatterns = patterns('',
(r'^admin/(.*)', 'admin.site.root'),
</code></pre>
<p>to this pattern</p>
<pre><code>import admin.site
urlpatterns = patterns('',
(r'^admin/(.*)', admin.site.root), #note string is gone here
</code></pre>
http://stackoverflow.com/questions/1546745/manually-giving-the-twisted-web-network-stack-a-packet-to-process/1619223#16192230Answer by Tom Leys for Manually giving the twisted (web) network stack a packet to process?Tom Leys2009-10-24T21:42:16Z2009-10-24T21:42:16Z<p>What is the use-case?</p>
<p>Perhaps you want to create your own <a href="http://twistedmatrix.com/projects/core/documentation/howto/udp.html" rel="nofollow">Datagram Protocol</a></p>
<blockquote>
<p>At the base, the place where you
actually implement the protocol
parsing and handling, is the
DatagramProtocol class. This class
will usually be decended from twisted.internet.protocol.DatagramProtocol.
Most protocol handlers inherit either
from this class or from one of its
convenience children. The
DatagramProtocol class receives
datagrams, and can send them out over
the network. Received datagrams
include the address they were sent
from, and when sending datagrams the
address to send to must be specified.</p>
</blockquote>
<p>If you want to see wire-level transmissions rather than inject them, install and run <a href="http://www.wireshark.org/" rel="nofollow">WireShark, the fantastic, free packet sniffer</a>.</p>
http://stackoverflow.com/questions/1571224/activemq-use-django-auth-with-stomp3ActiveMQ : Use Django Auth with StompTom Leys2009-10-15T09:22:49Z2009-10-24T09:27:18Z
<p>I am working on <a href="http://blog.gridspy.co.nz/2009/09/introducing-the-nexus.html" rel="nofollow">power monitoring</a> and want to send live power data to authorised users only. Some users have opted to install power sensors in their houses, others are viewing those sensors. Each sensor sends samples to a <a href="http://twistedmatrix.com/" rel="nofollow">Twisted</a> backend - the goal is to have this backend forward the data to Javascript running in the browser.</p>
<p>My current solution to forwarding the data is an <a href="http://orbited.org/" rel="nofollow">Orbited</a> server and an instance of <a href="http://www.morbidq.com/" rel="nofollow">MorbidQ</a> (MorbidQ is a Stomp server). Each building in my system (<a href="http://your.gridspy.co.nz/powertech/" rel="nofollow">example here</a>) has its own channel for updates. The twisted backend broadcasts the data through the MorbidQ channel to anyone watching, but anyone can watch. There is an entry on my blog about <a href="http://blog.gridspy.co.nz/2009/10/realtime-data-from-sensors-to-browsers.html" rel="nofollow">the data flow from sensor to site</a></p>
<p><strong>For many buildings, I only want a couple of users to be able to see live data in a given building. I would like to use Django Auth if possible, or some sort of workaround if not.</strong></p>
<p>What is the easiest way to secure these channels per user?
Can I use Django Auth?
Should I use RabbitMQ or ActiveMQ instead of MorbidQ?
What measures can I take to keep this solution secure?</p>
<p>For coding I am most confident in C++ and Python.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1611111/what-correction-alogrithm-for-spelling-mistakes-does-google-use/1611123#16111232Answer by Tom Leys for what correction alogrithm for spelling mistakes does google use Tom Leys2009-10-23T02:28:35Z2009-10-23T02:28:35Z<p>From the <a href="http://stackoverflow.com/questions/307291/how-does-the-google-did-you-mean-algorithm-work/307344#307344">other answer</a></p>
<p>Basically and according to Douglas Merrill former CTO of Google it is like this:</p>
<ol>
<li>You write a ( misspelled ) word in google</li>
<li>You don't find what you wanted ( don't click on any results )</li>
<li>You realize you misspelled the word so you rewrite the word in the search box.</li>
<li>You find what you want ( you click in the first links ) </li>
</ol>
<p>This pattern multiplied millions of times, shows what are the most common misspells and what are the most "common" corrections.</p>
<p>This way Google can almost instantaneously, offer spell correction in every language.</p>
<p>Also this means if overnight everyone start to spell night as "nigth" google would suggest that word instead. </p>
http://stackoverflow.com/questions/1609241/filter-a-user-list-using-a-userprofile-field-in-django-admin/1609859#16098590Answer by Tom Leys for Filter a User list using a UserProfile field in Django AdminTom Leys2009-10-22T20:48:03Z2009-10-22T20:48:03Z<p>It sounds to me like the quickest and easiest option is to add a new admin view to your application, specifically for your custom user model. See the <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#modeladmin-options" rel="nofollow">Django admin docs</a> for details, though it sounds like you know how to use Admin already.</p>
<p>Once the admin page is specific to your model, all your custom fields will no longer be foreign keys. This would make filtering easy.</p>
http://stackoverflow.com/questions/1023181/rs232-serial-snoop-tools-for-protocol-development-debugging5RS232 serial snoop tools for protocol development / debuggingTom Leys2009-06-21T04:09:40Z2009-10-22T01:30:06Z
<p>I develop a wide range of relatively simple firmware devices. Every one of these ends up talking to the PC (or another device) via the RS232 port in one way or another, so I spend a lot of time implementing and debugging their communication protocols.</p>
<p>My most common use case is to snoop on a program running on my PC that is communicating with a device via the serial port (RS232). I want to see what is sent and when, mangle / delay incoming and outgoing data and perhaps inject data (especially in response to incoming data based on rules).</p>
<p>Free tools</p>
<ol>
<li><a href="http://www.serial-port-monitor.com/" rel="nofollow">Free Serial Port Monitor</a> - With a name like that, how didn't I find it? Thanks eledu81</li>
</ol>
<p>Good commercial tools</p>
<ol>
<li><a href="http://www.fte.com/products/Serialtest-01.asp" rel="nofollow">SerialTest</a> - Demo version does no snooping at all, have to pay to get a real trial</li>
<li><a href="http://www.commfront.com/RS232%5FProtocol%5FAnalyzer%5FMonitor/RS232-Analyzer.htm" rel="nofollow">RS232 analyser</a> - Demo version can't monitor, have to pay to get a real trial. Doesn't seem to do software monitoring, only using hardware can it snoop. Has a useful mode where it can act like a simple rs232 device with programmable auto-responses.</li>
<li><a href="http://www.serialsniffer.com/en/sites/serialsniffer%5Fmodul%5Fb.php" rel="nofollow">SerialSniffer</a> - again, commercial. Demo doesn't seem to include functionality</li>
<li><a href="http://www.docklight.de/info%5Fen.htm" rel="nofollow">Docklight</a> Has potential, demo looks useful, hardware snooping only and simulation like RS232 analyser</li>
</ol>
<p>Related</p>
<ol>
<li><a href="http://com0com.sourceforge.net/" rel="nofollow">com0com</a> - Create virtual serial ports on your PC and then connect them to each other to connect one application to another without hardware</li>
</ol>
<p>What I want right now is basically <a href="http://www.wireshark.org/" rel="nofollow">WireShark</a> for serial. I love the way it snoops and decodes standard network protocols. I just wish it could snoop serial ports (perhaps there is a good plugin?)</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1603964/how-can-i-work-out-the-class-hierarchy-given-an-object-instance-in-python/1604131#16041310Answer by Tom Leys for How can I work out the class hierarchy given an object instance in Python?Tom Leys2009-10-21T23:00:15Z2009-10-21T23:21:29Z<p>If instead of discovery of the baseclass (i.e reflection) you know the desired class in advance you could use the following <a href="http://python.org/doc/2.5/lib/built-in-funcs.html" rel="nofollow">built in functions</a></p>
<p>eg:</p>
<pre><code># With classes from original Question defined
>>> instance = A()
>>> B_instance = B()
>>> isinstance(instance, A)
True
>>> isinstance(instance, B)
False
>>> isinstance(B_instance, A) # Note it returns true if instance is a subclass
True
>>> isinstance(B_instance, B)
True
>>> issubclass(B, A)
True
</code></pre>
<blockquote>
<p><strong>isinstance( object, classinfo)</strong>
Return true if the object argument is an instance of the classinfo
argument, or of a (direct or indirect)
subclass thereof. Also return true if
classinfo is a type object and object
is an object of that type. If object
is not a class instance or an object
of the given type, the function always
returns false. If classinfo is neither
a class object nor a type object, it
may be a tuple of class or type
objects, or may recursively contain
other such tuples (other sequence
types are not accepted). If classinfo
is not a class, type, or tuple of
classes, types, and such tuples, a
TypeError exception is raised. Changed
in version 2.2: Support for a tuple of
type information was added. </p>
<p><strong>issubclass( class, classinfo)</strong>
Return true if class is a subclass (direct or indirect) of classinfo. A
class is considered a subclass of
itself. classinfo may be a tuple of
class objects, in which case every
entry in classinfo will be checked. In
any other case, a TypeError exception
is raised. Changed in version 2.3:
Support for a tuple of type
information was added.</p>
</blockquote>
http://stackoverflow.com/questions/1527641/how-to-use-jquery-and-django-ajax-httpresponse/1527666#15276662Answer by Tom Leys for How to use JQuery and Django (ajax + HttpResponse)?Tom Leys2009-10-06T19:41:04Z2009-10-21T23:19:24Z<p>The typical workflow is to have the server return a JSON object as text, and then <a href="http://stackoverflow.com/questions/945015/alternatives-to-javascript-eval-for-parsing-json">interpret that object in the javascript</a>. In your case you could return the text {"httpresponse":1} from the server, or use the python json libary to generate that for you. </p>
<p>JQuery has a nice json-reader (I just read the docs, so there might be mistakes in my examples)</p>
<p>Javascript:</p>
<pre><code>$.getJSON("/abc/?x="+3,
function(data){
if (data["HTTPRESPONSE"] == 1)
{
alert("success")
}
});
</code></pre>
<p>Django</p>
<pre><code>#you might need to easy_install this
import json
def your_view(request):
# You can dump a lot of structured data into a json object, such as
# lists and touples
json_data = json.dumps({"HTTPRESPONSE":1})
# json data is just a JSON string now.
return HttpResponse(json_data, mimetype="application/json")
</code></pre>
<p>An alternative View suggested by Issy (cute because it follows the DRY principle)</p>
<pre><code>def updates_after_t(request, id):
response = HttpResponse()
response['Content-Type'] = "text/javascript"
response.write(serializers.serialize("json",
TSearch.objects.filter(pk__gt=id)))
return response
</code></pre>
http://stackoverflow.com/questions/1603696/why-is-this-simple-python-class-not-working/1603733#16037337Answer by Tom Leys for Why is this simple python class not working?Tom Leys2009-10-21T21:19:11Z2009-10-21T21:25:17Z<p>In Python, when you are writing methods inside an object, you need to prefix all references to variables belonging to that object with self. - like so:</p>
<pre><code>class getlist:
def newlist(self,*number):
self.lst=[]
self.lst += number #I changed this to add all args to the list
def printlist(self):
return self.lst
</code></pre>
<p>The code you had before was creating and modifying a local variable called lst, so it would appear to "disappear" between calls.</p>
<p>Also, it is usual to make a constructor, which has the special name <code>__init__</code> : </p>
<pre><code>class getlist:
#Init constructor
def __init__(self,*number):
self.lst=[]
self.lst += number #I changed this to add all args to the list
def printlist(self):
return self.lst
</code></pre>
<p>Finally, use like so</p>
<pre><code>>>> newlist=getlist(1,2,3, [4,5])
>>> newlist.printlist()
[1, 2, 3, [4,5]]
</code></pre>
http://stackoverflow.com/questions/1597764/is-there-a-better-pythonic-way-to-do-this/1598266#15982663Answer by Tom Leys for Is there a better, pythonic way to do this?Tom Leys2009-10-21T01:21:36Z2009-10-21T01:21:36Z<p>There are some great answers in here.</p>
<p>One trick I particularly like is to make my code easier to reuse in future like so </p>
<pre><code>import csv
def parse_my_file(file_name):
# some existing code goes here
return aDict
if __name__ == "__main__":
#this gets executed if this .py file is run directly, rather than imported
aDict = parse_my_file("some.csv")
for key, value in adDict.items():
print (key, ',' , len(value))
</code></pre>
<p>Now you can import your csv parser from another module and get programmatic access to aDict. </p>
http://stackoverflow.com/questions/1596440/which-python-client-library-should-i-use-for-couchdb/1597325#15973250Answer by Tom Leys for Which Python client library should I use for CouchdB?Tom Leys2009-10-20T21:10:03Z2009-10-20T21:10:03Z<p>Considering the task you are trying to solve (distributed task processing) you should consider using one of the many tools designed for message passing rather than using a database. See for instance <a href="http://stackoverflow.com/questions/1516960/anatomy-of-a-distributed-system-in-php">this SO question on running multiple tasks over many machines</a>. </p>
<p>If you really want a simple casual message passing system, I recommend you shift your focus to <a href="http://www.morbidq.com/trac/wiki/RestQ" rel="nofollow">MorbidQ</a>. As you get more serious, use <a href="http://www.rabbitmq.com/" rel="nofollow">RabbitMQ</a> or <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a>. This way you reduce the latency in your system and avoid having many clients polling a database (and thus hammering that computer). </p>
<p>I've found that <a href="http://blog.gridspy.co.nz/2009/09/database-meet-realtime-data-logging.html" rel="nofollow">avoiding databases is a good idea</a> (That's my blog) - and I have a <a href="http://your.gridspy.co.nz/powertech" rel="nofollow">end-to-end live data system running using MorbidQ</a> here</p>
http://stackoverflow.com/questions/1594604/how-should-i-optimize-this-filesystem-i-o-bound-program/1597281#15972811Answer by Tom Leys for How should I optimize this filesystem I/O bound program?Tom Leys2009-10-20T21:01:01Z2009-10-20T21:01:01Z<p>Isn't it possible to collect a few thousand rows in ram, then go directly to the database server and execute them? </p>
<p>This would remove the save to and load from the disk that step 4 entails.</p>
<p>If the database server is transactional, this is also a safe way to do it - just have the database begin before your first row and commit after the last.</p>
http://stackoverflow.com/questions/1586787/what-is-paging-effect-in-c/1586895#15868951Answer by Tom Leys for What is paging effect in C++?Tom Leys2009-10-19T04:03:09Z2009-10-19T04:03:09Z<p>The page you linked to points out that optimisation removes the performance difference. This means it is most likely caused by extra function calls in vector - you can safely ignore these because the optimiser is smart enough to inline them.</p>
<p>The poster is using the name "paging effect" but what they are actually referring to in the vector case is the cost of memory allocation. Also, by trying to write / read to that memory, they are pulling a segment at the end of the arrays into the cache, perhaps improving future performance in that memory area.</p>
http://stackoverflow.com/questions/1516960/anatomy-of-a-distributed-system-in-php/1586796#15867960Answer by Tom Leys for Anatomy of a Distributed System in PHPTom Leys2009-10-19T03:06:18Z2009-10-19T03:06:18Z<p>Rather than re-inventing the queuing wheel via SQL, you could use a messaging system like <a href="http://www.rabbitmq.com/" rel="nofollow">RabbitMQ</a> or <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> as the core of your system. Each of these systems provides the AMQP protocol and has hard-disk backed queues. On the server you have one application that pushes new jobs into a "worker" queue according to your schedule and another that writes results from a "result" queue into the database (or acts on it some other way).</p>
<p>All the workers connect to RabbitMQ or ActiveMQ. They pop the work off the work queue, do the job and put the response into another queue. After they have done that, they ACK the original job request to say "its done". If a worker drops its connection, the job will be restored to the queue so another worker can do it.</p>
<p>Everything other than the queues (job descriptions, client details, completed work) can be stored in the database. But anything realtime should be put somewhere else. In my own work I'm streaming live power usage data and having many people hitting the database to poll it is a bad idea. I've <a href="http://blog.gridspy.co.nz/2009/09/database-meet-realtime-data-logging.html" rel="nofollow">written about live data in my system</a>.</p>
http://stackoverflow.com/questions/1540360/standard-way-of-using-a-single-port-for-multiple-sockets/1586309#15863091Answer by Tom Leys for Standard way of using a single port for multiple sockets?Tom Leys2009-10-18T23:21:10Z2009-10-19T01:01:07Z<p>It sounds like you have many clients interacting with your servers via HTTP. The standard solution is to throw a reverse proxy between the client and your servers - that proxy then forwards connections to the appropriate server depending on the URL. The reverse proxy can run on any one of your existing servers or on its own server to lighten the load. </p>
<p>If your data is cachable, the reverse proxy can do caching on your results too.</p>
<p>There are many reverse proxies available and you will want to choose one based on what sort of workload you have. Do you need it to be highly configurable? Is the data public or based on logins? How long does each connection last / how many connections to you want to hold open at once? </p>
<p><a href="http://www.squid-cache.org/" rel="nofollow">Squid</a>, <a href="http://varnish.projects.linpro.no/" rel="nofollow">Varnish</a>, <a href="http://haproxy.1wt.eu/" rel="nofollow">HAProxy</a> are good reverse proxies and even Apache could do this for you.</p>
<p>I plan to use HAProxy for <a href="http://blog.gridspy.co.nz/" rel="nofollow">Gridspy, my project</a> as I have many ongoing connections with my clients and want to place an orbited server in the same URL path as my django server. See <a href="http://www.olivepeak.com/blog/posts/read/free-your-port-80-with-haproxy" rel="nofollow">This tutorial</a> for more information on how to forward many connections on port 80 from one server to many. This tutorial is focused on Comet, but your problem is even simpler than that.</p>
<p><strong>If you are considering an ongoing tcp/ip connection from the browser</strong> back to your servers, seriously consider <a href="http://orbited.org/" rel="nofollow">Orbited</a>. See this tutorial about <a href="http://cometdaily.com/2008/10/10/scalable-real-time-web-architecture-part-2-a-live-graph-with-orbited-morbidq-and-jsio/" rel="nofollow">graphs via orbited and morbidQ</a>. Orbited will also punch through firewalls and proxies better than most custom solutions will, as it looks like normal HTTP traffic.</p>
http://stackoverflow.com/questions/288623/level-of-indirection-solves-every-problem/288986#288986-1Answer by Tom Leys for Level of Indirection solves every ProblemTom Leys2008-11-14T01:38:56Z2009-10-16T01:51:13Z<p>It basically means that you should break your problem into smaller problems until the problems are easy to solve. </p>
<p>You break the problem into several layers :</p>
<ul>
<li>routines that solve the problem </li>
<li>They call : routines that understand the problem space </li>
<li>They call : routines that do small steps (load a file, twiddle some bits, write an output).</li>
</ul>
<p>The routines at the top (the problem solving ones) are indirected / abstracted from the actual means of solving the problem, making them more flexible to solve the same problem a slightly different way later.</p>
http://stackoverflow.com/questions/1575966/python-twisted-and-unit-tests/1576026#15760260Answer by Tom Leys for Python - Twisted and Unit TestsTom Leys2009-10-16T01:30:33Z2009-10-16T01:37:00Z<p>There is a <a href="http://twistedmatrix.com/trac/ticket/2066" rel="nofollow">known bug</a> with Twisted (that probably won't get fixed) where re-starting the reactor causes a crash.</p>
<p>This is why your unit tests don't work. </p>
<p>As well as using <a href="http://twistedmatrix.com/projects/core/documentation/howto/testing.html" rel="nofollow">Trial</a> you might want to consider seperate testing systems that talk to your HTTP server like a client will.</p>
<ul>
<li><a href="http://code.google.com/p/webdriver/" rel="nofollow">Webdriver</a> - an API to drive a browser session around your site.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1385" rel="nofollow">TestGen4Web</a> - Firefox plugin that records interactions with site and can replay.</li>
</ul>
http://stackoverflow.com/questions/1575937/using-a-pure-c-compiler-versus-visual-c/1575951#157595112Answer by Tom Leys for Using a pure C++ compiler versus Visual C++Tom Leys2009-10-16T00:59:56Z2009-10-16T01:27:29Z<p>The Visual C++ compiler will compile C++ code into standalone EXEs that have nothing to do with the .NET framework.</p>
<p>The only way to get the .NET baggage thrown in is to compile the C++ as "managed".</p>
<p>If you create a new project (File|New|New Project) Then choose "Win32" from the Visual C++ submenu in the project types and choose "Win32 Console Application" Visual studio will create a simple project with a couple of source files that will compile to a little executable.</p>
<p>Most of the time, Visual C++ is very similar to other compilers. Avoid #pragmas, microsoft libraries (MFC, ATL) and you should be fine.</p>
<p>Edit (thanks Cheeso) - <a href="http://msdn.microsoft.com/en-us/library/x84h5b78.aspx" rel="nofollow">Documentation of where Visual C++ diverges from standard</a>.</p>
<p>In general I would advise using boost libraries for threads and networking because they work on many platforms (i.e linux). Also if your code can compile in GCC and Visual Studio then you are doing a good job keeping it portable.</p>
http://stackoverflow.com/questions/1575765/delete-char-from-binary-file/1575778#15757781Answer by Tom Leys for delete char from binary file Tom Leys2009-10-16T00:04:42Z2009-10-16T00:04:42Z<p>You probably need to read and write the entire file, or at least all the bytes after the point from which you delete the character.</p>
<p>It is sometimes better to come up with a way to avoid deleting the character - i.e empty spaces in the file.</p>
http://stackoverflow.com/questions/1575643/indexes-and-speeding-up-derived-queries/1575724#15757240Answer by Tom Leys for indexes and speeding up 'derived' queriesTom Leys2009-10-15T23:47:25Z2009-10-15T23:47:25Z<p>The only way to clean up that mammoth SQL statement is to go back to the drawing board and carefully work though your database design and requirements. As soon as you start joining 6 tables and using an inner select you should expect incredible execution times.</p>
<p>As a start, ensure that all your id fields are indexed, but better to ensure that your design is valid. I don't know where to START looking at your SQL - even after I reformatted it for you. </p>
<p>Note that 'using indexes' means you need to issue the correct instructions when you CREATE or ALTER the tables you are using. See for instance <a href="http://dev.mysql.com/doc/refman/5.0/en/create-index.html" rel="nofollow">MySql 5.0 create indexes</a></p>
http://stackoverflow.com/questions/1575668/sql-left-join-query-runs-very-slow/1575685#15756853Answer by Tom Leys for SQL left join query runs VERY slowTom Leys2009-10-15T23:34:39Z2009-10-15T23:34:39Z<p>See: <a href="http://www.titov.net/2005/09/21/do-not-use-order-by-rand-or-how-to-get-random-rows-from-table/" rel="nofollow">Do not order by rand</a></p>
<p>He suggests (replace quotes in this example with your query)</p>
<pre><code>SELECT COUNT(*) AS cnt FROM quotes
-- generate random number between 0 and cnt-1 in your programming language and run
-- the query:
SELECT quote FROM quotes LIMIT $generated_number, 1
</code></pre>
<p>Of course you could probably make the first statement a subselect inside the second.</p>
http://stackoverflow.com/questions/896371/use-a-user-macro-in-vcproj-relativepath1Use a "User Macro" in .vcproj RelativePath Tom Leys2009-05-22T04:39:15Z2009-10-15T21:15:29Z
<p>Inside <a href="http://msdn.microsoft.com/en-us/library/2208a1f2.aspx" rel="nofollow">.vcproj files</a> There is a list of all source files in your project.</p>
<p>How can we use a macro to specify the path to a source file?
If we do this:</p>
<pre><code><File
RelativePath="$(Lib3rdParty)\Qt\qtwinmigrate-2.5-commercial\src\qmfcapp.cpp">
</File>
</code></pre>
<p>The compiler cannot find the folder:</p>
<pre><code>qmfcapp.cpp
c1xx : fatal error C1083: Cannot open source file: '.\$(lib3rdparty)\qt\qtwinmigrate- 2.5-commercial\src\qmfcapp.cpp': No such file or directory
</code></pre>
<p>As you can see, our project compiles in several source files from QT. QT lives inside a folder of external libraries, and we don't want hardcode the path from our project to that folder (we have a very large solution)</p>
http://stackoverflow.com/questions/1569682/how-to-create-a-custom-404-page-for-my-django-apache/1569940#15699401Answer by Tom Leys for How to create a custom 404 page for my Django/Apache?Tom Leys2009-10-15T02:00:41Z2009-10-15T02:00:41Z<p>In general the Django documentation is really great. Have a look at the <a href="http://www.djangobook.com/en/2.0/" rel="nofollow">Django Book</a> for a great intoduction to Django. They cover the 404 page in <a href="http://www.djangobook.com/en/2.0/chapter03/" rel="nofollow">chapter 3</a></p>
http://stackoverflow.com/questions/1569829/open-source-c-game-engine-math-libraries/1569929#15699291Answer by Tom Leys for Open Source C++ game engine math libraries?Tom Leys2009-10-15T01:57:02Z2009-10-15T01:57:02Z<p>If you want an entire 3D engine (which of course would contain the 3d maths you need) see <a href="http://www.ogre3d.org/" rel="nofollow">Ogre 3D</a> (LGPL)</p>
http://stackoverflow.com/questions/1568818/caching-and-avoiding-cached-content/1569023#15690232Answer by Tom Leys for caching and avoiding cached contentTom Leys2009-10-14T21:09:57Z2009-10-15T01:54:12Z<p>What you should be doing is directly setting the values into memcached as you save them to the database. This way you can have all requests going via the cache, and don't need this workaround.</p>
<p>See <a href="http://code.google.com/p/memcached/wiki/FAQ#Update%5Fmemcache%5Fas%5Fyour%5Fdata%5Fupdates" rel="nofollow">Update memcache as your data updates</a> in the memcached FAQ</p>
<p><strong>UPDATE</strong></p>
<p>This does not mean you have to store the raw variables into the memcache. If you are storing the rendered page, by all means render it again and store that result into memcache. If that is "too hard" you could just delete the old data from memcached in the same page that changes the DB and then wait for the next request to find it missing in the cache.</p>
http://stackoverflow.com/questions/1497136/how-to-increase-php-over-html-speed/1569061#15690610Answer by Tom Leys for How to increase PHP over HTML speed?Tom Leys2009-10-14T21:16:58Z2009-10-14T21:16:58Z<p>You might also want to consider putting a HTTP cache in front of your PHP server. This will reduce the load on your web server and will handle the re-sending of previously rendered pages for you.</p>
<p>See <a href="http://varnish.projects.linpro.no/" rel="nofollow">Varnish</a> for example. Another option is <a href="http://www.squid-cache.org/" rel="nofollow">Squid</a></p>
<p>Obviously these are not options if you are on shared hosting - in that case rendering to .html files is a great solution.</p>
http://stackoverflow.com/questions/1149929/how-to-add-two-numbers-without-using-or-or-another-arithmetic-operator/1150996#1150996Comment by Tom Leys on How to add two numbers without using ++ or + or another arithmetic operator.Tom Leys2009-11-24T19:36:54Z2009-11-24T19:36:54ZTrust me, it works. Or don't trust me - download and install python (<a href="http://www.python.org/download/" rel="nofollow">python.org/download</a>) and copy paste the bottom example (starting at def add) into the console. http://stackoverflow.com/questions/1752188/can-scrum-work-with-mediocre-developers/1752238#1752238Comment by Tom Leys on Can Scrum work with mediocre developers?Tom Leys2009-11-17T22:45:46Z2009-11-17T22:45:46Z+1 bravo. Most senior developers will become frustrated if they continue to work at a company that does not allow high level decision making.http://stackoverflow.com/questions/1642392/how-to-defer-a-django-db-operation-from-within-twisted/1677455#1677455Comment by Tom Leys on How to defer a Django DB operation from within Twisted?Tom Leys2009-11-11T22:52:30Z2009-11-11T22:52:30ZYes, I hate it too for that very reason. At least you can ensure that there are a limited number of database threads started (i.e manage 1000 client connections and cleverly pool their database access and threads). Database usage is only a small part of my long term connections managed by twisted, so its okay to spin up a thread on demand for me.http://stackoverflow.com/questions/1618793/how-do-i-continuously-send-and-receive-with-wireless-serial-port-in-8051Comment by Tom Leys on How do I continuously send and receive with wireless serial-port in 8051?Tom Leys2009-11-09T03:47:53Z2009-11-09T03:47:53ZA quick and dirty hack that will make your code more reliable is to limit the amount of time you will wait for RI to be set to true. Set a variable to 65535 and decrement. If it reaches 0 before you get a byte, give up and try sending again. If you really need an interrupt based version of your code, I can knock on up for you - in general these are far more reliable.http://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing/1674272#1674272Comment by Tom Leys on algorithm for list identification and parsingTom Leys2009-11-05T21:14:55Z2009-11-05T21:14:55ZMy answer (using a bayesian filter) revolves around asking a computer to automate this human-process analysishttp://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing/1677274#1677274Comment by Tom Leys on algorithm for list identification and parsingTom Leys2009-11-05T21:13:42Z2009-11-05T21:13:42ZThanks, you don't have to ask all users to classify the input, just your admins. Also as the system gets more trained it will become pretty accurate by itself - minimising human training. Note my changes to the post for more.http://stackoverflow.com/questions/1538617/http-download-very-big-file/1657324#1657324Comment by Tom Leys on HTTP Download very Big FileTom Leys2009-11-05T00:09:01Z2009-11-05T00:09:01Z+1 Wow - a fantastic and through answer!http://stackoverflow.com/questions/664744/what-is-the-direction-of-stack-growth-in-most-modern-systems/664779#664779Comment by Tom Leys on What is the direction of stack growth in most modern systems?Tom Leys2009-11-05T00:07:01Z2009-11-05T00:07:01Zthe 8051 micro-controller family grows up in the 128 byte "IDATA" portion of memory, and most local variables are compiled to use static locations in the larger external memory. http://stackoverflow.com/questions/1677415/does-stack-grow-upward-or-downwardComment by Tom Leys on Does stack grow upward or downward?Tom Leys2009-11-05T00:03:53Z2009-11-05T00:03:53ZThe ordering is arbitrary. The gap is probably to store an intermediate result such as &q or &s - look at the disassembly and see for yourself.http://stackoverflow.com/questions/1673729/algorithm-for-list-identification-and-parsing/1674272#1674272Comment by Tom Leys on algorithm for list identification and parsingTom Leys2009-11-04T22:50:56Z2009-11-04T22:50:56Z+1 Until you can express your rules in plain English, it will be impossible to express them in code.http://stackoverflow.com/questions/1393849/need-advice-how-to-represent-a-certain-datastructure-in-python/1393912#1393912Comment by Tom Leys on Need advice how to represent a certain datastructure in PythonTom Leys2009-11-04T22:12:58Z2009-11-04T22:12:58Z@Santi - LOL! - now that <i>is</i> random access!http://stackoverflow.com/questions/1393849/need-advice-how-to-represent-a-certain-datastructure-in-python/1394404#1394404Comment by Tom Leys on Need advice how to represent a certain datastructure in PythonTom Leys2009-11-04T22:11:32Z2009-11-04T22:11:32Z+1 - It seems that Python 2.6 gets more and powerful every day! http://stackoverflow.com/questions/1628222/the-advantages-of-having-static-function-like-len-max-and-min-over-inheriComment by Tom Leys on The advantages of having static function like len(), max(), and min() over inherited method callsTom Leys2009-10-27T01:06:16Z2009-10-27T01:06:16ZI personally find <code>min(1,2)</code> and <code>min([1,2])</code> to be extremely consistent. Not everything should be Java likehttp://stackoverflow.com/questions/1546745/manually-giving-the-twisted-web-network-stack-a-packet-to-process/1619223#1619223Comment by Tom Leys on Manually giving the twisted (web) network stack a packet to process?Tom Leys2009-10-25T21:03:07Z2009-10-25T21:03:07ZIt is possible to set up port forwarding through a SSH tunnel. Instead of a custom solution, you could run HAProxy or similar and have it forward the connections to twisted on the other computer via the tunnel.http://stackoverflow.com/questions/1617532/non-repeatable-django-problem-error-was-module-object-has-no-attribute-valid/1619171#1619171Comment by Tom Leys on Non-repeatable django problem: Error was: 'module' object has no attribute 'validators' Tom Leys2009-10-25T21:01:19Z2009-10-25T21:01:19Z+1 this is a great point, limiting on the origional query will make your application far faster as the AudioFile DB increases in size.