User Hank Gay - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T18:07:02Zhttp://stackoverflow.com/feeds/user/4203http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933241/is-valid-html5-ok-to-use-now/1933377#19333776Answer by Hank Gay for Is valid HTML5 OK to use now?Hank Gay2009-12-19T16:39:35Z2009-12-19T16:39:35Z<p>I'd recommend checking out <a href="http://diveintohtml5.org/" rel="nofollow">Dive Into HTML 5</a> and deciding for yourself if you think the tradeoffs are acceptable. So far as I've heard, there are no negative SEO implications for using HTML 5. I just ran the w3c validator on <em>Dive Into HTML 5</em> and it automatically detected that it was HTML 5 and validated it, so I don't that will be a concern, either.</p>
http://stackoverflow.com/questions/1933351/if-you-are-forced-to-use-an-anemic-domain-model-where-do-you-put-your-business-l/1933360#19333600Answer by Hank Gay for If you are forced to use an Anemic domain model, where do you put your business logic and calculated fields?Hank Gay2009-12-19T16:35:33Z2009-12-19T16:35:33Z<p>The service layer.</p>
http://stackoverflow.com/questions/1933329/good-python-open-source-to-learn/1933339#19333391Answer by Hank Gay for good python open source to learn Hank Gay2009-12-19T16:28:18Z2009-12-19T16:28:18Z<p>Obviously it depends on what domain you'd like to work in, but I think the <a href="http://docs.djangoproject.com/en/1.1/" rel="nofollow">Django</a> project is a good place to start.</p>
http://stackoverflow.com/questions/1933299/i-want-to-display-name-in-front-of-field-instead-of/1933336#19333360Answer by Hank Gay for I want to display name in front of field instead of....Hank Gay2009-12-19T16:27:08Z2009-12-19T16:27:08Z<p>According to <a href="http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#field-types" rel="nofollow">the documentation</a>, the <code>ModelForm</code>'s widget pulls its <code>label</code> value from the <code>verbose_name</code> attribute.</p>
http://stackoverflow.com/questions/1933085/linked-list-insertion-running-time-confusion/1933321#19333210Answer by Hank Gay for Linked List insertion running time confusion...Hank Gay2009-12-19T16:22:15Z2009-12-19T16:22:15Z<p>As @Kaleb Brasee points out, inserting at the tail in Java is O(1) because Java uses a doubly-linked list as its <code>LinkedList</code> implementation. I think this is a fairly common choice for a lot of SDK implementations. For instance, the STL <code>list</code> implementation is doubly-linked (<a href="http://www.cplusplus.com/reference/stl/list/" rel="nofollow">source</a>).</p>
http://stackoverflow.com/questions/1927789/why-should-i-care-that-java-doesnt-have-reified-generics/1927819#19278195Answer by Hank Gay for Why should I care that Java doesn't have reified generics?Hank Gay2009-12-18T12:00:06Z2009-12-18T12:00:06Z<p>Arrays would probably play much nicer with generics if they were reified.</p>
http://stackoverflow.com/questions/1927758/what-effects-does-legacy-code-cause-on-a-developers-skills/1927806#19278062Answer by Hank Gay for What effects does legacy code cause on a developer’s skills?Hank Gay2009-12-18T11:57:05Z2009-12-18T11:57:05Z<p>I think it is very effective at encouraging you to program on the side in some publicly visible way, either just by solving katas on a blog, but also by contributing to Open Source projects.</p>
http://stackoverflow.com/questions/192736/how-do-i-make-git-svn-use-a-particular-svn-branch-as-the-remote-repository6How do I make git-svn use a particular svn branch as the remote repository?Hank Gay2008-10-10T19:26:44Z2009-12-15T22:28:08Z
<p>A word of warning: I'm a n00b to <code>git</code> in general. My team uses feature branches in <code>svn</code>, and I'd like to use <code>git-svn</code> to track my work on a particular feature branch. I've been (roughly) following <a href="http://andy.delcambre.com/2008/3/4/git-svn-workflow" rel="nofollow">Andy Delcambre's post</a> to set up my local <code>git</code> repo, but those instructions seem to have led <code>git</code> to pick the <code>svn</code> branch that had changed most recently as the remote repository; the problem is that's not the branch I care about. How do I control which branch <code>git-svn</code> uses? Or am I approaching this completely wrong?</p>
<p>UPDATE: I did use the <code>-T</code>, <code>-b</code>, and <code>-t</code> options (in my case because the <code>svn</code> repo has multiple projects, but I want the <code>git</code> repo to contain only the project I'm working on).</p>
http://stackoverflow.com/questions/1903446/how-does-web-filtering-software-hook-into-outbound-browser-requests-without-brows/1903488#19034880Answer by Hank Gay for How does web filtering software hook into outbound browser requests without browser configuration?Hank Gay2009-12-14T21:03:24Z2009-12-14T21:03:24Z<p>Install your program as a proxy for all HTTP traffic.</p>
http://stackoverflow.com/questions/1902979/how-do-i-implement-pushdown-automaton-in-c/1902993#19029931Answer by Hank Gay for How do I implement pushdown automaton in C#?Hank Gay2009-12-14T19:37:24Z2009-12-14T19:40:14Z<p>You could start with the <a href="http://en.wikipedia.org/wiki/Pushdown%5Fautomaton" rel="nofollow">Wikipedia article</a>.</p>
http://stackoverflow.com/questions/1902967/nltk-how-to-find-out-what-corpora-are-installed-from-within-python/1903002#19030022Answer by Hank Gay for NLTK - how to find out what corpora are installed from within python?Hank Gay2009-12-14T19:39:49Z2009-12-14T19:39:49Z<p>try</p>
<pre><code>import nltk.corpus
dir(nltk.corpus)
</code></pre>
<p>at which point, it probably told you something about <code>__LazyModule__...</code> so do <code>dir(nltk.corpus)</code> again.</p>
<p>If that doesn't work, try tab-completion in iPython.</p>
http://stackoverflow.com/questions/1901029/issues-with-using-free-mercurial-hosting-like-bitbucket/1901067#19010674Answer by Hank Gay for Issues with using free Mercurial hosting like BitbucketHank Gay2009-12-14T13:53:10Z2009-12-14T13:53:10Z<p>Yes, unless you put them all under a single repository. Otherwise, you need to pay them for more private repos.</p>
http://stackoverflow.com/questions/1889916/how-to-get-hotest-entry-list-in-django-models/1889973#18899730Answer by Hank Gay for How to get hotest entry list in Django models?Hank Gay2009-12-11T18:25:19Z2009-12-11T18:25:19Z<p>It rather depends on your model definitions, but it would resemble:</p>
<pre><code>Entry.objects.order_by(__hitlog__hits)[0]
</code></pre>
http://stackoverflow.com/questions/1883980/find-the-nth-occurrence-of-substring-in-a-string/1888673#18886730Answer by Hank Gay for Find the nth occurrence of substring in a stringHank Gay2009-12-11T15:06:23Z2009-12-11T15:06:23Z<p>Here's another <code>re</code> + <code>itertools</code> version that should work when searching for either a <code>str</code> or a <code>RegexpObject</code>. I will freely admit that this is likely over-engineered, but for some reason it entertained me.</p>
<pre><code>import itertools
import re
def find_nth(haystack, needle, n = 1):
"""
Find the starting index of the nth occurrence of ``needle`` in \
``haystack``.
If ``needle`` is a ``str``, this will perform an exact substring
match; if it is a ``RegexpObject``, this will perform a regex
search.
If ``needle`` doesn't appear in ``haystack``, return ``-1``. If
``needle`` doesn't appear in ``haystack`` ``n`` times,
return ``-1``.
Arguments
---------
* ``needle`` the substring (or a ``RegexpObject``) to find
* ``haystack`` is a ``str``
* an ``int`` indicating which occurrence to find; defaults to ``1``
>>> find_nth("foo", "o", 1)
1
>>> find_nth("foo", "o", 2)
2
>>> find_nth("foo", "o", 3)
-1
>>> find_nth("foo", "b")
-1
>>> import re
>>> either_o = re.compile("[oO]")
>>> find_nth("foo", either_o, 1)
1
>>> find_nth("FOO", either_o, 1)
1
"""
if (hasattr(needle, 'finditer')):
matches = needle.finditer(haystack)
else:
matches = re.finditer(re.escape(needle), haystack)
start_here = itertools.dropwhile(lambda x: x[0] < n, enumerate(matches, 1))
try:
return next(start_here)[1].start()
except StopIteration:
return -1
</code></pre>
http://stackoverflow.com/questions/1888348/django-to-use-settings-py-at-a-different-location/1888389#18883898Answer by Hank Gay for django to use settings.py at a different locationHank Gay2009-12-11T14:22:18Z2009-12-11T14:22:18Z<p>I think your <code>setting</code> directory needs an <code>__init__.py</code> file so it is a valid Python <a href="http://docs.python.org/tutorial/modules.html#packages" rel="nofollow">package</a>.</p>
http://stackoverflow.com/questions/1883469/django-how-to-display-validation-errors-not-specific-to-a-field/1883567#18835671Answer by Hank Gay for Django: How to display Validation errors not specific to a field?Hank Gay2009-12-10T19:57:20Z2009-12-10T19:57:20Z<p>According to the <a href="http://docs.djangoproject.com/en/dev/ref/forms/validation/" rel="nofollow">docs</a>, they go in a special field (<code>__all__</code>) and should be accessed via the <code>non_field_errors()</code> method. At a guess, I'd say that method returns a sequence.</p>
http://stackoverflow.com/questions/1878313/java-generics-explain-please/1878322#18783221Answer by Hank Gay for Java generics, explain pleaseHank Gay2009-12-10T02:36:45Z2009-12-10T02:36:45Z<ol>
<li>Please read <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html" rel="nofollow">the documentation</a>. Briefly, they are type parameters so that generic types and methods can know what type of objects they are acting on.</li>
<li>That indicates that the method can accept a variable number of arguments. See <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/varargs.html" rel="nofollow">varargs</a>. It's basically sugar around an array.</li>
</ol>
http://stackoverflow.com/questions/1878306/rabbitmq-gives-a-access-refused-login-refused-for-user-error-when-attempting-t0RabbitMQ gives a "access refused, login refused for user" error when attempting to follow the celery tutorialHank Gay2009-12-10T02:31:55Z2009-12-10T02:31:55Z
<p>I'm attempting to follow the <a href="http://ask.github.com/celery/introduction.html#usage" rel="nofollow">celery tutorial</a>, but I run into a problem when I run <code>python manage.py celeryd</code>: my RabbitMQ server (installed on a virtual machine on my dev box) won't let my user login.</p>
<p>I get the following on my Django management console:</p>
<pre><code>[ERROR/MainProcess] AMQP Listener: Connection Error: Socket closed. Trying again in 2 seconds...
</code></pre>
<p>and this shows up in my <code>rabbit.log</code> file on my RabbitMQ server:</p>
<pre><code>exception on TCP connection <0.5814.0> from $DJANGO_BOX_IP
{channel0_error,starting,{amqp,access_refused,"login refused for user '$CONFIGURED_USER'",'connection.start_ok'}}
</code></pre>
<p>I've double-checked my user, permissions, and vhost info, and they all seem to match up. Any help troubleshooting is greatly appreciated.</p>
http://stackoverflow.com/questions/1876822/regex-to-get-value-of-inside-a-particular-td-in-html/1876855#18768550Answer by Hank Gay for regex to get value of inside a particular TD in HTMLHank Gay2009-12-09T21:02:24Z2009-12-09T21:02:24Z<p>Use a parser to get the content from the particular <code>TD</code> you care about, then use a regex along the lines of <code>\d of (\d{2})$</code> which should get the value of <code>xx</code> in the first capture group.</p>
<p>I'm specifically not trying to write a regex that will handle the HTML part of this question; see also <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">the <center> cannot hold</a>.</p>
http://stackoverflow.com/questions/1876464/calculate-the-depth-of-a-binary-search-tree/1876832#18768320Answer by Hank Gay for Calculate the depth of a binary search tree?Hank Gay2009-12-09T20:57:54Z2009-12-09T20:57:54Z<p>Since this is homework, I don't want to just give you an answer. Instead, here's a recursive way to calculate the length of a singly linked list. Hopefully this will demonstrate recursion in a way you can understand, and you can extrapolate from there to solve your BST problem.</p>
<pre><code>public final class LL {
public final int value;
public LL next;
public LL(final int value) {
this.value = value;
}
public void add(final int value) {
if (null == next) {
next = new LL(value);
} else {
next.add(value);
}
}
/**
* Calculate the length of the linked list with this node as its head (includes this node in the count).
*
* @return the length.
*/
public int length() {
if (null == next) {
return 1;
}
return 1 + next.length();
}
public static void main(final String... args) {
final LL head = new LL(1);
head.add(2);
head.add(3);
System.out.println(head.length());
System.out.println(head.next.length());
}
}
</code></pre>
http://stackoverflow.com/questions/1876430/how-to-set-a-breakpoint-on-a-default-java-constructor-in-eclipse/1876446#18764461Answer by Hank Gay for How to set a breakpoint on a default Java constructor in Eclipse?Hank Gay2009-12-09T20:01:26Z2009-12-09T20:01:26Z<p>You can always create your own no-argument constructor and put the breakpoint there. More to the point, though, why do you want a breakpoint there? It will simply chain to the no-argument <code>super()</code>. If that has code you care about, put the breakpoint inside that constructor.</p>
http://stackoverflow.com/questions/1875052/using-paired-certificates-with-urllib2/1875106#18751061Answer by Hank Gay for Using paired certificates with urllib2Hank Gay2009-12-09T16:34:40Z2009-12-09T16:34:40Z<p>Here's a <a href="http://bugs.python.org/issue3466" rel="nofollow">bug in the official Python bugtracker</a> that looks relevant, and has a proposed patch.</p>
http://stackoverflow.com/questions/1863204/grep-and-regular-expression/1863254#18632540Answer by Hank Gay for Grep and regular expression Hank Gay2009-12-07T22:05:44Z2009-12-07T22:05:44Z<p>Assuming you only need ASCII, and you can only access the (fairly primitive) regexp constructs of <code>grep</code>, the following should be pretty close:</p>
<pre><code>grep ^[a-zA-Z]*[0-9][a-zA-Z]*[a-zA-Z]*[0-9][a-zA-Z]*[a-zA-Z]*[0-9][a-zA-Z]*[a-zA-Z]*[0-9][a-zA-Z]*$ | grep [a-zA-Z]
</code></pre>
http://stackoverflow.com/questions/1862867/what-is-the-best-single-source-shortest-path-algorithm-for-programming-contests/1862883#18628830Answer by Hank Gay for What is the best single-source shortest path algorithm for programming contests?Hank Gay2009-12-07T21:06:30Z2009-12-07T21:09:45Z<p>The <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/graph/doc/index.html" rel="nofollow">Boost Graph Library</a> appears to have implementations for both Dijkstra and Bellman-Ford.</p>
http://stackoverflow.com/questions/1862860/unable-to-push-code-to-git-remote/1862892#18628920Answer by Hank Gay for Unable to push code to git remoteHank Gay2009-12-07T21:08:28Z2009-12-07T21:08:28Z<p>Do you have write permissions on the appropriate directories on the server?</p>
http://stackoverflow.com/questions/1862779/regenerate-a-git-repository/1862796#18627960Answer by Hank Gay for Regenerate a git repositoryHank Gay2009-12-07T20:49:40Z2009-12-07T20:49:40Z<p>Based on the <a href="http://wiki.sympy.org/wiki/Git%5Fhg%5Frosetta%5Fstone" rel="nofollow">git-hg rosetta stone</a>, <code>git add .; git ls-files --deleted | xargs git rm</code> sounds like it might work (it is supposedly the equivalent of <code>hg addremove</code>, which sounds like what you want).</p>
http://stackoverflow.com/questions/1862599/multithreading-puzzles/1862662#18626622Answer by Hank Gay for Multithreading PuzzlesHank Gay2009-12-07T20:25:03Z2009-12-07T20:25:03Z<p>The <a href="http://en.wikipedia.org/wiki/Sleeping%5Fbarber%5Fproblem" rel="nofollow">Sleeping Barber Problem</a> springs to mind, as does the <a href="http://en.wikipedia.org/wiki/Cigarette%5Fsmokers%5Fproblem" rel="nofollow">Cigarette Smokers Problem</a>.</p>
http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext/1862485#18624850Answer by Hank Gay for symbols in restructuredTextHank Gay2009-12-07T19:55:08Z2009-12-07T19:55:08Z<p>It was my impression that rst supported Unicode; can you just type in the raw character and let <code>docutils</code> handle encoding for HTML?</p>
http://stackoverflow.com/questions/1862123/django-1-1-1-how-should-i-store-an-empty-ip-address-using-postgresql/1862225#18622252Answer by Hank Gay for Django 1.1.1: How should I store an empty IP address using PostgreSQL?Hank Gay2009-12-07T19:14:57Z2009-12-07T19:14:57Z<p>If you can convince the devs to accept one of the patches, I'd say just run a patched copy of Django until the patched version lands. If not, then it might be less headache to just use a sentinel value, as you suggested, even though it is a hack. You might also just use a regular <code>CharField</code> instead of an <code>IPAddressField</code>, but then you get stuck having to maintain validation logic on your own.</p>
http://stackoverflow.com/questions/1861658/hashmap-with-stringkey-problem/1861730#18617300Answer by Hank Gay for HashMap with StringKey problem?Hank Gay2009-12-07T17:55:26Z2009-12-07T19:07:07Z<p>What exactly is the problem? The code adds the <code>Foo</code> if it hasn't been encountered before, and invokes an action on the <code>Foo</code> if it has been encountered before. What were you expecting it to do?</p>
<p>To answer your question at the end, <code>HashMap</code> relies on the <code>hashCode</code> and <code>equals</code> methods of the key objects.</p>
<p><strong>UPDATE</strong>: Are you trying to invoke <code>doSomeThing</code> <em>only</em> on repeated <code>Foo</code>s? If the <code>name</code> property of a <code>Foo</code> defines it's identity (and you properly implemented <code>hashCode()</code> and <code>equals()</code>) you should use <a href="http://stackoverflow.com/questions/1861658/hashmap-with-stringkey-problem/1861914#1861914">R. Bemrose's solution</a>. If <code>name</code> is <em>not</em> a unique property of <code>Foo</code>s, the following code might help:</p>
<pre><code>final Map<String, Foo> firstFooByName = new HashMap<String, Foo>();
final List<String> dupeNames = new ArrayList<String>();
for (final Foo foo: myFoos) {
final String fooName = foo.getName();
if (!firstFooByName.containsKey(fooName)) {
firstFooByName.add(fooName)
} else {
dupeNames.add(fooName);
}
}
for (final String fooName : dupeNames) {
firstFooByName.get(fooName).doSomeThing();
}
</code></pre>
http://stackoverflow.com/questions/1927789/why-should-i-care-that-java-doesnt-have-reified-genericsComment by Hank Gay on Why should I care that Java doesn't have reified generics?Hank Gay2009-12-18T12:02:08Z2009-12-18T12:02:08Z@James B basically.http://stackoverflow.com/questions/1888392/next-instance-ofComment by Hank Gay on next instance ofHank Gay2009-12-11T14:24:27Z2009-12-11T14:24:27ZThis <i>looks</i> like Javascript using the jQuery library. You should probably tag it as such so people understand the context.http://stackoverflow.com/questions/1862123/django-1-1-1-how-should-i-store-an-empty-ip-address-using-postgresql/1862225#1862225Comment by Hank Gay on Django 1.1.1: How should I store an empty IP address using PostgreSQL?Hank Gay2009-12-07T20:28:39Z2009-12-07T20:28:39ZGetting the devs to accept one of the patches does seem to be the ideal fix, and then you only have to handle a patched version of Django for a little while. As for package management, <code>virtualenv</code> and <code>pip</code> seem to be a better fit for most web applications, so you can use the specific version of Django you need without impacting other apps.http://stackoverflow.com/questions/1861658/hashmap-with-stringkey-problem/1861914#1861914Comment by Hank Gay on HashMap with StringKey problem?Hank Gay2009-12-07T18:35:57Z2009-12-07T18:35:57ZA couple of caveats: it needs to implement <code>hashCode()</code> and <code>equals()</code>; the equality checks must depend only on the <code>name</code> property.http://stackoverflow.com/questions/1861658/hashmap-with-stringkey-problem/1861730#1861730Comment by Hank Gay on HashMap with StringKey problem?Hank Gay2009-12-07T18:34:28Z2009-12-07T18:34:28ZI think <code>containsKey</code> is the most straightforward way to capture the programmer's intent, and it doesn't rely on implicit constraints on the allowed values (since some <code>Map</code> implementations allow <code>null</code> values). Unless I had profiler output proving this was a hotspot, I wouldn't waste my time "optimizing" it into a less clear version.http://stackoverflow.com/questions/1849110/how-to-sign-data-properly-in-ruby-hmac/1849119#1849119Comment by Hank Gay on How to sign data properly in Ruby (HMAC?)Hank Gay2009-12-05T00:24:08Z2009-12-05T00:24:08ZHTTPS (as typically implemented) only requires a certificate for the server side of the communications. HMAC is typically sufficient for verifying the contents of a message haven't changed, but if you want to make sure nobody in the middle inspects it, you need to encrypt the signed message.http://stackoverflow.com/questions/1836627/diagrams-explanations-of-django-request-processing/1836700#1836700Comment by Hank Gay on Diagrams/Explanations of Django request processing?Hank Gay2009-12-03T15:22:00Z2009-12-03T15:22:00ZThanks. The blog had exactly the details I needed (where in the Django source it delegated to the handlers, etc.)http://stackoverflow.com/questions/1833184/how-to-use-openid-in-restful-api/1833205#1833205Comment by Hank Gay on How to use OpenID in RESTful API?Hank Gay2009-12-02T16:06:56Z2009-12-02T16:06:56ZIn that case, maybe one of the pastes at <a href="http://pylonshq.com/pasties/by_tag/openid" rel="nofollow">pylonshq.com/pasties/by_tag/openid</a> will help.http://stackoverflow.com/questions/1829340/pythonic-way-to-aggregate-arrays-numpy-or-not/1829504#1829504Comment by Hank Gay on pythonic way to aggregate arrays (numpy or not)Hank Gay2009-12-02T11:54:36Z2009-12-02T11:54:36ZThat's a good call, but I was trying to highlight the <code>defaultdict</code> stuff by making that the only change. Your return is definitely better, though.http://stackoverflow.com/questions/1780599/i-never-really-understood-what-is-posix/1780607#1780607Comment by Hank Gay on I never really understood: what is POSIX?Hank Gay2009-11-23T14:53:45Z2009-11-23T14:53:45ZBased on what I've heard from people who work with it much more closely than I ever did, it may have made things easier, but it certainly wasn't sufficient for the write-once, run-on-any-POSIX impression most people get when they hear it's a "standard" for operating systems.http://stackoverflow.com/questions/1731413/sql-operator/1731430#1731430Comment by Hank Gay on SQL "*=" operatorHank Gay2009-11-13T19:42:59Z2009-11-13T19:42:59ZOracle is hardly the only offender, here.http://stackoverflow.com/questions/1719262/jython-exception-handling-within-loops/1719660#1719660Comment by Hank Gay on Jython exception handling within loopsHank Gay2009-11-12T12:25:09Z2009-11-12T12:25:09Z@Alex thanks for pointing out the bug; I'll fix that immediately. For the record, I like your approach more but was trying to get bguiz's example to work with minimal conceptual changes.http://stackoverflow.com/questions/1719261/is-there-an-easier-way-to-parse-xml-in-java/1719284#1719284Comment by Hank Gay on Is there an easier way to parse XML in Java?Hank Gay2009-11-12T01:30:28Z2009-11-12T01:30:28ZStAX is the weird one.http://stackoverflow.com/questions/1703546/parsing-date-time-string-with-timezone-abbreviated-name-in-python/1703591#1703591Comment by Hank Gay on Parsing date/time string with timezone abbreviated name in Python?Hank Gay2009-11-10T02:48:19Z2009-11-10T02:48:19ZBy far the easiest route (though not often the most practical) is to adjust whatever program is providing the data so it sends it all in UTC, or failing that, using offsets from UTC, or failing that a full, valid timezone from the zoneinfo database.http://stackoverflow.com/questions/1700577/is-it-possible-to-redefine-reverse-in-a-django-project/1700673#1700673Comment by Hank Gay on Is it possible to redefine reverse in a Django project?Hank Gay2009-11-10T02:46:19Z2009-11-10T02:46:19ZThanks. I was worried that doing it in <code>settings.py</code> might cause some sort of subtle bug due to incomplete initialization.