User Parand - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:34:12Z http://stackoverflow.com/feeds/user/13055 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/860571/active-directory-synchronization-with-transformation 1 Active Directory synchronization with transformation? Parand 2009-05-13T21:40:18Z 2009-12-04T12:00:05Z <p>I'm not too familiar with Active Directory, so I may be taking the wrong approach here...</p> <p>I'd like to have my master active directory instance replicated to another instance on a continuous basis, with various attributes changed. For example, I may want the passwords changed for all users, set to something random in the replica copy.</p> <p>Data movement will only be one way - always from the master to the replica. The replica should be identical to the master with the exception of the modified attributes.</p> <p>What's a good way to to do this?</p> <p>I'd like to do this with multiple master ADs as well - the replica AD should contain the superset of users in all master ADs.</p> <p>An alternative might be to layer something on top of my master ADs that perform the password/attribute changes on the fly. Is this possible/desirable?</p> http://stackoverflow.com/questions/812479/general-purpose-json-serializer-deserializer-in-jquery 0 General purpose json serializer/deserializer in jQuery? Parand 2009-05-01T18:01:03Z 2009-12-03T03:50:26Z <p><strong>Duplicate:</strong> <a href="http://stackoverflow.com/questions/191881/serializing-to-json-in-jquery">http://stackoverflow.com/questions/191881/serializing-to-json-in-jquery</a></p> <p>It seems there's a JSON serializer/deserializer built into jQuery, since it's able to implement things like .getJSON . Is it possible to use the built in jQuery JSON processor itself a general purpose JSON processor (ie. make a jQuery.something() call to serialize/deserialize my own data), removing the need for a separate JSON library?</p> <p>Update: The responses in the question referenced above say there's no JSON serialization code in jQuery. How about JSON deserialization? How is .getJSON implemented, and why isn't the deserialization capability exposed for general use?</p> <p>Update2: I'm already using json2 from json.org , I'm trying to get rid of it as all I'm doing is simple deserialization. Sounds like jquery really is just doing eval? I had the impression <a href="http://www.json.org/js.html" rel="nofollow">that wasn't so good for security</a>:</p> <blockquote> <p>The eval function is very fast. However, it can compile and execute any JavaScript program, so there can be security issues</p> </blockquote> http://stackoverflow.com/questions/759468/awk-or-sed-best-way-to-grab-this-text 0 awk or sed: Best way to grab [this text] Parand 2009-04-17T08:05:04Z 2009-11-28T06:37:12Z <p>I'm trying to parse various info from log files, some of which is placed within square brackets. For example:</p> <pre><code>Tue, 06 Nov 2007 10:04:11 INFO processor:receive: [someuserid], [somemessage] msgtype=[T] </code></pre> <p>What's an elegant way to grab 'someuserid' from these lines, using sed, awk, or other unix utility?</p> http://stackoverflow.com/questions/1799796/embedable-image-editing-javascript-flash-library-service 0 Embedable image editing javascript/flash library/service? Parand 2009-11-25T20:38:19Z 2009-11-25T20:38:19Z <p>I need to enable some very basic image editing capabilities (adjust contrast, crop, etc) in the browser and allow the modified image to be sent back to my server. Do you know of good libraries or services that could be easily embedded in a web application?</p> <p>Requirements:</p> <ul> <li>Should run in as many browsers are possible (so probably flash vs. html5 based)</li> <li>Should allow the modified image to be uploaded in a reasonable way, say as a form submit</li> <li>Should be as light as possible</li> <li>Being customizable is a plus - I'd like to expose only a few functions, as opposed to the entire photo editing menu.</li> </ul> http://stackoverflow.com/questions/1051868/html5-database-administration-introspection 1 HTML5 Database administration / introspection? Parand 2009-06-27T01:00:57Z 2009-11-22T22:52:07Z <p>I'm playing around with html client side storage and wanted to know if there are any facilities for introspection of the database - is there an equivalent of sqlite ".tables" or ".schema" ?</p> <p>Also, I'm not seeing my tables show up in AppData\Local\Apple Computer\Safari\LocalStorage . Is there another place tables are stored?</p> http://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen 2 Python: ulimit and nice for subprocess.call / subprocess.popen ? Parand 2009-11-06T18:44:01Z 2009-11-22T02:48:07Z <p>I need to limit the amount of time and cpu taken by external command line apps I spawn from a python process using subprocess.call , mainly because sometimes the spawned process gets stuck and pins the cpu at 99%. </p> <p>nice and ulimit seem like reasonable ways to do this, but I'm not sure how they'd interact with subprocess.</p> <ul> <li>The limits look something like: <ul> <li>Kill the process if it's taking more than 60 seconds</li> <li>Limit it to 20% of cpu</li> </ul></li> <li>I want to apply the resource limiting to the subprocess, not to the python process that's spawning the subprocesses.</li> </ul> <p>Is there a way to apply nice and ulimit to the subprocess.call spawned process? Are there better python-native alternatives?</p> <p>This is on a linux (ubuntu) system.</p> http://stackoverflow.com/questions/1462808/iphone-sticky-on-screen-header-or-footer-in-webkit-html-css 0 iPhone: sticky on-screen header or footer in webkit (HTML/css) Parand 2009-09-22T21:44:12Z 2009-11-19T20:41:28Z <p>Is it possible to create a sticky header or footer such that no matter where you scroll the header/footer stays put? I'm looking for a HTML/css/javascript solution for iPhone/webkit. </p> http://stackoverflow.com/questions/1766027/django-piston-manytomanyfield-handling 0 Django-Piston: ManyToManyField handling? Parand 2009-11-19T19:45:51Z 2009-11-19T20:08:52Z <p>Bit of a lazyweb question here: anybody know how django-piston handles writes (create/update) to ManyToMany fields?</p> http://stackoverflow.com/questions/1747272/getting-rid-of-jquery-css-ie-slideup-flash 0 Getting rid of jQuery/CSS IE slideUp flash? Parand 2009-11-17T08:01:03Z 2009-11-17T08:13:43Z <p>I have a very simple script that slides a message down from the top of the page, then slides it back up after a few seconds. Works fine in FireFox, Chrome, etc, but in IE (6 through 8), after the slideUp completes the div appears at full size for just a moment before disappearing, creating a nasty flash. Any ideas on how to get rid of this?</p> <p>Here's the page in full:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Alert Drawer&lt;/title&gt; &lt;script type="text/javascript" src="../jquery.js"&gt;&lt;/script&gt; &lt;style&gt; #drawer { background-color: yellow; overflow:visible; position:fixed; left:0; top:0; text-align:center; padding:15px; font-size:18px; border-bottom:2px solid #789; width:100%; display:none; z-index:2; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="drawer"&gt;&lt;/div&gt; &lt;p&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt; &lt;a href="#doit"&gt;Show the alert drawer!&lt;/a&gt; &lt;/p&gt; &lt;/body&gt; &lt;script type="text/javascript"&gt;//&lt;![CDATA[ $(function() { var drawer = $('#drawer'); $('a').click( function() { drawer.html("&lt;center&gt;Hey Man!&lt;br&gt;This is a message.&lt;/center&gt;"); drawer.slideDown( function() { drawer.css("backgroundColor", "orange"); setTimeout(function() { drawer.css("backgroundColor", "yellow"); }, 1000); } ); setTimeout(function() { drawer.slideUp(); }, 3000); return false; }); }); //]]&gt;&lt;/script&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1725257/django-search-filter-by-filefield-name 0 Django: search (filter) by FileField.name Parand 2009-11-12T20:45:51Z 2009-11-12T20:52:43Z <p>I need to find model instances whose FileFields point to a particular set of files. This is probably obvious and documented somewhere but I can't seem to find it: what's the syntax for using FieldField.name in a django filter query? Something like:</p> <pre><code>models.MyModel.objects.filter(image__name='myfile.jpg') </code></pre> http://stackoverflow.com/questions/1725257/django-search-filter-by-filefield-name/1725304#1725304 0 Answer by Parand for Django: search (filter) by FileField.name Parand 2009-11-12T20:52:43Z 2009-11-12T20:52:43Z <p>Nevermind - it's just </p> <pre><code>models.MyModel.objects.filter(image='myfile.jpg') </code></pre> <p>a separate issue was causing me to think this wasn't working, but in fact it is.</p> http://stackoverflow.com/questions/444271/connecting-http-request-response-model-with-asynchronous-queue 0 Connecting http request/response model with asynchronous queue Parand 2009-01-14T19:10:03Z 2009-11-09T14:33:16Z <p>What's a good way to connect the synchronous http request/response model with an asynchronous queue based model?</p> <p>When the user's HTTP request comes it generates a work request that goes onto a queue (<a href="http://xph.us/software/beanstalkd/" rel="nofollow">beanstalkd</a> in this case). One of the workers picks up the request, does the work, and prepares a response.</p> <p>The queue model is not request/response - there are only requests, not responses. So the question is, how best do we get the response back into the world of HTTP and back to the user?</p> <p>Ideas:</p> <ol> <li><p>Beanstalkd supports light weight topics or queues (they call them tubes). We could create a tube for each request, have the worker create a message on that tube, and have the http process sit and wait on the tube for the response. Don't particularly like this one since it has apache processes sitting around taking memory.</p></li> <li><p>Have the http client poll for the response. The user's initial HTTP request kicks off the job on the queue and returns immediately. The client (the user's browser) polls periodically for a response. On the backend the worker puts its response into memcached, and we connect nginx to memcached so the polling is light weight.</p></li> <li><p>Use <a href="http://simonwillison.net/2007/Dec/5/comet/" rel="nofollow">Comet</a>. Similar to the second option, but with fancier http communication to avoid polling.</p></li> </ol> <p>I'm leaning towards 2 since it's easy and well know (I haven't used comet yet). I'm guessing there's probably also a much better obvious model I haven't thought of. What do you think?</p> http://stackoverflow.com/questions/922805/spnego-kerberos-token-generation-validation-for-sso-using-python 2 SPNEGO (kerberos token generation/validation) for SSO using Python Parand 2009-05-28T19:40:12Z 2009-11-04T16:19:56Z <p>I'm attempting to implement a simple Single Sign On scenario where some of the participating servers will be windows (IIS) boxes. It looks like SPNEGO is a reasonable path for this.</p> <p>Here's the scenario:</p> <ul> <li>User logs in to my SSO service using his username and password. I authenticate him using some mechanism.</li> <li>At some later time the user wants to access App A. <ul> <li>The user's request for App A is intercepted by the SSO service. The SSO service uses SPNEGO to log the user in to App A: <ul> <li>The SSO service hits the App A web page, gets a "WWW-Authenticate: Negotiate" response</li> <li>The SSO service generates a "Authorization: Negotiate xxx" response on behalf of the user, responds to App A. The user is now logged in to App A.</li> </ul></li> <li>The SSO service intercepts subsequent user requests for App A, inserting the Authorization header into them before passing them on to App A.</li> </ul></li> </ul> <p>Does that sound right? </p> <p>I need two things (at least that I can think of now):</p> <ul> <li>the ability to generate the "Authorization: Negotiate xxx" token on behalf of the user, preferably using Python</li> <li>the ability to validate "Authorization: Negotiate xxx" headers in Python (for a later part of the project)</li> </ul> http://stackoverflow.com/questions/1654922/python-monitoring-and-killing-throttling-spawned-processes-based-on-load-time 1 Python: Monitoring and killing/throttling spawned processes based on load, time, etc Parand 2009-10-31T16:53:48Z 2009-11-02T05:06:52Z <p>I have a queue of workers that spawn external third party apps using subprocess. I'd like to control how much of the overall resources of my server these process consume. Some of these external apps also tend to hang for unknown reasons, fixed with a restart.</p> <p>What's a good way to:</p> <ul> <li>Monitor the overall server load (say, load average or equivalent of vmstat) in python?</li> <li>Monitor the cpu load of the processes I spawn?</li> <li>Kill processes I've spawned if they're taking too long or taking too much cpu?</li> </ul> <p>Basically I need to be able to control the load the I'm placing on my server with my spawned threads.</p> <p>Hopefully there's a package or library that'll do all this for me?</p> http://stackoverflow.com/questions/1654721/python-multithreading-with-urllib2-issue/1654854#1654854 1 Answer by Parand for Python MultiThreading With Urllib2 Issue Parand 2009-10-31T16:27:51Z 2009-10-31T16:27:51Z <p>Can you confirm that doing the same number of simultaneous downloads without python continues to download fast? Perhaps the issue is not with your code, but with your connection getting throttled or with the site serving the files.</p> <p>If that's not the issue you could try the <a href="http://pyprocessing.berlios.de/" rel="nofollow">pyprocessing</a> library to implement a multi process version instead of a multi threaded version. If you're using python 2.6 pyprocessing is included in the distribution as <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing</a>. It's quite easy to convert threaded code to multi process code, so it's worth a try if only to confirm the issue is with the threading.</p> http://stackoverflow.com/questions/1637902/python-django-which-authorize-net-library-should-i-use 0 Python/Django: Which authorize.net library should I use? Parand 2009-10-28T15:10:17Z 2009-10-28T15:10:17Z <p>I need authorize.net integration for subscription payments, likely using CIM. The requirements are simple - recurring monthly payments, with a few different price points. Customer credit card info will be stored a authorize.net .</p> <p>There are quite a few libraries and code snippets around, I'm looking for recommendations as to which work best.</p> <ul> <li>Satchmo seems more than I need, and it looks like it's complex. </li> <li><a href="http://bitbucket.org/bkroeze/django-bursar/overview/" rel="nofollow">Django-Bursar</a> seems like what I need, but it's listed as alpha.</li> <li>The <a href="http://bitbucket.org/adroll/authorize/wiki/Home" rel="nofollow">adroll/authorize library</a> also looks pretty good.</li> <li>The CIM XML APIs don't look too bad, I could connect directly with them.</li> </ul> <p>And there are quite a few other code snippets.</p> <p>What's the best choice right now, given my fairly simple requirements?</p> http://stackoverflow.com/questions/1598823/elegant-setup-of-python-logging-in-django 8 Elegant setup of Python logging in Django Parand 2009-10-21T05:07:01Z 2009-10-21T10:12:47Z <p>I have yet to find a way of setting up python logging with django that I'm happy with. My requirements are fairly simple:</p> <ul> <li>Different log handlers for different events - ie. I want to be able to log to different files</li> <li>Easy access to loggers in my modules. The module should be able to find its logger with little effort.</li> <li>Should be easily applicable to command-line modules. Parts of the system are stand-alone command line or daemon processes. Logging should be easily usable with these modules.</li> </ul> <p>My current setup is to use a logging.conf file and setup logging in each module I log from. Doesn't feel right. </p> <p>Do you have a logging setup that you like? Please detail it: how do you setup the configuration (do you use logging.conf or set it up in code), where/when do you initiate the loggers, and how do you get access to them in your modules, etc.</p> http://stackoverflow.com/questions/1551508/using-python-locale-or-equivalent-in-web-applications 2 Using Python locale or equivalent in web applications? Parand 2009-10-11T19:20:00Z 2009-10-12T18:42:35Z <p>Python's locale implementation seems to want to either read the locale from system settings or have it be set via a setlocale call. Neither of these work for me since I'd like to use the capabilities in a web application, where the desired locale is the user's locale.</p> <p>And there are warnings in the <a href="http://docs.python.org/library/locale.html" rel="nofollow">locale docs</a> that make the whole thing scary:</p> <blockquote> <p>On top of that, some implementation are broken in such a way that frequent locale changes may cause core dumps. This makes the locale somewhat painful to use correctly</p> </blockquote> <p>And</p> <blockquote> <p>It is generally a bad idea to call setlocale() in some library routine, since as a side effect it affects the entire program</p> </blockquote> <p>So, is there a reasonable locale alternative for use in web apps? Is <a href="http://babel.edgewall.org/wiki/Documentation/0.9/index.html" rel="nofollow">Babel</a> it or are there other alternatives? I'm looking for something that will handle currencies as well as dates and numbers.</p> <p>[Update] To clarify, I'm most interested in date, number, and currency formatting for various locales.</p> http://stackoverflow.com/questions/1539876/controlling-css-page-breaks-when-printing-in-webkit 0 Controlling CSS page breaks when printing in Webkit Parand 2009-10-08T19:16:56Z 2009-10-08T19:36:16Z <p>I'm attempting to improve the appearance of html documents printed using Webkit, in this case by exerting some control over where page breaks occur.</p> <p>I'm able to insert page breaks where I need using:</p> <pre><code>page-break-after: always; </code></pre> <p>However, I can't find a way to avoid page breaks being inserted in the middle of items. For example, I have html tables that should not be split in the middle across multiple pages. I had the impression that </p> <pre><code>page-break-inside: avoid; </code></pre> <p>would prevent a page break from being inserted inside the element, but it doesn't seem to be doing anything. My code looks like:</p> <pre><code>.dontsplit { border: 2px solid black; page-break-inside: avoid; } &lt;table class="dontsplit"&gt; &lt;tr&gt;&lt;td&gt;Some title&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;img src="something.jpg"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Despite the page-break-inside: avoid directive I still get the table split between the first and second row into separate pages.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1539876/controlling-css-page-breaks-when-printing-in-webkit/1539964#1539964 0 Answer by Parand for Controlling CSS page breaks when printing in Webkit Parand 2009-10-08T19:36:16Z 2009-10-08T19:36:16Z <p>Nevermind: looks like this is a webkit issue: </p> <p><a href="https://bugs.webkit.org/show%5Fbug.cgi?id=5097" rel="nofollow">https://bugs.webkit.org/show%5Fbug.cgi?id=5097</a></p> http://stackoverflow.com/questions/1462808/iphone-sticky-on-screen-header-or-footer-in-webkit-html-css/1478568#1478568 0 Answer by Parand for iPhone: sticky on-screen header or footer in webkit (HTML/css) Parand 2009-09-25T17:20:35Z 2009-09-25T17:20:35Z <p>Answering my own question: best resource I've found so far is this one: <a href="http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/" rel="nofollow">http://doctyper.com/archives/200808/fixed-positioning-on-mobile-safari/</a></p> <p>However, I think I'm going to end up using <a href="http://www.appcelerator.com/products/" rel="nofollow">Titanium from Appcelerator</a> instead of just html/css.</p> http://stackoverflow.com/questions/1406892/elegantly-handle-site-specific-settings-configuration-in-svn-hg-git-etc 4 Elegantly handle site-specific settings/configuration in svn/hg/git/etc ? Parand 2009-09-10T18:19:54Z 2009-09-10T22:36:05Z <p>I've been looking for a better way to deal with site-specific settings (in this case, the django settings.py file). </p> <p>The settings.py structure and fields are fairly consistent, but the values differ between the developer's boxes, the integration, QA, testing, and production environments.</p> <p>What's an elegant way to have the settings source controlled while still allowing changes between different boxes?</p> <p>I'm also concerned about having sensitive data (eg. database passwords) in source control, but I do want automated deployments.</p> <p>Examples of what we've used:</p> <ul> <li><p>settings.py sets the common values then loads a secondary settings file based on the hostname or the username .</p></li> <li><p>injecting values into the settings.py file using a deployment script. But this simply shifts the problem to managing the deployment scripts instead of the settings.py script.</p></li> </ul> <p>Anyone have a particularly elegant approach?</p> http://stackoverflow.com/questions/1363692/python-dst-and-gmt-management-into-a-scheduler/1365798#1365798 1 Answer by Parand for python DST and GMT management into a scheduler Parand 2009-09-02T04:15:54Z 2009-09-02T04:15:54Z <p>pytz works great. Be sure to convert and store your times as UTC and use the pytz/datetime conversion routines to convert to local time. There's an example of usage and timezone conversion <a href="http://parand.com/say/index.php/2008/02/11/parsing-and-normalizing-dates-with-timezones-in-python/" rel="nofollow">here</a>, basically:</p> <pre><code>import datetime import pytz datetime.datetime(2008, 1, 31, 22, 56, 13, tzinfo=&lt;UTC&gt;) utcdate.astimezone(pytz.timezone('US/Pacific')) # result: # datetime.datetime(2008, 1, 31, 14, 56, 13, tzinfo=&lt;DstTzInfo 'US/Pacific' PST-1 day, 16:00:00 STD&gt;) </code></pre> http://stackoverflow.com/questions/1338236/django-applying-mutilple-access-control-decorators-to-a-view 0 Django: Applying mutilple access control decorators to a view Parand 2009-08-27T00:10:33Z 2009-08-27T00:28:44Z <p>I'm attempting to expose a single API call using three different authentication mechanisms: django's login_required , HTTP basic auth, and OAuth. I have decorators for all three but can't quite figure out how to have them all get along smoothly.</p> <p>The required logic is to allow access to the view if any of the decorators / authentication mechanisms are valid for the user's request - basically an OR. However, if I simply include all three decorators then they all want to be satisfied before letting the request through - an AND.</p> <p>What's a good way to deal with this?</p> http://stackoverflow.com/questions/1202430/templatingscripting-reverse-proxy 2 Templating+scripting reverse proxy? Parand 2009-07-29T19:13:33Z 2009-08-25T14:28:52Z <p>Thinking through an idea, wanted to get feedback/suggestions:</p> <p>Having had great success with url rewriting and nginx, I'm now thinking of a more capable reverse proxy/router that would do the following:</p> <ul> <li>Map requests to handlers based on regex matching (ala Django)</li> <li>Certain requests would simply be routed to backend servers - eg. static media, memcached, etc</li> <li>Other requests would render templates that pull in data from several backend servers</li> </ul> <p>For example, a template could consist of:</p> <pre><code>&lt;body&gt; &lt;div&gt;{% remote http://someserver/somepage %}&lt;/div&gt; &lt;div&gt;{% remote http://otherserver/otherpage %}&lt;/div&gt; &lt;/body&gt; </code></pre> <p>The reverse proxy would make the http requests to someserver/somepage and otherserver/otherpage and pull the results into the template.</p> <p>Questions:</p> <ul> <li>Does the idea make sense or is it a bad idea?</li> <li>Is there an existing package that implements something like this?</li> <li>How about an existing server+scripting for implementing this - eg. lighttpd+lua, nginx+??</li> <li>How about nginx+SSI? Looks pretty capable, if you have experience / recommendations please comment.</li> <li>How about something like a <a href="http://www.igvita.com/2009/04/20/ruby-proxies-for-scale-and-monitoring/" rel="nofollow">scripting language+eventlet</a> ?</li> <li>Twisted?</li> </ul> <p>My preferences are python for scripting and jinja/django style templates, but I'm open to alternatives.</p> http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-json-ejb-other 6 Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other? Parand 2008-11-17T19:48:44Z 2009-08-17T23:41:49Z <p>We're looking into transport/protocol solutions and were about to do various performance tests, so I thought I'd check with the community if they've already done this:</p> <p>Has anyone done server performance tests for simple echo services as well as serialization/deserialization for various messages sizes comparing EJB3, Thrift, and Protocol Buffers on Linux?</p> <p>Primarily languages will be Java, C/C++, Python, and PHP.</p> <p>Update: I'm still very interested in this, if anyone has done any further benchmarks please let me know. Also, very interesting benchmark showing <a href="http://bouncybouncy.net/ramblings/posts/more%5Fon%5Fjson%5Fvs%5Fthrift%5Fand%5Fprotocol%5Fbuffers/" rel="nofollow">compressed JSON performing similar / better than Thrift / Protocol Buffers</a>, so I'm throwing JSON into this question as well.</p> http://stackoverflow.com/questions/1268984/python-http-proxy-library-based-on-libevent-or-comparable-technology 1 Python http proxy library based on libevent or comparable technology? Parand 2009-08-12T22:02:30Z 2009-08-12T22:51:46Z <p>I'm looking to build an intelligent reverse http proxy capable of routing, header examination and enrichment (eg. examine and build cookies and http headers), and various other fanciness. For a general idea of what I'm looking to build see <a href="http://www.igvita.com/2009/04/20/ruby-proxies-for-scale-and-monitoring/" rel="nofollow">Ruby Proxies for Scale and Monitoring</a> - except in Python.</p> <p>I realize that Twisted is an exceedingly good answer for this, and that eventmachine was inspired by Twisted, but I'm looking for something other than Twisted. </p> <p>Ideally a library or package that includes http proxying capabilities I could modify with my own little plugins.</p> <p>I remember seeing something based on eventlib that had http server capabilities built in, but I can't seem to find it.</p> <p>I'm also taking a deep look at perlbal; that looks almost like the perfect solution, except it's in Perl.</p> <p>Any recommendations?</p> http://stackoverflow.com/questions/1261687/efficient-way-to-fingerprint-an-image-jpg-png-etc 14 Efficient way to fingerprint an image (jpg, png, etc)? Parand 2009-08-11T17:01:23Z 2009-08-12T16:01:47Z <p>Is there an efficient way to get a fingerprint of an image for duplicate detection? </p> <p>That is, given an image file, say a jpg or png, I'd like to be able to quickly calculate a value that identifies the image content and is fairly resilient to other aspects of the image (eg. the image metadata) changing. If it deals with resizing that's even better.</p> <p>[Update] Regarding the meta-data in jpg files, does anyone know if it's stored in a specific part of the file? I'm looking for an easy way to ignore it - eg. can I skip the first x bytes of the file or take x bytes from the end of the file to ensure I'm not getting meta-data?</p> http://stackoverflow.com/questions/923885/capture-html-canvas-as-gif-jpg-png-pdf 2 Capture HTML Canvas as gif/jpg/png/pdf? Parand 2009-05-29T00:28:27Z 2009-08-12T07:55:23Z <p>Is it possible to capture or print what's displayed in an html canvas as an image or pdf? I'd like to generate an image via canvas, and I'd like to be able to generate a png from that image.</p> http://stackoverflow.com/questions/1106903/python-stopiteration-exception-and-list-comprehensions 4 Python: StopIteration exception and list comprehensions Parand 2009-07-09T23:09:56Z 2009-08-08T01:00:55Z <p>I'd like to read at most 20 lines from a csv file:</p> <pre><code>rows = [csvreader.next() for i in range(20)] </code></pre> <p>Works fine if the file has 20 or more rows, fails with a StopIteration exception otherwise.</p> <p>Is there an elegant way to deal with an iterator that could throw a StopIteration exception in a list comprehension or should I use a regular for loop?</p> http://stackoverflow.com/questions/1766027/django-piston-manytomanyfield-handling/1766181#1766181 Comment by Parand on Django-Piston: ManyToManyField handling? Parand 2009-11-20T00:40:23Z 2009-11-20T00:40:23Z Thanks Jesper. Any suggestions for how to handle it, particularly with create? I'm looking for a nice pattern around separating the creation of the main object from the creation of the related objects? http://stackoverflow.com/questions/1747272/getting-rid-of-jquery-css-ie-slideup-flash/1747317#1747317 Comment by Parand on Getting rid of jQuery/CSS IE slideUp flash? Parand 2009-11-17T08:26:37Z 2009-11-17T08:26:37Z Thanks nil, that did it. http://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen/1689991#1689991 Comment by Parand on Python: ulimit and nice for subprocess.call / subprocess.popen ? Parand 2009-11-06T20:04:14Z 2009-11-06T20:04:14Z Thanks Erik. It looks like this sets the limits on the python process, not on the external process? http://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen/1689787#1689787 Comment by Parand on Python: ulimit and nice for subprocess.call / subprocess.popen ? Parand 2009-11-06T19:39:44Z 2009-11-06T19:39:44Z Thanks Ville, the cpu throttling you describe works great. Do you know if it's possible to do the same thing specifying the command with the bracket syntax instead of as a string? http://stackoverflow.com/questions/1598823/elegant-setup-of-python-logging-in-django/1599881#1599881 Comment by Parand on Elegant setup of Python logging in Django Parand 2009-10-21T22:41:15Z 2009-10-21T22:41:15Z I ended up using this, except initializing in settings.py instead of urls.py http://stackoverflow.com/questions/1551508/using-python-locale-or-equivalent-in-web-applications/1554811#1554811 Comment by Parand on Using Python locale or equivalent in web applications? Parand 2009-10-12T18:40:52Z 2009-10-12T18:40:52Z Thanks zgoda. I'm looking for some of the features provided by locale - in particular, currency, name, and number formatting. I didn't see those in the django docs. http://stackoverflow.com/questions/1406892/elegantly-handle-site-specific-settings-configuration-in-svn-hg-git-etc/1406920#1406920 Comment by Parand on Elegantly handle site-specific settings/configuration in svn/hg/git/etc ? Parand 2009-09-10T19:22:36Z 2009-09-10T19:22:36Z Thanks Ned. Do you put the site-specific settings files in source control? I'm worried about having passwords in settings files in source control. http://stackoverflow.com/questions/1338236/django-applying-mutilple-access-control-decorators-to-a-view/1338290#1338290 Comment by Parand on Django: Applying mutilple access control decorators to a view Parand 2009-08-27T00:35:16Z 2009-08-27T00:35:16Z Good point... Let me think about that a bit. http://stackoverflow.com/questions/1268984/python-http-proxy-library-based-on-libevent-or-comparable-technology Comment by Parand on Python http proxy library based on libevent or comparable technology? Parand 2009-08-12T22:27:53Z 2009-08-12T22:27:53Z I've tried to like Twisted on multiple occasions, and while I like the concepts very much I've never actually enjoyed using it. I'm sure it's a shortcoming on my part and nothing to do with Twisted, but I'd like to try something different for a change. http://stackoverflow.com/questions/1261687/efficient-way-to-fingerprint-an-image-jpg-png-etc Comment by Parand on Efficient way to fingerprint an image (jpg, png, etc)? Parand 2009-08-11T17:34:19Z 2009-08-11T17:34:19Z A couple of uses - duplicate image detection in a large corpus is the base use case, but also various spam hunting related to use of images. http://stackoverflow.com/questions/1202430/templatingscripting-reverse-proxy/1204970#1204970 Comment by Parand on Templating+scripting reverse proxy? Parand 2009-07-30T18:22:52Z 2009-07-30T18:22:52Z Right, assemble it on the server side instead of using iframes/ajax. It is quite simple to build (I have a prototype working nicely), but I'm looking for a production level, high performance implementation. Regarding response times: not necessarily. Reverse proxies sometimes even improve performance by handling slow client connections and letting the backend do real work. http://stackoverflow.com/questions/1106903/python-stopiteration-exception-and-list-comprehensions/1106921#1106921 Comment by Parand on Python: StopIteration exception and list comprehensions Parand 2009-07-09T23:39:18Z 2009-07-09T23:39:18Z That's fair, you guys are right. I guess my construct is a bit funky, iterating over the counter instead of the csv iterable, so the exception really should cause a stoppage. http://stackoverflow.com/questions/1106903/python-stopiteration-exception-and-list-comprehensions/1106921#1106921 Comment by Parand on Python: StopIteration exception and list comprehensions Parand 2009-07-09T23:25:05Z 2009-07-09T23:25:05Z Thanks Ayman. It seems like list comprehensions need to be updated to deal with StopIteration, no? It appears &quot;for&quot; has already been updated to deal with it (it stops iterating when it encounters the exception, implicitly catching it), and I'm not seeing an obvious reason for list comprehensions not to do the same. http://stackoverflow.com/questions/1106576/django-access-model-as-dictionary/1106598#1106598 Comment by Parand on Django: Access model as dictionary Parand 2009-07-09T21:53:24Z 2009-07-09T21:53:24Z Nice, that's even more obvious. http://stackoverflow.com/questions/1022054/minimal-overhead-distributed-event-logging-library-framework/1022114#1022114 Comment by Parand on Minimal overhead distributed event logging library/framework? Parand 2009-06-20T17:58:54Z 2009-06-20T17:58:54Z Thanks Richard, MQ systems might be a way to go. I'd like to see worst-case benchmarks of time taken to send messages, as it's important that the logging system have as little impact on the thrower as possible. I'd assumed MQ systems might be too heavy, but that could be an invalid assumption.