User Zain - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T22:13:01Zhttp://stackoverflow.com/feeds/user/836http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1042565/the-data-structure-for-the-order-property-of-an-object-in-a-list0The data structure for the "order" property of an object in a listZain2009-06-25T07:21:45Z2009-06-25T08:01:03Z
<p>I have a list of ordered objects stored in the database and accessed through an ORM (specifically, Django's ORM). The list is sorted arbitrarily by the user and I need some way to keep track of it. To that end, each object has an "order" property that specifies its order in relation to the other objects.</p>
<p>Any data structure I use to sort on this order field will have to be recreated upon the request, so creation has to be cheap. I will often use comparisons between multiple objects. And insertions can't require me to update every single row in the database. </p>
<p>What data structure should I use?</p>
http://stackoverflow.com/questions/680525/is-there-a-limit-on-the-size-of-the-variables-in-a-custom-url-handler0Is there a limit on the size of the variables in a custom URL handler?Zain2009-03-25T07:15:53Z2009-04-22T19:36:24Z
<p>I need a way to transfer a bunch of information (1-10kb) from an email in the Mail application to my iPhone app.</p>
<p>I was thinking I could craft a custom URL in the body of the email that, when clicked, would transfer the information through a custom URL handler to my app.</p>
<p>However, it's a lot of data. Can I pass that much data in the custom URL handler? e.g. myapp://load?var1=[lotsofdata]&var2=[lotsofdata]</p>
<p>Or, is there some better way I can transfer info from the Mail app to my app?</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/6695#669523Answer by Zain for What Hosting Service is best for Django applications?Zain2008-08-09T08:13:45Z2008-08-09T08:13:45Z<p>Getting a slice from <a href="http://www.slicehost.com/" rel="nofollow">slicehost</a> is probably your best bet. At $$20/mo they are more expensive than shared hosting plans but nothing beats root access on your own VPS. You can take your pick of whatever webserver, version of Django, and custom software that you want. </p>
<p>They also have a great AJAX-y web control panel and excellent support. You'll be amazed at the difference, especially if you're moving up from a terrible oversold shared hosting plan.</p>http://stackoverflow.com/questions/1042565/the-data-structure-for-the-order-property-of-an-object-in-a-listComment by Zain on The data structure for the "order" property of an object in a listZain2009-06-25T08:04:47Z2009-06-25T08:04:47ZYes, the sort order will be stored in the DB for each object (1 object == 1 row in the db). http://stackoverflow.com/questions/1042565/the-data-structure-for-the-order-property-of-an-object-in-a-list/1042603#1042603Comment by Zain on The data structure for the "order" property of an object in a listZain2009-06-25T07:51:48Z2009-06-25T07:51:48ZThanks, stefanB. I added some more info to my post. Sorry, still new here :)http://stackoverflow.com/questions/1042565/the-data-structure-for-the-order-property-of-an-object-in-a-list/1042573#1042573Comment by Zain on The data structure for the "order" property of an object in a listZain2009-06-25T07:30:21Z2009-06-25T07:30:21ZErr -- or rather, they <i>would</i> be linear. Typo. http://stackoverflow.com/questions/1042565/the-data-structure-for-the-order-property-of-an-object-in-a-list/1042573#1042573Comment by Zain on The data structure for the "order" property of an object in a listZain2009-06-25T07:25:55Z2009-06-25T07:25:55ZComparisons wouldn't be linear then. I'd have to potentially scan through the remainder of the list to figure out if a > b.