User Sam Corder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T01:21:44Zhttp://stackoverflow.com/feeds/user/2351http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1604025/document-based-database-for-net/1690853#16908531Answer by Sam Corder for Document based database for .NETSam Corder2009-11-06T22:16:13Z2009-11-06T22:16:13Z<p>I'm the principle author behind the .Net driver for Mongo. There isn't currently a ORM like mapper for it yet. Instead it works on simple documents that are the equivalent of a dictionary. It wouldn't be hard to use reflection to iterate over the fields in a document and assign them to properties on an object. I've written a simple thing like that for LDAP results in the past. You don't have to worry about sql injection with Mongo as there really isn't a query language that gets parsed. All drivers talk to Mongo in its native tongue. There is some potential if you dynamically generate javascript and send it to the DB but the need for that should mostly be rare. If you have any questions about using the driver feel free to post them to the Google Group or send a message through GitHub.</p>
http://stackoverflow.com/questions/212941/using-django-rest-interface6Using django-rest-interfaceSam Corder2008-10-17T16:53:23Z2009-10-02T09:46:08Z
<p>I have a django application that I'd like to add some rest interfaces to. I've seen <a href="http://code.google.com/p/django-rest-interface/" rel="nofollow">http://code.google.com/p/django-rest-interface/</a> but it seems to be pretty simplistic. For instance it doesn't seem to have a way of enforcing security. How would I go about limiting what people can view and manipulate through the rest interface? Normally I'd put this kind of logic in my views. Is this the right place or should I be moving some more logic down into the model? Alternatively is there a better library out there or do I need to roll my own?</p>
http://stackoverflow.com/questions/853265/databases-using-json-as-storage-transport-format/1189596#11895964Answer by Sam Corder for Databases using JSON as storage/transport formatSam Corder2009-07-27T17:42:25Z2009-07-27T17:42:25Z<p>MongoDb is the one that uses a binary JSON storage format. I don't know if there is another that is document oriented. Most of the others are key value stores and can only retrieve an object based on one key.</p>
http://stackoverflow.com/questions/557199/converting-a-database-driven-non-oo-python-script-into-a-non-database-driven-o/558822#5588221Answer by Sam Corder for Converting a database-driven (non-OO) python script into a non-database driven, OO-script.Sam Corder2009-02-17T21:32:03Z2009-02-17T21:32:03Z<p>Here are a couple points for you to consider. If your data is large reading it all into memory may be wasteful. If you need random access and not just sequential access to your data then you'll either have to scan the at most the entire file each time or read that table into an indexed memory structure like a dictionary. A list will still require some kind of scan (straight iteration or binary search if sorted). With that said, if you don't require some of the features of a DB then don't use one but if you just think MySQL is too heavy then +1 on the Sqlite suggestion from earlier. It gives you most of the features you'd want while using a database without the concurrency overhead.</p>
http://stackoverflow.com/questions/517349/binaryfields-in-django-models/517632#5176322Answer by Sam Corder for BinaryFields in Django ModelsSam Corder2009-02-05T19:52:58Z2009-02-05T19:52:58Z<p>You could also write your own custom <a href="http://docs.djangoproject.com/en/dev/topics/db/managers/#topics-db-managers" rel="nofollow">Model Manager</a> that does the escaping and unescaping for you.</p>
http://stackoverflow.com/questions/507795/can-i-use-a-database-view-as-a-model-in-django/513892#5138920Answer by Sam Corder for can i use a database view as a model in Django?Sam Corder2009-02-04T23:32:29Z2009-02-04T23:32:29Z<p>Is it possible to do what you want through <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#id4" rel="nofollow">model inheritance</a>? </p>
http://stackoverflow.com/questions/513806/how-to-distribute-script-using-gdata-python-client/513829#5138292Answer by Sam Corder for How to distribute script using gdata-python-client?Sam Corder2009-02-04T23:16:32Z2009-02-04T23:16:32Z<p>Move the variables into a separate module and replace your values with dummy values. Make sure you trap for an invalid key and provide instructions on how to obtain a key and where to place it. In your code you can just import the values from that module.</p>
<pre><code>import gdata_api_key
print gdata_api_key.key_value
</code></pre>
http://stackoverflow.com/questions/512893/memory-use-in-large-data-structures-manipulation-processing/512931#5129313Answer by Sam Corder for memory use in large data-structures manipulation/processingSam Corder2009-02-04T19:32:48Z2009-02-04T19:32:48Z<p>Don't read the entire 100 meg file in at a time. Use streams to process a little bit at a time. Check out this blog post that talks about handling large csv and xml files. <a href="http://lethain.com/entry/2009/jan/22/handling-very-large-csv-and-xml-files-in-python/" rel="nofollow">http://lethain.com/entry/2009/jan/22/handling-very-large-csv-and-xml-files-in-python/</a></p>
<p>Here is a sample of the code from the article.</p>
<pre><code>from __future__ import with_statement # for python 2.5
with open('data.in','r') as fin:
with open('data.out','w') as fout:
for line in fin:
fout.write(','.join(line.split(' ')))
</code></pre>
http://stackoverflow.com/questions/451078/generating-a-lot-of-static-html2Generating a lot of static htmlSam Corder2009-01-16T16:41:49Z2009-01-17T20:28:55Z
<p>I have a process that will need to generate a lot of static html from a set of data. The html is relatively complex and I want the maintenance to be fairly simple so I don't want to embed much if any html in program code. At my company the blessed tool set is .net or php. My initial thought was to embed the asp.net compiler into the batch program and feed a generated page object the data it would need before rendering. The rendered output along with data would then be saved to disk. Does this sound feasible and should it be done? Another suggestion was to write a batch php script that wrote its output to the files. This sounds simpler but the skill set of the developers that will maintain the program aren't so strong in php. What other more simpler and elegant ways are there to render a reasonable amount of somewhat complicated html ahead of time?</p>
http://stackoverflow.com/questions/373687/django-authentication-from-net-using-httpwebrequest-and-httpwebresponse-via-http/376324#3763241Answer by Sam Corder for Django Authentication from .NET using HttpWebRequest and HttpWebResponse via HTTP POSTSam Corder2008-12-17T22:45:38Z2008-12-17T22:45:38Z<p>If you aren't doing any session sharing between the two sites and the .Net site has access to the Django app's DB you could authenticate straight against the db. <a href="http://stackoverflow.com/questions/269713/using-python-to-authenticate-against-raw-username-hash-salt-in-db-created-by-as">This</a> question is about how to go from Python to .Net but it should help you out when your hashes don't exactly match up.</p>
http://stackoverflow.com/questions/374760/are-there-any-plans-to-officially-support-django-with-iis/376259#3762590Answer by Sam Corder for Are there any plans to officially support Django with IIS?Sam Corder2008-12-17T22:22:43Z2008-12-17T22:22:43Z<p>You should be able to use the FastCGI isapi developed by MS. It works on 6 but has better integration on 7. Disclaimer: I haven't tried it with Django.</p>
http://stackoverflow.com/questions/350799/how-does-django-know-the-order-to-render-form-fields/350817#3508170Answer by Sam Corder for How does Django Know the Order to Render Form Fields?Sam Corder2008-12-08T20:41:55Z2008-12-08T20:41:55Z<p>It has to do with the meta class that is used in defining the form class. I think it keeps an internal list of the fields and if you insert into the middle of the list it might work. It has been a while since I looked at that code.</p>
http://stackoverflow.com/questions/349564/help-needed-with-lighttpd-and-apache-cofiguration-with-django/350802#3508020Answer by Sam Corder for help needed with Lighttpd and Apache cofiguration with DjangoSam Corder2008-12-08T20:39:36Z2008-12-08T20:39:36Z<p>The simplest answer is that the user uploads to a shared directory that both web servers can access. Then it is available instantly. If you are using unix (sounds like it) then NFS is a possible solution. If you think your site will scale to multiple servers a la flickr then using rsync to push to multiple edge servers and possibly even implementing a sharding scheme is another solution. </p>
<p>Just be careful. There are a lot of security concerns that depending on your app you have to consider. </p>
<p>If all files go to a publicly accessible directory it could be possible for users to guess the names of other peoples files and download them. In that case you'll want to serve them from Django with a thin layer of security on top.</p>
<p>Never trust your users! Verify that what they upload is in a certain allowable set. Under no circumstances should you allow them to upload whatever they want to. Unless of course your users are a trusted few. Even then you should do some checks. They probably shouldn't be uploading .php files for one. The last thing you want to give them is the ability to run arbitrary scripts on your server. At least configure the directory to just serve up files and not execute anything.</p>
<p>Good luck</p>
http://stackoverflow.com/questions/310224/how-do-you-compile-wxpython-under-cygwin/310365#3103653Answer by Sam Corder for How do you compile wxPython under cygwin?Sam Corder2008-11-21T22:04:01Z2008-11-21T22:04:01Z<p>You would need a full working X environment to get it to work. It would be much easier to just use Python and wxPython under plain vanilla Windows. Do you have a special case?</p>
http://stackoverflow.com/questions/308605/adding-rest-to-django-poll/308885#3088852Answer by Sam Corder for Adding REST to Django -- PollSam Corder2008-11-21T14:07:36Z2008-11-21T14:07:36Z<p>Scrap the Django REST api and come up with your own open source project that others can contribute to. I would be willing to contribute. I have some code that is based on the forms api to do REST.</p>
http://stackoverflow.com/questions/295670/what-is-a-partial-class/296801#2968010Answer by Sam Corder for What is a partial class?Sam Corder2008-11-17T20:32:03Z2008-11-17T20:32:03Z<p>Python also has meta classes but that is more like a template class than a partial class. A good example of meta class usage is the Django ORM. All of your table models inherit from a base model class which also gets functionality included from a meta class. It is a pretty cool concept that enables an active record like pattern (is it full active record?).</p>
http://stackoverflow.com/questions/296584/c-create-object-instance-without-invoking-constructor/296769#2967690Answer by Sam Corder for C#: Create object instance without invoking constructor?Sam Corder2008-11-17T20:22:16Z2008-11-17T20:22:16Z<p>You have to call a constructor to create an object. If there are none available to your liking perhaps you could use a byte code rewriting library like the Mono project's Cecil. It works on Windows as well as Linux. From some of the demos I saw, it looked pretty cool. You can change the protection levels of methods and all sorts of crazy stuff.</p>
http://stackoverflow.com/questions/288546/connect-to-exchange-mailbox-with-python/291589#2915891Answer by Sam Corder for Connect to Exchange mailbox with PythonSam Corder2008-11-14T22:03:54Z2008-11-14T22:40:47Z<p>You'll have to find a way to run the process as that particular user.</p>
<p><a href="http://blogs.msdn.com/mstehle/archive/2007/01/03/myth-cdo-1-21-s-session-logon-parameter-profilepassword-actually-does-something.aspx" rel="nofollow">See this.</a></p>
<p>I think <a href="http://docs.activestate.com/activepython/2.5/pywin32/win32process__CreateProcessAsUser_meth.html" rel="nofollow">pywin32.CreateProcessAsUser</a> is the start of the path you need to go down. One last edit. The logged on user handle is obtained from using the <a href="http://docs.activestate.com/activepython/2.5/pywin32/win32security__LogonUser_meth.html" rel="nofollow">win32security.LogonUser</a> method</p>
http://stackoverflow.com/questions/286614/whats-the-best-way-to-transfer-data-from-python-to-another-application-in-window/287751#2877511Answer by Sam Corder for What's the best way to transfer data from python to another application in windows?Sam Corder2008-11-13T18:18:12Z2008-11-13T18:18:12Z<p>+1 on the named pipes but I would also like to add that from your comments it seems that your application is very chatty. Every time you make a remote call no matter how fast the underlying transport is you have a fixed cost of marshaling the data and making a connection. You can save a huge amount of overhead if you change the addpoint(lat, long) method to a addpoints(point_array) method. The idea is similar to why we have database connection pools and http-keep-alive connections. The less actual calls you make the better. Your existing COM solution may even be good enough if you can just limit the number of calls you make over it.</p>
http://stackoverflow.com/questions/285289/exit-codes-in-python/285304#2853043Answer by Sam Corder for exit codes in pythonSam Corder2008-11-12T20:46:28Z2008-11-12T20:46:28Z<p>Exit codes of 0 usually mean, "nothing wrong here." However if the programmer of the script didn't follow convention you may have to consult the source to see what it means. Usually a non-zero value is returned as an error code.</p>
http://stackoverflow.com/questions/284743/what-is-the-prefered-method-for-a-wsdl-for-rest-webservice/284961#2849615Answer by Sam Corder for What is the prefered method for a 'WSDL' for REST webservice?Sam Corder2008-11-12T18:58:20Z2008-11-12T18:58:20Z<p>REST really only uses the HTTP verbs (GET,PUT,POST,DELETE) on a resource. All operations on a resource are supposed to be represented that way. POST is used as a catch all for when you can't express your business logic in a way that fits into the other three. That is why there isn't really a WSDL for a REST service since you only ever have 4 methods on the resource. Note that the Zend Framework REST library isn't really RESTful and is more of a plain old XML (POX) service.</p>
http://stackoverflow.com/questions/283300/how-to-combine-a-template-from-other-processed-templates/284940#2849400Answer by Sam Corder for how to combine a template from other processed templates?Sam Corder2008-11-12T18:50:55Z2008-11-12T18:50:55Z<p>I did this by writing custom template tags for each application I wanted to include. At first my template tags just passed back hard coded html. Later I found that the tags could load their own template fragments. There was also a snippet somewhere that was a generic latest content tag that worked pretty well.</p>
http://stackoverflow.com/questions/284741/processing-chunked-encoded-http-post-requests-in-python-or-generic-cgi-under-apa/284857#2848570Answer by Sam Corder for Processing chunked encoded HTTP POST requests in python (or generic CGI under apache)Sam Corder2008-11-12T18:29:05Z2008-11-12T18:29:05Z<p>Maybe it is a configuration issue? Django can be fronted with Apache by mod_python, WSGI and FastCGI and it can accept file uploads. </p>
http://stackoverflow.com/questions/284043/outputting-data-from-unit-test-in-python/284283#2842830Answer by Sam Corder for Outputting data from unit test in pythonSam Corder2008-11-12T15:25:57Z2008-11-12T15:25:57Z<p>How about catching the exception that gets generated from the assertion failure? In your catch block you could output the data however you wanted to wherever. Then when you were done you could re-throw the exception. The test runner probably wouldn't know the difference. </p>
<p>Disclaimer: I haven't tried this with python's unit test framework but have with other unit test frameworks.</p>
http://stackoverflow.com/questions/280075/atomic-operations-in-django/281090#2810908Answer by Sam Corder for Atomic operations in Django?Sam Corder2008-11-11T14:51:14Z2008-11-11T14:51:14Z<p>If you truly want the counter to be accurate you could use a transaction but the amount of concurrency required will really drag your application and database down under any significant load. Instead think of going with a more messaging style approach and just keep dumping count records into a table for each visit where you'd want to increment the counter. Then when you want the total number of visits do a count on the visits table. You could also have a background process that ran any number of times a day that would sum the visits and then store that in the parent table. To save on space it would also delete any records from the child visits table that it summed up. You'll cut down on your concurrency costs a huge amount if you don't have multiple agents vying for the same resources (the counter).</p>
http://stackoverflow.com/questions/249064/i-need-a-really-good-reason-to-use-python/251632#2516321Answer by Sam Corder for I need a really good reason to use Python.Sam Corder2008-10-30T20:24:07Z2008-10-30T20:24:07Z<p>Python got a good start in the Java world as Jython for unit testing. In fact many Java people started using it first that way. Its dynamic scripting nature makes it a great fit for unit tests. Just yesterday I was wishing I could use it or something like it for the unit tests I was writing for a VB.Net project. I'd have to say that it isn't so much about the individual language IronRuby or IronPython as it is about the style of development that they enable. You can write static language like code in either but you don't fully reap the benefits until you can start to think dynamically. Once you grasp those concepts you'll start to slowly change the way you code and your projects will require less classes and less code to implement. Testing, particularly unit tests will become a must since you give up the warm blanket known as a compiler with type safety checks for other efficiencies.</p>
http://stackoverflow.com/questions/251482/casting-in-vb-net/251558#2515582Answer by Sam Corder for Casting in VB.NetSam Corder2008-10-30T20:03:36Z2008-10-30T20:03:36Z<p>Maybe instead of dynamically casting something (which doesn't seem to work) you could use reflection instead. It is easy enough to get and invoke specific methods or properties.</p>
<pre><code>Dim t As Type = testObject.GetType()
Dim prop As PropertyInfo = t.GetProperty("propertyName")
Dim gmi As MethodInfo = prop.GetGetMethod()
gmi.Invoke(testObject, Nothing)
</code></pre>
<p>It isn't pretty but you could do some of that in one line instead of so many.</p>
http://stackoverflow.com/questions/215267/how-do-you-fix-a-trac-installation-that-begins-giving-errors-relating-to-pythone/219233#2192330Answer by Sam Corder for How do you fix a Trac installation that begins giving errors relating to PYTHON_EGG_CACHE?Sam Corder2008-10-20T17:28:49Z2008-10-20T17:28:49Z<p>I had the same problem. In my case the directory wasn't there so I created and chown'ed it over to the apache user (apache on my centos 4.3 box). Then made sure it had read-write permissions on the directory. You could get by with giving rw rights to the directory if the group that owns the directory contains the apache user. A simple ps aux|grep httpd should show you what account your server is running under if you don't know it. If you have trouble finding the directory remember the -a on the ls command since it is a "hidden" directory.</p>
http://stackoverflow.com/questions/213455/python-threadsafe-object-cache/213768#2137682Answer by Sam Corder for python threadsafe object cacheSam Corder2008-10-17T20:39:48Z2008-10-17T20:39:48Z<p>Thread per request is often a bad idea. If your server experiences huge spikes in load it will take the box to its knees. Consider using a thread pool that can grow to a limited size during peak usage and shrink to a smaller size when load is light.</p>
http://stackoverflow.com/questions/213483/a-good-multithreaded-python-webserver/213742#2137422Answer by Sam Corder for A good multithreaded python webserver?Sam Corder2008-10-17T20:34:06Z2008-10-17T20:34:06Z<p>Its hard to give a definitive answer without knowing what kind of site you are working on and what kind of load you are expecting. Sub second performance may be a serious requirement or it may not. If you really need to save that last millisecond then you absolutely need to keep your arrays in memory. However as others have suggested it is more than likely that you don't and could get by with something else. Your usage pattern of the data in the array may affect what kinds of choices you make. You probably don't need access to the entire set of data from the array all at once so you could break your data up into smaller chunks and put those chunks in the cache instead of the one big lump. Depending on how often your array data needs to get updated you might make a choice between memcached, local db (berkley, sqlite, small mysql installation, etc) or a remote db. I'd say memcached for fairly frequent updates. A local db for something in the frequency of hourly and remote for the frequency of daily. One thing to consider also is what happens after a cache miss. If 50 clients all of a sudden get a cache miss and all of them at the same time decide to start regenerating those expensive arrays your box(es) will quickly be reduced to 8086's. So you have to take in to consideration how you will handle that. Many articles out there cover how to recover from cache misses. Hope this is helpful.</p>
http://stackoverflow.com/questions/1604025/document-based-database-for-net/1690853#1690853Comment by Sam Corder on Document based database for .NETSam Corder2009-11-18T15:43:06Z2009-11-18T15:43:06ZSend me a message on GitHub with the code you are trying to do or post it to the mongodb-user Google group.http://stackoverflow.com/questions/1604025/document-based-database-for-net/1690853#1690853Comment by Sam Corder on Document based database for .NETSam Corder2009-11-16T14:50:51Z2009-11-16T14:50:51ZEmbedded documents are just attributes on a containing document. Here is a one liner. You can certainly separate it out on multiple lines if need be.
Document doc = new Document().Append("embeddedDoc", new Document().Append("attr1","val1"));http://stackoverflow.com/questions/556342/python-code-to-find-if-x-is-following-y-on-twitter-more-pythonic-way-please/556574#556574Comment by Sam Corder on Python code to find if x is following y on twitter. More Pythonic way pleaseSam Corder2009-02-17T21:41:18Z2009-02-17T21:41:18ZKonrad gave better tips for being pythonic. This answer is more a tip about using an api.http://stackoverflow.com/questions/512893/memory-use-in-large-data-structures-manipulation-processing/512931#512931Comment by Sam Corder on memory use in large data-structures manipulation/processingSam Corder2009-02-05T03:31:22Z2009-02-05T03:31:22Z@Torsten Marek: Very cool. Thanks for the correction.http://stackoverflow.com/questions/507795/can-i-use-a-database-view-as-a-model-in-django/508013#508013Comment by Sam Corder on can i use a database view as a model in Django?Sam Corder2009-02-04T23:28:34Z2009-02-04T23:28:34ZAny idea how it would handle calling the save method on it? Some dbms's have updatable views.http://stackoverflow.com/questions/512893/memory-use-in-large-data-structures-manipulation-processing/512931#512931Comment by Sam Corder on memory use in large data-structures manipulation/processingSam Corder2009-02-04T23:20:52Z2009-02-04T23:20:52ZJust to add. If you have two objects that refer to each other they will never be garbage collected unless one of them lets go of the reference to the other. Check for this kind of circular reference if you see your memory usage ballooning and thing you the objects should be out of scope.http://stackoverflow.com/questions/512893/memory-use-in-large-data-structures-manipulation-processing/512931#512931Comment by Sam Corder on memory use in large data-structures manipulation/processingSam Corder2009-02-04T23:11:02Z2009-02-04T23:11:02ZOnce you have parsed a detail line and done your reduction calculations make sure you aren't hanging on to any of the objects created from parsing the details. Python GC is reference based. As long as there is a reference to an object it won't get GC'ed.http://stackoverflow.com/questions/451078/generating-a-lot-of-static-htmlComment by Sam Corder on Generating a lot of static htmlSam Corder2009-01-16T20:16:53Z2009-01-16T20:16:53ZThe pages will basically be a regurgitation of the database tables with some column totals. More or less a report with some nice UI features.http://stackoverflow.com/questions/310224/how-do-you-compile-wxpython-under-cygwin/310365#310365Comment by Sam Corder on How do you compile wxPython under cygwin?Sam Corder2008-11-24T16:10:48Z2008-11-24T16:10:48ZThe gui environment for Python under Cygwin would be X11.http://stackoverflow.com/questions/290456/using-python-to-build-web-applications/290547#290547Comment by Sam Corder on Using python to build web applicationsSam Corder2008-11-14T21:52:44Z2008-11-14T21:52:44ZPHP is easier to bang out that first 80% of your site. The last 20 is harder and maintenance is terrible. If you take the time to do it right with PHP in the beginning (framework) it takes as much time as a Python web framework.http://stackoverflow.com/questions/291467/search-directory-in-svn-for-files-with-specific-file-extension-and-copy-to-anothe/291477#291477Comment by Sam Corder on Search directory in SVN for files with specific file extension and copy to another folder?Sam Corder2008-11-14T21:48:08Z2008-11-14T21:48:08ZIf the size of the repository is large and the desired files small then it makes more sense to use the python bindings. It doesn't sound like he'll be doing anything destructive to the repo.http://stackoverflow.com/questions/286486/accounting-for-a-changing-path/286914#286914Comment by Sam Corder on Accounting for a changing pathSam Corder2008-11-13T18:29:31Z2008-11-13T18:29:31ZJust curious why are you using a sub process? Does the code take so long to run that it locks up your gui?http://stackoverflow.com/questions/286150/how-to-split-a-web-address/286194#286194Comment by Sam Corder on How to split a web addressSam Corder2008-11-13T18:22:03Z2008-11-13T18:22:03ZGotta love that batteries included philosophy. I thought regex at first b/c I didn't know about that battery was included. Thanks.http://stackoverflow.com/questions/280075/atomic-operations-in-django/281090#281090Comment by Sam Corder on Atomic operations in Django?Sam Corder2008-11-11T19:35:18Z2008-11-11T19:35:18ZDepending on how stale the counts can be allowed to be, you could have a background process summing them up every so often. Then you would not be doing the aggregation per request.http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python/279165#279165Comment by Sam Corder on Can anyone recommend a decent FOSS PDF generator for Python?Sam Corder2008-11-10T21:31:42Z2008-11-10T21:31:42ZThirded? A "report" with just some text and images on it is very simple to layout. Also getting to the canvas and drawing lines is pretty simple too.