User uswaretech - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T23:06:28Zhttp://stackoverflow.com/feeds/user/121793http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1920053/what-is-so-bad-with-threadlocals2What is so bad with threadlocalsuswaretech2009-12-17T07:29:08Z2009-12-17T20:53:51Z
<p>Everybody in Django world seems to hate threadlocals(<a href="http://code.djangoproject.com/ticket/4280" rel="nofollow">http://code.djangoproject.com/ticket/4280</a>, <a href="http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser" rel="nofollow">http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser</a>). I read Armin's essay on this(<a href="http://lucumr.pocoo.org/2006/7/10/why-i-cant-stand-threadlocal-and-others" rel="nofollow">http://lucumr.pocoo.org/2006/7/10/why-i-cant-stand-threadlocal-and-others</a>), but most of it hinges on threadlocals is bad because it is inelegant. </p>
<p>I have a scenario where theadlocals will make things significantly easier. (I have a app where people will have subdomains, so all the models need to have access to the current subdomain, and passing them from requests is not worth it, if the only problem with threadlocals is that they are inelegant, or make for brittle code.)</p>
<p>Also a lot of Java frameworks seem to be using threadlocals a lot, so how is their case different from Python/Django 's?</p>
http://stackoverflow.com/questions/1920250/bind-shorter-var-names-in-django-template/1920380#1920380-1Answer by uswaretech for Bind shorter var names in django templateuswaretech2009-12-17T09:05:42Z2009-12-17T09:05:42Z<p><code>{% with foo.bar.baz.quux3 as quux3 %}</code></p>
http://stackoverflow.com/questions/1897223/java-perspective-is-not-visible-in-eclipse0Java perspective is not visible in eclipseuswaretech2009-12-13T18:13:30Z2009-12-13T21:06:12Z
<p>I installed eclipse on a new unubtu install, via the package manager. I have Galileo. I copied my home directory from an older machine, and tried to open that workspace. Now I dont see any java perspective.</p>
<p>(Possibly, all the info above is not relevant, but I just wanted to add any possible info, as this a clean install of Eclipse via package manager, so I cant think of any other non standard thing I might have done.)</p>
http://stackoverflow.com/questions/1894493/tips-on-using-git-with-svn-in-presence-of-a-large-number-of-svn-externals0Tips on using Git with svn in presence of a large number of svn externalsuswaretech2009-12-12T19:47:20Z2009-12-12T21:03:21Z
<p>I have a workflow(on svn) which I am trying to replicate with git, but am unable to.</p>
<p>I have a large number of Django apps (which are plugged together to form a form a full project) Some of these are in one large repo and others are in smaller repos.</p>
<p>My layout looks something like,</p>
<pre><code>app1 -> repo1/app1
app2 -> repo2/app2
app3 -> repo1/appp3
templates/app1 -> repo1/templates/app1
templates/app2 -> repo2/app2/templates/app2
templates/app3 -> repo1/templates/appp3
site_media/app1 -> repo1/media/app1
site_media/app2 -> repo2/static/app2
site_media/app3 -> repo1/media/appp3
</code></pre>
<p>So I work in the correct app repos, and when we want to update any given project, we just do a svn up and svn exterbal takes care of the rest. How do I get this workflow in Git.</p>
http://stackoverflow.com/questions/1886660/how-to-do-a-string-replace-in-a-urlencoded-string1How to do a string replace in a urlencoded stringuswaretech2009-12-11T08:42:10Z2009-12-11T11:43:54Z
<p>I have a string like <code>x = "http://query.yahooapis.com/v1/public/yql?q=select%20owner%2Curls%20from%20flickr.photos.info%20where%20photo_id%3D'%s'&format=json"</code></p>
<p>If I do <code>x % 10</code> that fails as there are <code>%20f</code> etc which are being treated as format strings, so I have to do a string conactination. How can I use normal string replacements here.?</p>
http://stackoverflow.com/questions/1874631/how-to-ask-vim-to-get-into-sudo-mode-after-you-have-opened-it-normally6How to ask vim to get into sudo mode after you have opened it normally [closed]uswaretech2009-12-09T15:25:03Z2009-12-09T17:02:34Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1005/getting-root-permissions-on-a-file-inside-of-vi">Getting root permissions on a file inside of vi?</a> </p>
</blockquote>
<p>Something which hapens to me all the time.</p>
<ol>
<li>Open file in vim. Edit.</li>
<li>Try to save</li>
<li>Superuser only.</li>
<li><code>sudo vim file</code>, repeat changes, save.</li>
</ol>
<p>How can I save it with sudo in step 1.</p>
http://stackoverflow.com/questions/1865250/what-does-first-argument-to-type-do1What does first argument to `type` do?uswaretech2009-12-08T07:31:46Z2009-12-08T09:11:10Z
<p>Some code.</p>
<pre><code>In [1]: A = type('B', (), {})
In [2]: a = A()
In [3]: b = B()
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
/home/shabda/<ipython console> in <module>()
NameError: name 'B' is not defined
</code></pre>
<p>What does first argument to <code>type</code> doing here?</p>
http://stackoverflow.com/questions/1865262/what-languages-other-than-python-have-an-explicit-self2What languages other than Python have an explicit self?uswaretech2009-12-08T07:33:23Z2009-12-08T08:27:04Z
<p>Don't have anything to add so, What languages other than Python have an explicit self? </p>
<p>[Edit]</p>
<p>Obviously all OO languages will have a this or a self for current instance. What I want to know is does any other ask you to explicitly pass this or self as all instance method arguments?</p>
http://stackoverflow.com/questions/1839927/registered-models-do-not-show-up-in-admin1Registered models do not show up in adminuswaretech2009-12-03T13:40:31Z2009-12-06T13:46:55Z
<p>I added a model to admin via admin.site.register, and it does not show up in admin. Sice admin is so "It just works", I have no idea of how to debug this. POinters?</p>
http://stackoverflow.com/questions/1839658/how-to-enforce-account-based-separation-in-django0How to enforce account based separation in Djangouswaretech2009-12-03T12:44:24Z2009-12-04T20:09:17Z
<p>I have a Django app which has a single-account model. We are converting this to be multi-account, so almost every model will have a <code>ForeignKey(Account)</code>.</p>
<p>What is the easiest way to make sure that each <code>Account</code> (each account is in its own subdomain) can only access its own data? We have a middleware that populates the subdomain, and the current account on each request.</p>
<p>We can do this the hard way, by adding a <code>filter(...., account = request.account)</code> in all of our views. This is not desirable as,</p>
<ol>
<li><code>filter(...., account = request.account)</code> will be added to <strong>all</strong> of the queries, making this non-dry, repetative and error-prone.</li>
<li>Bigger risk is if there is a missing filter, anywhere it is security risk.</li>
</ol>
http://stackoverflow.com/questions/1815080/easyinstall-pil-fails0easy_install PIL fails uswaretech2009-11-29T09:18:24Z2009-11-29T09:27:47Z
<p>I am trying to setup a dev environment on a new laptop, I am trying <code>sudo easy_install PIL</code> after seting up setuptools and python etc, I get this error. <code>Setup script exited with error: command 'gcc' failed with exit status 1</code></p>
<p>I have gcc and build_essentials installed, on Ubuntu Karmic. Full traceback is at <a href="http://dpaste.de/fHiW/" rel="nofollow">http://dpaste.de/fHiW/</a></p>
http://stackoverflow.com/questions/1796960/django-formwizard-is-there-a-way-to-get-more-than-one-form-on-a-single-page0Django formwizard - IS there a way to get more than one Form on a single pageuswaretech2009-11-25T13:38:40Z2009-11-25T13:38:40Z
<p>I have a number of forms, say 5, I want to display them as page 1[ 1,2,3], page 2 [4], page3[5], as in one page having multiple forms. Is thsi possible with formwizard?</p>
http://stackoverflow.com/questions/1795962/jquery-form-validation-available-options1Jquery form validation - available optionsuswaretech2009-11-25T10:18:43Z2009-11-25T11:50:41Z
<p>I am using form validation from <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">http://docs.jquery.com/Plugins/Validation</a>. Here you set the form validation declaratively by setting the class on the form element.</p>
<p>I cant find the full list of all the classnames which fire validation and would like to get them.</p>
http://stackoverflow.com/questions/1778846/populating-values-in-module-namespace1Populating values in module namespaceuswaretech2009-11-22T14:30:08Z2009-11-22T19:39:04Z
<p>I have a python module.</p>
<p>I want to populate some values to it at runtime, how do I do it.</p>
<p>Eg. I have a list,</p>
<p>['A', 'B', 'C']</p>
<p>I am creating there classes with these names, and want them to available as if I created them normally</p>
<pre><code>for el in ['A', 'B', 'C']:
type(el, (object,), {})
</code></pre>
http://stackoverflow.com/questions/1770712/metaclass-not-being-called-in-subclasses3Metaclass not being called in subclassesuswaretech2009-11-20T14:18:55Z2009-11-21T09:20:40Z
<p>Here is a python session.</p>
<pre><code>>>> class Z(type):
def __new__(cls, name, bases, attrs):
print cls
print name
return type(name, bases, attrs)
...
>>> class Y(object):
__metaclass__ = Z
...
<class '__main__.Z'>
Y
>>> class X(Y):
... pass
...
>>> class W(Y):
... __metaclass__ = Z
...
<class '__main__.Z'>
W
>>>
</code></pre>
<p>After I define class X I expect Z._new__ to be called for it, and to print the two line, which is not happening, (as <strong>metaclass</strong> are inherited?)</p>
http://stackoverflow.com/questions/1774792/does-a-exception-with-just-a-raise-have-any-use4Does a exception with just a raise have any use?uswaretech2009-11-21T07:08:52Z2009-11-21T08:30:13Z
<p>For example, here is some code from django.templates.loader.app_directories.py.[1]</p>
<pre><code>try:
yield safe_join(template_dir, template_name)
except UnicodeDecodeError:
# The template dir name was a bytestring that wasn't valid UTF-8.
raise
</code></pre>
<p>If you catch an exception just to re raise it, what purpose does it serve?</p>
<p>[1] <a href="http://code.djangoproject.com/browser/django/trunk/django/template/loaders/app%5Fdirectories.py" rel="nofollow">http://code.djangoproject.com/browser/django/trunk/django/template/loaders/app%5Fdirectories.py</a></p>
http://stackoverflow.com/questions/1079417/sphinx-templating0Sphinx templatinguswaretech2009-07-03T13:42:37Z2009-11-19T23:06:00Z
<p>I am using <a href="http://sphinx.pocoo.org" rel="nofollow">sphinx</a>. I want to template it. So after reading the docs, what I am trying is, in my conf.py,</p>
<p>I put a line like, </p>
<pre><code>templates_path = ['_templates']
</code></pre>
<p>and I created a file </p>
<pre><code>_templates/page.html
</code></pre>
<p>But this does not override the default template provided by sphinx. What more should I do, and where does this template need to go?</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>Directory structure from the comments:</p>
<pre><code>conf.py
abc.txt
def.txt
makefile
_templates\
page.html
</code></pre>
http://stackoverflow.com/questions/1747022/how-to-kill-headless-x-server-started-via-python1How to kill headless X server started via Python?uswaretech2009-11-17T06:46:46Z2009-11-18T11:41:38Z
<p>I want to get screenshots of a webpage in Python. For this I am using <a href="http://github.com/AdamN/python-webkit2png/" rel="nofollow">http://github.com/AdamN/python-webkit2png/</a> .</p>
<pre><code> newArgs = ["xvfb-run", "--server-args=-screen 0, 640x480x24", sys.argv[0]]
for i in range(1, len(sys.argv)):
if sys.argv[i] not in ["-x", "--xvfb"]:
newArgs.append(sys.argv[i])
logging.debug("Executing %s" % " ".join(newArgs))
os.execvp(newArgs[0], newArgs)
</code></pre>
<p>Basically calls xvfb-run with the correct args. But <code>man xvfb</code> says:</p>
<p><code>Note that the demo X clients used in the above examples will not exit on their own, so they will have to be killed before xvfb-run will exit.</code></p>
<p>So that means that this script will <????> if this whole thing is in a loop, (To get multiple screenshots) unless the X server is killed. How can I do that? </p>
http://stackoverflow.com/questions/1734988/migrating-a-svn-repo-to-git-multiple-app-in-svn-repo-need-to-broken-into-separat2Migrating a svn repo to git. Multiple app in svn repo need to broken into separate git repos.uswaretech2009-11-14T17:44:15Z2009-11-14T17:55:56Z
<p>I have a svn repo with various apps as subdirectory of a single svn repo. That worked because I could have checked out a partial, repo. As I cant do that with git obviously I need multiple repos. I want to keep my commit histories in the git export. What is the simplest way to do this?</p>
http://stackoverflow.com/questions/1728472/i-want-to-start-reading-the-python-source-code-where-should-i-start15I want to start reading the Python source code. Where should I start.uswaretech2009-11-13T10:45:03Z2009-11-14T05:07:13Z
<p>I want to start reading the Python source code.</p>
<p>My experience,</p>
<p>I know Python and Java very well. I know some other languages at various levels of proficiency, but neither C/C+/ particularly well. I studied C in college, but have never professionally programmed in it.</p>
<p>My Reasons for reading this code.</p>
<ol>
<li>Understand how python works under the hood.</li>
<li>Learn C better.</li>
</ol>
<p>1 is more important to me than 2.</p>
<p>how should I go about this?</p>
http://stackoverflow.com/questions/1720097/what-is-the-yahoo-openid-discovery-endpoint1What is the Yahoo openid discovery endpointuswaretech2009-11-12T05:31:08Z2009-11-12T06:18:54Z
<p>It used to be <a href="http://yahoo.com" rel="nofollow">http://yahoo.com</a>, but it is failing for me with DiscoveryFailure in python OpenID library (since today, I wasn't testing this earlier). Also this fails if you try to use the SO login with a yahoo button, so I am thinking it probably changed recently.</p>
http://stackoverflow.com/questions/1054382/how-do-you-write-a-technical-book4How do you write a technical book? [closed]uswaretech2009-06-28T06:21:53Z2009-11-11T20:31:00Z
<p>I want to write a technical book. What is a good way/software to write it?</p>
<p>What is important to me,</p>
<ol>
<li>I want to be editing text, not fighting formating. So no word like systems.</li>
<li>Automatic syntax highlighting.</li>
<li>Templatable.</li>
<li>A way for users to leave feedback on specific parts of the book. Like <a href="http://djangobook.com/" rel="nofollow">Djangobook</a></li>
<li>Not a wiki. (I don't think a wiki is a correct medium to write a book)</li>
</ol>
<p>I use sphinx, sphinx.pocoo.org/intro.html, which is mostly there(everything except 4), but I want to know what other options I have, and what can get me 4.</p>
http://stackoverflow.com/questions/1696195/are-all-httperror-in-python-subclasses-of-ioerror0Are all HttpError in python subclasses of IOErroruswaretech2009-11-08T12:07:51Z2009-11-08T17:11:58Z
<p>In our code we catch IOError and log it before reraising. I am getting a "connection reset by peer", but nothing in the logs. Is "connection reset by peer" a subclass of IOError in python?</p>
<pre><code> .....
File "/usr/lib/python2.5/httplib.py", line 1047, in readline
s = self._read()
File "/usr/lib/python2.5/httplib.py", line 1003, in _read
buf = self._ssl.read(self._bufsize)
error: (104, 'Connection reset by peer')
</code></pre>
http://stackoverflow.com/questions/1674530/django-tests-fail-with-internalerror-no-such-savepoint-db-postgres-passes-on0Django Tests fail with InternalError: no such savepoint. DB: Postgres, passes on mysqluswaretech2009-11-04T15:27:01Z2009-11-04T15:27:01Z
<p>Interestingly it also works on the shell.</p>
<pre><code> [MY code which calls Model.objects.get_or_create(...)]
File "/usr/lib/python2.5/site-packages/django/db/models/manager.py", line 123, in get_or_create
return self.get_query_set().get_or_create(**kwargs)
File "/usr/lib/python2.5/site-packages/django/db/models/query.py", line 308, in get_or_create
transaction.savepoint_rollback(sid)
File "/usr/lib/python2.5/site-packages/django/db/transaction.py", line 199, in savepoint_rollback
connection._savepoint_rollback(sid)
File "/usr/lib/python2.5/site-packages/django/db/backends/__init__.py", line 67, in _savepoint_rollback
self.cursor().execute(self.ops.savepoint_rollback_sql(sid))
InternalError: no such savepoint
</code></pre>
http://stackoverflow.com/questions/1672376/yui-replacements-for-jquery-replacewith-and-jquery-append1YUI replacements for jQuery.replaceWith and jquery.appenduswaretech2009-11-04T08:29:11Z2009-11-04T10:15:31Z
<p>I have some jquery code which I am trying to translate to YUI. I am using YUI 2.8. Using jquery I could have easily replaced a dom element. Is there a good way to use YUI in place of jquery.replaceWith and jquery.append. I tried writing my functions as below, but these can only take text, while I need to pass a rendered dom like. <code><p><a href="">what</a></p></code> (much more complex than this.)</p>
<pre><code>function replaceWith(el_id, text){
//YUI doesn't seem to have a good replacement for $.replaceWith. Writing one to simulate it for my usages.
node_to_replace = YAHOO.util.Dom.get(el_id);
if(node_to_replace){
new_node = document.createTextNode(text);
YAHOO.util.Dom.insertAfter(new_node, node_to_replace);
node_to_replace.innerHTML = ''
}
return node_to_replace
}
function append(el_id, text){
//YUI doesn't seem to have a good replacement for $.append. Writing one to simulate it for my usages.
node_to_replace = YAHOO.util.Dom.get(el_id);
if(node_to_replace){
new_node = document.createTextNode(text);
YAHOO.util.Dom.insertAfter(new_node, node_to_replace);
}
return node_to_replace
}
</code></pre>
http://stackoverflow.com/questions/1668804/what-is-a-good-yui-replacement-for-jquery-live2What is a good yui replacement for jquery.liveuswaretech2009-11-03T17:13:10Z2009-11-03T17:20:47Z
<p>jQuery.live</p>
<p>Added in jQuery 1.3: Binds a handler to an event (like click) for all current - and future - matched element. Can also bind custom events.</p>
<p><a href="http://docs.jquery.com/Events/live" rel="nofollow">http://docs.jquery.com/Events/live</a></p>
<p>Is there a good YUI replacement which can do this?</p>
http://stackoverflow.com/questions/1661275/disable-boto-logging-without-modifying-the-boto-files0Disable boto logging without modifying the boto files.uswaretech2009-11-02T13:15:48Z2009-11-03T12:23:56Z
<p>I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn't seem to help.</p>
<pre><code>import boto
boto.set_file_logger('boto', 'logs/boto.log')
</code></pre>
<p>This says it is possible, <a href="http://developer.amazonwebservices.com/connect/thread.jspa?messageID=52727&#52727" rel="nofollow">http://developer.amazonwebservices.com/connect/thread.jspa?messageID=52727&#52727</a> but AFAIK the documentation doesnt tell how.</p>
http://stackoverflow.com/questions/1648956/how-to-assert-that-zeo-or-only-one-of-n-given-arguments-is-passed3How to assert that zeo or only one of N given arguments is passeduswaretech2009-10-30T10:11:55Z2009-10-30T17:16:06Z
<p>I have a definition like this</p>
<pre><code>def bar(self, foo=None, bar=None, baz=None):
pass
</code></pre>
<p>I want to make sure a maximum of one of foo, bar, baz is passed. I can do </p>
<pre><code>if foo and bar:
raise Ex()
if foo and baz:
raise Ex()
....
</code></pre>
<p>But there got be something simpler.</p>
http://stackoverflow.com/questions/1650184/doctest-failing-inspite-of-having-correct-output1Doctest failing inspite of having correct outputuswaretech2009-10-30T14:37:01Z2009-10-30T15:36:46Z
<p>My function is</p>
<pre><code>def validate_latitude(lat):
"""Enforce latitude is in range
>>> validate_latitude(65)
65
>>> validate_latitude(91)
90
>>> validate_latitude(-91)
-90
"""
lat = min(lat, 90)
lat = max(lat, -90)
return lat
</code></pre>
<p>And the test fails with this output </p>
<pre><code>**********************************************************************
File "packages/utils.py", line 64, in __main__.validate_latitude
Failed example:
validate_latitude(-91)
Expected:
-90
Got:
-90
**********************************************************************
</code></pre>
<p>Cant see why it fails in spite of having the deisred output</p>
http://stackoverflow.com/questions/1648917/given-a-latitude-and-longitude-and-distance-i-want-to-find-a-bounding-box0Given a latitude and longitude, and distance, I want to find a bounding boxuswaretech2009-10-30T10:01:38Z2009-10-30T10:05:58Z
<p>Given a latitude and longitude, and distance, I want to find a bounding box where the distances are less than the given distance.</p>
<p>This questions was asked here: <a href="http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a-given-lat-lng-location">http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a-given-lat-lng-location</a></p>
<p>I donot want this partcularly accurate, so I have modified and simplified it to</p>
<pre><code>def boundingBox(latitudeInDegrees, longitudeInDegrees, halfSideInKm):
lat = math.radians(latitudeInDegrees)
lon = math.radians(longitudeInDegrees)
halfSide = 1000*halfSideInKm
RADIUS_OF_EARTH = 6371
# Radius of the parallel at given latitude
pradius = radius*math.cos(lat)
latMin = lat - halfSide/radius
latMax = lat + halfSide/radius
lonMin = lon - halfSide/pradius
lonMax = lon + halfSide/pradius
rad2deg = math.degrees
return (rad2deg(latMin), rad2deg(lonMin), rad2deg(latMax), rad2deg(lonMax))
</code></pre>
<p>But I cant understand how this is working, in particular this line makes no sense to me <code>halfSide = 1000*halfSideInKm</code> </p>
http://stackoverflow.com/questions/1920053/what-is-so-bad-with-threadlocals/1920449#1920449Comment by uswaretech on What is so bad with threadlocalsuswaretech2009-12-17T09:30:47Z2009-12-17T09:30:47Z<code>In your case, you want to use it more as a global context</code> NOt really, I want to set it in Middleware, and have it accesible in the modles.py, without views, sending it to models.py explicitly each time.http://stackoverflow.com/questions/1920053/what-is-so-bad-with-threadlocals/1920449#1920449Comment by uswaretech on What is so bad with threadlocalsuswaretech2009-12-17T09:29:25Z2009-12-17T09:29:25Z<code>Why don't you store it in session or user profile?</code> Because I need to access it from models.http://stackoverflow.com/questions/1897223/java-perspective-is-not-visible-in-eclipse/1897263#1897263Comment by uswaretech on Java perspective is not visible in eclipseuswaretech2009-12-13T18:34:40Z2009-12-13T18:34:40ZActualy I just want to see an image of eclipse, so perspective is not exactly necseaary. But obviously, perspective, esp. someone elses, always helps.http://stackoverflow.com/questions/1897223/java-perspective-is-not-visible-in-eclipse/1897241#1897241Comment by uswaretech on Java perspective is not visible in eclipseuswaretech2009-12-13T18:33:25Z2009-12-13T18:33:25ZOk, I renamed eclipse dir, and I can see the Java perspective now. I still dont have any of the create new class or other options etc in File->New or Toolbar. This is what my window looks like, <a href="http://www.ubuntu-pics.de/bild/34188/screenshot_004_9OLrxw.png" rel="nofollow">ubuntu-pics.de/bild/34188/…</a>http://stackoverflow.com/questions/1897223/java-perspective-is-not-visible-in-eclipse/1897241#1897241Comment by uswaretech on Java perspective is not visible in eclipseuswaretech2009-12-13T18:27:32Z2009-12-13T18:27:32ZPascal. Not me, heh. :)http://stackoverflow.com/questions/1897223/java-perspective-is-not-visible-in-eclipse/1897234#1897234Comment by uswaretech on Java perspective is not visible in eclipseuswaretech2009-12-13T18:23:04Z2009-12-13T18:23:04ZJeff, dont see it there. Also added comment to my question.http://stackoverflow.com/questions/1897223/java-perspective-is-not-visible-in-eclipseComment by uswaretech on Java perspective is not visible in eclipseuswaretech2009-12-13T18:21:51Z2009-12-13T18:21:51ZNo, dont see Java there. Without other, nothing is visible. Inside other I see, Debug, Resource(Default) and Team syncronysinghttp://stackoverflow.com/questions/1886660/how-to-do-a-string-replace-in-a-urlencoded-stringComment by uswaretech on How to do a string replace in a urlencoded stringuswaretech2009-12-11T08:50:33Z2009-12-11T08:50:33Zumm. How does this risk sql injection? the only part where this is used would be a urlopen (or family) call, and I am assuming that Yahoo would have escape mechanisms in place. (My point being, this is not the correct place to escape the input, IMO)http://stackoverflow.com/questions/1865262/what-languages-other-than-python-have-an-explicit-self/1865386#1865386Comment by uswaretech on What languages other than Python have an explicit self?uswaretech2009-12-08T08:22:57Z2009-12-08T08:22:57Zhow would you define a method <code>foo(self, a, b, **kwargs)</code> in lua?http://stackoverflow.com/questions/1839658/how-to-enforce-account-based-separation-in-django/1840005#1840005Comment by uswaretech on How to enforce account based separation in Djangouswaretech2009-12-04T03:03:51Z2009-12-04T03:03:51ZHow would you get <code>request.session</code> in the models or manager without explicitly passing it with each query. If I am going that way, I might just <code>filter</code> on each call.http://stackoverflow.com/questions/1839658/how-to-enforce-account-based-separation-in-django/1840972#1840972Comment by uswaretech on How to enforce account based separation in Djangouswaretech2009-12-04T03:02:37Z2009-12-04T03:02:37ZYes, but that would still mean, I need to put an explicit <code>filter</code> everywhere.http://stackoverflow.com/questions/1795962/jquery-form-validation-available-options/1796285#1796285Comment by uswaretech on Jquery form validation - available optionsuswaretech2009-11-25T11:33:19Z2009-11-25T11:33:19ZYou can give <code>class="required email"</code> to trigger both validations, email and required, that you you dont hav eto write the rule in javascript.http://stackoverflow.com/questions/1778846/populating-values-in-module-namespace/1778861#1778861Comment by uswaretech on Populating values in module namespaceuswaretech2009-11-22T14:41:36Z2009-11-22T14:41:36ZBut how would you do this from within <code>mymodule</code>?http://stackoverflow.com/questions/1774792/does-a-exception-with-just-a-raise-have-any-use/1774834#1774834Comment by uswaretech on Does a exception with just a raise have any use?uswaretech2009-11-21T11:43:34Z2009-11-21T11:43:34ZThanks. Did not know that <code>UnicodeDecodeError is a subclass of ValueError</code>. That helps.http://stackoverflow.com/questions/1770712/metaclass-not-being-called-in-subclasses/1770823#1770823Comment by uswaretech on Metaclass not being called in subclassesuswaretech2009-11-21T06:17:08Z2009-11-21T06:17:08ZAh, ok, that work. But shouldnt <code>return super(Z, cls).__new__</code> be equivalent to <code>type.__class__.new</code> whis is equivalent to <code>type.__new__</code> which should be same as creating a new class via <code>type</code>?