User Parand - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T01:04:08Zhttp://stackoverflow.com/feeds/user/13055http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen2Python: ulimit and nice for subprocess.call / subprocess.popen ?Parand2009-11-06T18:44:01Z2009-11-07T12:41:46Z
<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/922805/spnego-kerberos-token-generation-validation-for-sso-using-python2SPNEGO (kerberos token generation/validation) for SSO using PythonParand2009-05-28T19:40:12Z2009-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-time1Python: Monitoring and killing/throttling spawned processes based on load, time, etcParand2009-10-31T16:53:48Z2009-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#16548541Answer by Parand for Python MultiThreading With Urllib2 IssueParand2009-10-31T16:27:51Z2009-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-use0Python/Django: Which authorize.net library should I use?Parand2009-10-28T15:10:17Z2009-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-django6Elegant setup of Python logging in DjangoParand2009-10-21T05:07:01Z2009-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-applications2Using Python locale or equivalent in web applications?Parand2009-10-11T19:20:00Z2009-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-webkit0Controlling CSS page breaks when printing in WebkitParand2009-10-08T19:16:56Z2009-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; }
<table class="dontsplit">
<tr><td>Some title</td></tr>
<tr><td><img src="something.jpg"></td></tr>
</table>
</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#15399640Answer by Parand for Controlling CSS page breaks when printing in WebkitParand2009-10-08T19:36:16Z2009-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/444271/connecting-http-request-response-model-with-asynchronous-queue0Connecting http request/response model with asynchronous queue Parand2009-01-14T19:10:03Z2009-10-04T10:00:03Z
<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/1462808/iphone-sticky-on-screen-header-or-footer-in-webkit-html-css0iPhone: sticky on-screen header or footer in webkit (HTML/css)Parand2009-09-22T21:44:12Z2009-09-25T17:20:35Z
<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/1462808/iphone-sticky-on-screen-header-or-footer-in-webkit-html-css/1478568#14785680Answer by Parand for iPhone: sticky on-screen header or footer in webkit (HTML/css)Parand2009-09-25T17:20:35Z2009-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/1051868/html5-database-administration-introspection1HTML5 Database administration / introspection?Parand2009-06-27T01:00:57Z2009-09-23T19:56:37Z
<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/1406892/elegantly-handle-site-specific-settings-configuration-in-svn-hg-git-etc4Elegantly handle site-specific settings/configuration in svn/hg/git/etc ?Parand2009-09-10T18:19:54Z2009-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#13657981Answer by Parand for python DST and GMT management into a schedulerParand2009-09-02T04:15:54Z2009-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=<UTC>)
utcdate.astimezone(pytz.timezone('US/Pacific'))
# result:
# datetime.datetime(2008, 1, 31, 14, 56, 13, tzinfo=<DstTzInfo 'US/Pacific' PST-1 day, 16:00:00 STD>)
</code></pre>
http://stackoverflow.com/questions/1338236/django-applying-mutilple-access-control-decorators-to-a-view0Django: Applying mutilple access control decorators to a viewParand2009-08-27T00:10:33Z2009-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-proxy2Templating+scripting reverse proxy?Parand2009-07-29T19:13:33Z2009-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><body>
<div>{% remote http://someserver/somepage %}</div>
<div>{% remote http://otherserver/otherpage %}</div>
</body>
</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-other6Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other?Parand2008-11-17T19:48:44Z2009-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-technology1Python http proxy library based on libevent or comparable technology?Parand2009-08-12T22:02:30Z2009-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-etc14Efficient way to fingerprint an image (jpg, png, etc)?Parand2009-08-11T17:01:23Z2009-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-pdf2Capture HTML Canvas as gif/jpg/png/pdf?Parand2009-05-29T00:28:27Z2009-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-comprehensions4Python: StopIteration exception and list comprehensionsParand2009-07-09T23:09:56Z2009-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/1022054/minimal-overhead-distributed-event-logging-library-framework1Minimal overhead distributed event logging library/framework?Parand2009-06-20T17:20:33Z2009-07-27T10:00:03Z
<p>We'd like to keep records of all major events in our systems. For example, where the database might store the current user status, the event log should record all changes to that status along with when the changes occurred.</p>
<p>The event logging facility should be as close to zero overhead for the event thrower as possible, should accommodate structured information (as opposed to text log messages), and should support distributed deployment (many boxes throwing many events).</p>
<p>In a past life we had a UDP based system that worked well because we had great control over the system (minimized packet loss). The even throwers would fire off UDP packets that would be caught and journaled on other boxes. I'm looking for something similar, hopefully open source, off the shelf, and deployable in more general networks. Alternatively I'm open to suggestions for how to build something like this.</p>
<p>This should work across multiple languages, but will be primarily targeted for Java and Python. The pariticipating (event throwing) applications will vary; some will be web apps, others batch oriented apps. The results will likely live in Hadoop/HDFS/HBase.</p>
http://stackoverflow.com/questions/207477/restful-url-design-for-search9RESTful URL design for searchParand2008-10-16T04:51:20Z2009-07-20T18:52:20Z
<p>I'm looking for a reasonable way to represent searches as a RESTful URLs.</p>
<p>The setup: I have two models, Cars and Garages, where Cars can be in Garages. So my urls look like:</p>
<pre><code>/car/xxxx
xxx == car id
returns car with given id
/garage/yyy
yyy = garage id
returns garage with given id
</code></pre>
<p>A Car can exist on its own (hence the /car), or it can exist in a garage. What's the right way to represent, say, all the cars in a given garage? Something like:</p>
<pre><code>/garage/yyy/cars ?
</code></pre>
<p>How about the union of cars in garage yyy and zzz?</p>
<p>What's the right way to represent a search for cars with certain attributes? Say: show me all blue sedans with 4 doors :</p>
<pre><code>/car/search?color=blue&type=sedan&doors=4
</code></pre>
<p>or should it be /cars instead?</p>
<p>The use of "search" seems inappropriate there - what's a better way / term? Should it just be:</p>
<pre><code>/cars/?color=blue&type=sedan&doors=4
</code></pre>
<p>Should the search parameters be part of the PATHINFO or QUERYSTRING?</p>
<p>In short, I'm looking for a good guide/tutorial for cross-model REST url design, and for search.</p>
<p>[Update] I like Justin's answer, but he doesn't cover the multi-field search case:</p>
<pre><code>/cars/color:blue/type:sedan/doors:4
</code></pre>
<p>or something like that. How do we go from</p>
<pre><code>/cars/color/blue
</code></pre>
<p>to the multiple field case?</p>
http://stackoverflow.com/questions/1133156/simple-java-stand-alone-server-container-framework4Simple Java stand-alone server container/framework?Parand2009-07-15T18:38:47Z2009-07-17T04:18:37Z
<p>For the last couple of years I've had my head in Python, where there are numerous choices for simple, minimal frameworks that allow me to stand up a website or service easily (eg. web.py). I'm looking for something similar in Java.</p>
<p>What is the simplest, least-moving-parts way of standing up simple services using Java these days? I'm looking for something as simple as:</p>
<ul>
<li>the ability to receive HTTP requests</li>
<li>the ability to dispatch those requests to handlers (preferably a regular expression based url to handler mapping facility)</li>
<li>the ability to set HTTP headers and generally fully control the request/response</li>
</ul>
<p>Bonus points if the framework plays well with Jython.</p>
<p>[Update] Thanks for the responses, some of these look quite interesting. I'm not seeing the url dispatch capability in these, however. I'm looking for something similar to Django's url.py system, which looks like:</p>
<pre><code>urlpatterns = patterns('',
(r'^articles/2003/$', 'news.views.special_case_2003'),
(r'^articles/(\d{4})/$', 'news.views.year_archive'),
(r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
(r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
)
</code></pre>
<p>Where you specify a url regular expression along with the handler that handles it.</p>
http://stackoverflow.com/questions/1131504/google-protocol-buffers-or-something-similar-for-net-javascript/1139598#11395980Answer by Parand for Google Protocol Buffers or something similar for .net/javascriptParand2009-07-16T18:57:23Z2009-07-16T18:57:23Z<p>You may find JSON is in fact the best answer. Justin has done a series of <a href="http://bouncybouncy.net/ramblings/posts/more%5Fon%5Fjson%5Fvs%5Fthrift%5Fand%5Fprotocol%5Fbuffers/" rel="nofollow">performance comparisons of JSON to Thrift and Protocol Buffers</a> and found compressed JSON to be faster than protocol buffers, at least in Python. Here's an <a href="http://stackoverflow.com/questions/296650/performance-comparison-of-thrift-protocol-buffers-ejb-other">earlier thread</a> on the topic.</p>
http://stackoverflow.com/questions/1106576/django-access-model-as-dictionary1Django: Access model as dictionaryParand2009-07-09T21:31:37Z2009-07-09T22:14:06Z
<p>I have data in a python dictionary that I'd like to store in a model instance. For example, my dictionary might look like</p>
<pre><code>data = { 'date': '6/17/09', 'name': 'something', 'action': 'something' }
</code></pre>
<p>And my model might look like:</p>
<pre><code>class Something(models.Model):
date = models.DateField()
name = models.CharField()
action = models.CharField()
</code></pre>
<p>I'm looking for a clean way to do something like this:</p>
<pre><code>s = Something()
for k in data:
s[k] = data[k]
</code></pre>
<p>[Update] Shortly after posting this I realized I probably just want to use the Django (de)serializer framework with the 'python' serializer. Ayman's answer is quite nice as well, let me think about which will work better.</p>
http://stackoverflow.com/questions/715240/image-processing-enhancement-algorithms-for-document-ocr-readability3Image processing/enhancement algorithms for document OCR / readability?Parand2009-04-03T19:06:00Z2009-07-05T06:20:20Z
<p>I'm looking for algorithms, papers, or software to enhance faxes, images from cell phone cameras, and other similar source for readability and OCR. </p>
<p>I'm mainly interested in simple enhancements (eg. things you could do using ImageMagick), but I'm also interested in more sophisticated techniques. I'm already talking to vendors, so for this question I'm mostly looking for algorithms or open source software.</p>
<p>To further clarify: I'm not looking for OCR software or algorithms; I'm looking for algorithms to clean up the image so it looks more readable to the human eye, and can possibly be used for OCR.</p>
http://stackoverflow.com/questions/1070760/javascript-function-in-href-vs-onclick/1070788#10707888Answer by Parand for JavaScript Function in HREF vs OnClick()Parand2009-07-01T19:05:14Z2009-07-01T19:13:44Z<p>Putting the onclick within the href would offend those who believe strongly in separation of content from behavior/action. The argument is that your html content should remain focused solely on content, not on presentation or behavior.</p>
<p>The typical path these days is to use a javascript library (eg. jquery) and create an event handler using that library. It would look something like:</p>
<pre><code>$('a').click( function() { your_code_here; return false; } );
</code></pre>
http://stackoverflow.com/questions/620128/access-control-for-static-content-served-from-s33Access control for static content served from S3?Parand2009-03-06T19:36:05Z2009-06-17T04:00:02Z
<p>I'm thinking about serving user-specific static content from S3 - the user needs to be authenticated in order to access his static content. So if user A has content c1, c2 and use B has c3, c4, only A should be able to access c1, c2 .</p>
<p>What's a good way to accomplish this? Is there a way to perform per-user / per file authentication in S3? </p>
http://stackoverflow.com/questions/1689505/python-ulimit-and-nice-for-subprocess-call-subprocess-popen/1689991#1689991Comment by Parand on Python: ulimit and nice for subprocess.call / subprocess.popen ?Parand2009-11-06T20:04:14Z2009-11-06T20:04:14ZThanks 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#1689787Comment by Parand on Python: ulimit and nice for subprocess.call / subprocess.popen ?Parand2009-11-06T19:39:44Z2009-11-06T19:39:44ZThanks 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#1599881Comment by Parand on Elegant setup of Python logging in DjangoParand2009-10-21T22:41:15Z2009-10-21T22:41:15ZI 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#1554811Comment by Parand on Using Python locale or equivalent in web applications?Parand2009-10-12T18:40:52Z2009-10-12T18:40:52ZThanks 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#1406920Comment by Parand on Elegantly handle site-specific settings/configuration in svn/hg/git/etc ?Parand2009-09-10T19:22:36Z2009-09-10T19:22:36ZThanks 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#1338290Comment by Parand on Django: Applying mutilple access control decorators to a viewParand2009-08-27T00:35:16Z2009-08-27T00:35:16ZGood point... Let me think about that a bit. http://stackoverflow.com/questions/1268984/python-http-proxy-library-based-on-libevent-or-comparable-technologyComment by Parand on Python http proxy library based on libevent or comparable technology?Parand2009-08-12T22:27:53Z2009-08-12T22:27:53ZI'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-etcComment by Parand on Efficient way to fingerprint an image (jpg, png, etc)?Parand2009-08-11T17:34:19Z2009-08-11T17:34:19ZA 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#1204970Comment by Parand on Templating+scripting reverse proxy?Parand2009-07-30T18:22:52Z2009-07-30T18:22:52ZRight, 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#1106921Comment by Parand on Python: StopIteration exception and list comprehensionsParand2009-07-09T23:39:18Z2009-07-09T23:39:18ZThat'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#1106921Comment by Parand on Python: StopIteration exception and list comprehensionsParand2009-07-09T23:25:05Z2009-07-09T23:25:05ZThanks Ayman. It seems like list comprehensions need to be updated to deal with StopIteration, no? It appears "for" 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#1106598Comment by Parand on Django: Access model as dictionaryParand2009-07-09T21:53:24Z2009-07-09T21:53:24ZNice, that's even more obvious.http://stackoverflow.com/questions/1022054/minimal-overhead-distributed-event-logging-library-framework/1022114#1022114Comment by Parand on Minimal overhead distributed event logging library/framework?Parand2009-06-20T17:58:54Z2009-06-20T17:58:54ZThanks 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.http://stackoverflow.com/questions/1022054/minimal-overhead-distributed-event-logging-library-framework/1022063#1022063Comment by Parand on Minimal overhead distributed event logging library/framework?Parand2009-06-20T17:27:49Z2009-06-20T17:27:49ZGood point, updated question with language and infrastructure info.
Does Log4J support structured data? I've only used it with plain text messages, but I suppose we could throw JSON in there and be done.http://stackoverflow.com/questions/373406/secure-sandboxable-user-exposed-programming-language-environmentComment by Parand on Secure, sandboxable user exposed programming language / environment?Parand2009-06-04T16:23:35Z2009-06-04T16:23:35ZBrian, I didn't end up with a working solution. PyPy sandbox (<a href="http://codespeak.net/pypy/dist/pypy/doc/sandbox.html" rel="nofollow">codespeak.net/pypy/dist/…</a>) looked promising, as did one of the server side javascript frameworks (I believe it was Rhino), but I didn't get to the actual implementation so I don't know how well either work.