Tom Leys
|
Registered User
|
I love algorithms, optimisation and firmware. I'm a C++ programmer who has recently realised that Python is far more fun, usable and productive and can't stop talking about it. I live in sunny Auckland with my two kids, my wife and my bank of three monitors (bare minimum, I know) By day, I work hard on a free 3D viewer called Deep View. My company (Right Hemisphere) creates software that unlocks the CAD data created by design teams so they can use it for marketing, manuals and communications. By night, I am creating a power monitoring system called Gridspy which has a web-based user interface. That is a great mix of Django, Twisted, Firmware in Keil C and all those other web technologies. I blog about it here. |
|
Dec 1 |
accepted | Optimizing random-access bilinear sampling |
|
Nov 24 |
comment |
How to add two numbers without using ++ or + or another arithmetic operator. Trust me, it works. Or don't trust me - download and install python (python.org/download) and copy paste the bottom example (starting at def add) into the console. |
|
Nov 23 |
answered | Optimizing random-access bilinear sampling |
|
Nov 20 |
accepted | Network programming abstraction, decomposition |
|
Nov 20 |
accepted | Standard way of using a single port for multiple sockets? |
|
Nov 17 |
comment |
Can Scrum work with mediocre developers? +1 bravo. Most senior developers will become frustrated if they continue to work at a company that does not allow high level decision making. |
|
Nov 17 |
answered | What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/C |
|
Nov 11 |
comment |
How to defer a Django DB operation from within Twisted? Yes, 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. |
|
Nov 9 |
comment |
How do I continuously send and receive with wireless serial-port in 8051? A 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. |
|
Nov 5 |
comment |
algorithm for list identification and parsing My answer (using a bayesian filter) revolves around asking a computer to automate this human-process analysis |
|
Nov 5 |
comment |
algorithm for list identification and parsing Thanks, 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. |
|
Nov 5 |
revised |
algorithm for list identification and parsing Addressed OP comments |
|
Nov 5 |
comment |
HTTP Download very Big File +1 Wow - a fantastic and through answer! |
|
Nov 5 |
comment |
What is the direction of stack growth in most modern systems? the 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. |
|
Nov 5 |
comment |
Does stack grow upward or downward? The 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. |
|
Nov 4 |
answered | How to defer a Django DB operation from within Twisted? |
|
Nov 4 |
answered | algorithm for list identification and parsing |
|
Nov 4 |
comment |
algorithm for list identification and parsing +1 Until you can express your rules in plain English, it will be impossible to express them in code. |
|
Nov 4 |
comment |
Need advice how to represent a certain datastructure in Python @Santi - LOL! - now that is random access! |
|
Nov 4 |
comment |
Need advice how to represent a certain datastructure in Python +1 - It seems that Python 2.6 gets more and powerful every day! |
|
Nov 1 |
awarded | ● Nice Answer |
|
Oct 27 |
comment |
The advantages of having static function like len(), max(), and min() over inherited method calls I personally find min(1,2) and min([1,2]) to be extremely consistent. Not everything should be Java like |
|
Oct 25 |
comment |
Manually giving the twisted (web) network stack a packet to process? It 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. |
|
Oct 25 |
comment |
Non-repeatable django problem: Error was: ‘module’ object has no attribute ‘validators’ +1 this is a great point, limiting on the origional query will make your application far faster as the AudioFile DB increases in size. |
|
Oct 25 |
revised |
Non-repeatable django problem: Error was: ‘module’ object has no attribute ‘validators’ added 474 characters in body |
|
Oct 25 |
revised |
Non-repeatable django problem: Error was: ‘module’ object has no attribute ‘validators’ added 936 characters in body |
|
Oct 25 |
comment |
How to use neural networks to solve “soft” solutions? Sorry, I meant to link you to this page - FEAR AI - how they did it (a great read, at least look for ideas) web.media.mit.edu/~jorkin/… |
|
Oct 25 |
comment |
How to use neural networks to solve “soft” solutions? I hate to shoot you down, but finite state machines are far easier to program and balance, handle unusual situations better and the the common solution to game AI. See au.gamespy.com/pc/fear/698080p1.html |
|
Oct 24 |
answered | Manually giving the twisted (web) network stack a packet to process? |
|
Oct 24 |
answered | Non-repeatable django problem: Error was: ‘module’ object has no attribute ‘validators’ |
|
Oct 24 |
revised |
ActiveMQ : Use Django Auth with Stomp added 150 characters in body |
|
Oct 23 |
answered | what correction alogrithm for spelling mistakes does google use |
|
Oct 23 |
comment |
what correction alogrithm for spelling mistakes does google use Duplicated stackoverflow.com/questions/307291/… - to find it I googled your title. |
|
Oct 22 |
answered | Filter a User list using a UserProfile field in Django Admin |
|
Oct 22 |
comment |
Why is this simple python class not working? @Michael - My pleasure :) |
|
Oct 22 |
revised |
RS232 serial snoop tools for protocol development / debugging Now community wiki |
|
Oct 22 |
comment |
Object oriented design? +1 for pointing out that its backwards to embrace solutions and then start looking for problems to solve with them. |
|
Oct 21 |
comment |
“I am not proud of my code” excuse for not open sourcing an application I think that the very last paragraph nails it. |
|
Oct 21 |
revised |
How can I work out the class hierarchy given an object instance in Python? Changed answer ordering. |
|
Oct 21 |
revised |
How to use JQuery and Django (ajax + HttpResponse)? added 368 characters in body |
|
Oct 21 |
comment |
Why is this simple python class not working? @SilentGhost - while a valid point in general, Michael is probably making a toy program as a learning exercise. |
|
Oct 21 |
revised |
Why is this simple python class not working? Fixed code example, grammar and title |
|
Oct 21 |
comment |
Working for free +1 very good things to consider. Lots of good reasons to try to find a paying job instead. Because of the paycheck leverage aspect, many companies would rather pay you than have you work for free. |
|
Oct 21 |
revised |
How can I work out the class hierarchy given an object instance in Python? clafiried |
|
Oct 21 |
answered | How can I work out the class hierarchy given an object instance in Python? |
|
Oct 21 |
comment |
Old partners want source code for product because they want to sell…when is source code needed when selling? (I say risk because you worked without compensation originally) |
|
Oct 21 |
comment |
Old partners want source code for product because they want to sell…when is source code needed when selling? +1 If they really have a buyer, they should be happy to pay your standard contracting rate +50% for taking a risk on your part for the source |
|
Oct 21 |
comment |
Are there any good reasons why I should not use Python? Interactive programming using the python console will quickly teach you what to expect from python, including all your examples. To try all this in the console will take you less time than setting up a project in many other languages. |
|
Oct 21 |
comment |
Are there any good reasons why I should not use Python? +1 A great response, well thought out and delivered. Despite the fact I love Python. |
|
Oct 21 |
comment |
Python idiom for ‘Try until no exception is raised’ @gnibbler - Woah, I forgot Python had that awesome feature (docs.python.org/reference/…) |
