User jd - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:11:13Zhttp://stackoverflow.com/feeds/user/8638http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814131/postgresql-8-4-original-config-files-ubuntu/1814274#18142740Answer by jd for postgresql 8.4 original config files (ubuntu)jd2009-11-29T00:39:06Z2009-11-29T00:39:06Z<p>i also posted this question in serverfault and supersuser and got a couple of answers that worked:</p>
<p><hr></p>
<p>from Adam Gibbins:
If you're looking to totally reinstall postgresql I suggest you run</p>
<p>dpkg --list | grep postgresql</p>
<p>and then run</p>
<p>dpkg --purge </p>
<p>for each package that the list command returned (most likely postgresql-common and postgresql-8.4</p>
<p>and then reinstall using aptitude install postgresql, this will remove and then bring all the config files back.</p>
<p><hr></p>
<p>from womble:</p>
<p>Apparently you didn't completely remove the packages, or the configs would have been restored. Make sure you remove the common package as well, as well as using the --purge option to aptitude.</p>
http://stackoverflow.com/questions/1814131/postgresql-8-4-original-config-files-ubuntu0 postgresql 8.4 original config files (ubuntu)jd2009-11-28T23:33:38Z2009-11-29T00:39:06Z
<p>Where can I find the original postgresql 8.4 config files for ubuntu (/etc/postgresql/8.4/main/*)?</p>
<p>Upgraded ubuntu to version 9.10. which included upgrading postgresql from 8.3 to 8.4</p>
<p>dir with config files is empty (/etc/postgresql/8.4/main/)</p>
<p>Completely removed and then reinstalled all ubuntu postgres packages (server, client, admin), but that didn't reinstall/populate the config files.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1512401/python-how-to-write-a-data-struct-to-a-file-as-text-not-pickled1Python: how to write a data struct to a file as text (not pickled)jd2009-10-03T00:26:22Z2009-10-03T13:40:21Z
<p>Is there a way to write python data structs to a file as text.</p>
<p>e.g. an app is running and has a variable/object: OPTIONS = ('ON', 'OFF', )</p>
<p>I need to write/merge the OPTIONS tuple into another file, not as a
pickled object, but as text, verbatim: OPTIONS = ('ON', 'OFF', )</p>
<p>I could traverse the tuple, and one by one write the elements into
the target file, but was wondering if there's an easier way.</p>
<p>note: if i do a "straight" write, i get the following:</p>
<pre><code>fout.write(OPTIONS)
...
TypeError: argument 1 must be string or read-only character buffer, not tuple
</code></pre>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1079071#10790712Answer by jd for tools to aid in browsing/following (large) python projects' source codejd2009-07-03T12:04:58Z2009-08-25T22:27:35Z<p>The following is an aggregate of tools mentioned in other answers...</p>
<h2>cscope </h2>
<p><a href="http://cscope.sourceforge.net/" rel="nofollow">http://cscope.sourceforge.net/</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/Cscope" rel="nofollow">http://en.wikipedia.org/wiki/Cscope</a></p>
<p>cscope is a console mode or text-based graphical interface ... It is often used on very large projects to find source code, functions, declarations, definitions and regular expressions given a text string.</p>
<h2>pyscope </h2>
<p><a href="http://pypi.python.org/pypi/pycscope/" rel="nofollow">http://pypi.python.org/pypi/pycscope/</a></p>
<p>generates a cscope index of Python source trees</p>
<h2>ctags and exuberant ctags</h2>
<p><a href="http://ctags.sourceforge.net/" rel="nofollow">http://ctags.sourceforge.net/</a></p>
<p><a href="http://ctags.sourceforge.net/ctags.html" rel="nofollow">http://ctags.sourceforge.net/ctags.html</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/Ctags" rel="nofollow">http://en.wikipedia.org/wiki/Ctags</a></p>
<p>Ctags is a program that generates an index (or tag) file of names found in source and header files of various programming languages. Depending on the language, functions, variables, class members, macros and so on may be indexed. These tags allow definitions to be quickly and easily located by a text editor or other utility. </p>
<h2>Eclipse: </h2>
<p><a href="http://www.eclipse.org/" rel="nofollow">http://www.eclipse.org/</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/Eclipse%5F%28software%29" rel="nofollow">http://en.wikipedia.org/wiki/Eclipse_%28software%29</a></p>
<p>Eclipse is a multi-language software development platform comprising an IDE and a plug-in system to extend it. It is written primarily in Java and can be used to develop applications in Java and, by means of the various plug-ins, in other languages as well, including C, C++, COBOL, Python, Perl, PHP, and others.</p>
<h2>PyDev</h2>
<p><a href="http://pydev.sourceforge.net/" rel="nofollow">http://pydev.sourceforge.net/</a></p>
<p>"Pydev is a plugin that enables users to use Eclipse for Python and Jython development -- making Eclipse a first class Python IDE"</p>
<h2>Komodo Edit</h2>
<p><a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow">http://www.activestate.com/komodo_edit/</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/ActiveState%5FKomodo" rel="nofollow">http://en.wikipedia.org/wiki/ActiveState_Komodo</a></p>
<p>Komodo Edit is a free text editor for dynamic programming languages introduced in January 2007. With the release of version 4.3, Komodo Edit is built on top of the Open Komodo project.</p>
<p>It was developed for programmers who need a multi-language editor with broad functionality, but not the features of an IDE, like debugging, DOM viewer, interactive shells, and source code control integration.</p>
<h2>Prashanth's call graph (visualization) tool</h2>
<p><a href="http://blog.prashanthellina.com/2007/11/14/generating-call-graphs-for-understanding-and-refactoring-python-code/" rel="nofollow">http://blog.prashanthellina.com/2007/11/14/generating-call-graphs-for-understanding-and-refactoring-python-code/</a></p>
<p>Just thought I'd share a link to an interesting small fun script I've found long time ago, that draws a graph of function calls. It works only for simple cases, so "as is" it's more fun than useful.</p>
<h2>rope/ropemacs</h2>
<p><a href="http://rope.sourceforge.net/ropemacs.html" rel="nofollow">http://rope.sourceforge.net/ropemacs.html</a></p>
<p>Ropemacs is a plugin for performing python refactorings in emacs. It uses <a href="http://rope.sourceforge.net/" rel="nofollow">rope</a> library and pymacs.</p>
<p><a href="http://www.enigmacurry.com/2008/05/09/emacs-as-a-powerful-python-ide/" rel="nofollow">http://www.enigmacurry.com/2008/05/09/emacs-as-a-powerful-python-ide/</a></p>
<h2>WingIDE</h2>
<p><a href="http://www.wingware.com/" rel="nofollow">http://www.wingware.com/</a></p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code5 tools to aid in browsing/following (large) python projects' source codejd2009-07-02T23:57:09Z2009-08-25T22:27:35Z
<p>A specific example: becoming familiar with django's project source code (core, contrib, utils, etc.). Example of a useful tool: ctags - it allows you to "jump" to the file+location where a function/method is defined. Wondering about other tools that developers use (example: is there a tool that given a function x(), lists the functions that call x() and that are called by x()?). Thanks.</p>
<p><strong>Edit</strong>: added an answer with an aggregate of tools mentioned so far in other answers</p>
http://stackoverflow.com/questions/1029891/python-unittest-is-there-a-way-to-pass-command-line-options-to-the-app1python, unittest: is there a way to pass command line options to the appjd2009-06-22T23:23:05Z2009-06-23T01:04:15Z
<p>I have a module that imports unittest and has some TestCases. I would like
to accept some command line options (for example below, the name of a data file),
but when I try to pass the option I get the message "option -i not recognized". Is it possible to have unittest + provide options to the app (note: I'm using optparse to handle the options)? Thanks.</p>
<pre><code>$ python test_app_data.py -i data_1.txt
option -i not recognized
</code></pre>
<p>=====================</p>
<p>follow-up: this is an implementation of the suggested solution:</p>
<pre><code>import cfg_master #has the optparse option-handling code
...
if __name__ == '__main__':
#add you app's options here...
options_tpl = ('-i', '--in_dir', '-o', '--out_dir')
del_lst = []
for i,option in enumerate(sys.argv):
if option in options_tpl:
del_lst.append(i)
del_lst.append(i+1)
del_lst.reverse()
for i in del_lst:
del sys.argv[i]
unittest.main()
</code></pre>
http://stackoverflow.com/questions/1019850/python-config-options-how-to-input-handle1python - config options, how to input/handle?jd2009-06-19T20:16:15Z2009-06-19T21:46:15Z
<p>when your app takes a few (~ 5) config params, and the app is going
to be used by non-tech users (i.e. KISS), how do you usually handle reading
config options, and then passing around the params between objects/functions
(multiple modules)?</p>
<p>Options examples: input and output dirs/fnames, verbosity level.</p>
<p>I generally use optparse (python) and pass around the options/params as
arguments; but I'm wondering if it's more common to use a config text
file that is read directly by all modules' objects (but then, isn't this
like having 'global' vars?, and without anyone 'owning' the state?).</p>
<p>Another typical issue is unit-testing; if I want to unit-test each
single module independently, a particular module may only require
1 out of the 5 config options; how do you usually decouple individual
modules/objects from the rest of the app, and yet still allow it to
accept 1 or 2 required params (does the unit-test framework somehow
invoke or take-over the config functionality)?</p>
<p>My guess is that there is not a unique correct way to do this, but it'd
be interesting to read about various approaches, or well-known patterns.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1019850/python-config-options-how-to-input-handle/1019852#10198520Answer by jd for python - config options, how to input/handle?jd2009-06-19T20:17:00Z2009-06-19T20:50:52Z<pre><code>"Counts answer"
Please update these counts and feel free to add/modify.
Do you usually read config options via:
- command-line/gui options : 1
- a config text file : 0
How do multiple modules/objects have access to these options?
- they receive them from the caller as an argument: 1
- read them directly from the config text file: 0
When doing unit-testing of a single module (NOT the "main" module)
and the module uses one option, e.g. input filename:
- unit-test framework provides own "simplified" config functionality: 0
- unit-test framework invokes main app's config functionality: 1
Do you use:
- optparse: 1
- getopt: 0
- others?
Please list any config management "design pattern"
(usable in Python) and add a count if you use it - thanks.
-
-
</code></pre>
http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars0xemacs: dotemacs config so that one can paste without getting "funny" charsjd2009-05-29T22:15:43Z2009-06-17T03:29:22Z
<p>Copying text from websites via browser, paste into xemacs (21.4) buffer, and tildes, quotes, etc. don't copy correctly. </p>
<p>Example: he’s a dummy -> he\222s a dummy. </p>
<p>Can YOU copy & paste it without problems? If so, please help - how to config my .emacs to solve this. Thanks.</p>
http://stackoverflow.com/questions/905160/python-example-difference-between-object-reference-and-object-copy-2python example: difference between object reference and object copy [closed]jd2009-05-25T02:51:34Z2009-05-25T05:12:09Z
<p>had an example in my newbie notes and thought it wouldn't hurt to share it...</p>
<pre><code>>>> lst1=[1,2,3]
>>> lst2 = lst1 # reference
>>> lst3 = lst1[:] # copy
>>> lst1, lst2, lst3
([1, 2, 3], [1, 2, 3], [1, 2, 3])
>>> del lst1[1]; lst1, lst2, lst3
([1, 3], [1, 3], [1, 2, 3])
</code></pre>
http://stackoverflow.com/questions/879732/logging-with-filters0logging with filtersjd2009-05-18T20:43:48Z2009-05-18T21:27:07Z
<p>i'm using logging (import logging) to log messages; </p>
<p>within 1 single module, i am logging messages at the debug level (my_logger.debug('msg')); </p>
<p>some of these debug messages come from function_a() and others from function_b();
i'd like to be able to enable/disable logging based on whether they come from a or from b; </p>
<p>i'm guessing that i have to use logging's filtering mechanism; </p>
<p>can someone please show me how the code below would need to be instrumented to do what i want? thanks.</p>
<pre><code>import logging
logger= logging.getLogger( "module_name" )
def function_a( ... ):
logger.debug( "a message" )
def function_b( ... ):
logger.debug( "another message" )
if __name__ == "__main__":
logging.basicConfig( stream=sys.stderr, level=logging.DEBUG )
#don't want function_a()'s noise -> ....
#somehow filter-out function_a's logging
function_a()
#don't want function_b()'s noise -> ....
#somehow filter-out function_b's logging
function_b()
</code></pre>
<p>if i scaled this simple example to more modules and more funcs per module, i'd be concerned about lots of loggers; </p>
<p>can i keep it down to 1 logger per module? note that the log messages are "structured", i.e. if the function(s) logging it are doing some parsing work, they all contain a prefix logger.debug("parsing: xxx") - can i somehow with a single line just shut-off all "parsing" messages (regardless of the module/function emitting the message?)</p>
http://stackoverflow.com/questions/829667/str-format-how-to-left-justify3str.format() -> how to left-justifyjd2009-05-06T13:49:46Z2009-05-07T02:35:10Z
<pre><code>>>> print 'there are {0:10} students and {1:10} teachers'.format(scnt, tcnt)
there are 100 students and 20 teachers
</code></pre>
<p>What would be the code so that the output became:</p>
<pre><code>there are 100 students and 20 teachers
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/537685/django-database-design-mutiple-tables-require-1-phonenumbers1django - database design - mutiple tables require 1+ phone_number(s)jd2009-02-11T16:40:33Z2009-02-11T16:57:14Z
<p>Question regarding how to setup dbase relationships (newbie, this may be trivial)</p>
<p>Followed the django tutorial (Poll, Choices); understood that 1 Poll has many Choice(s), therefore many Choice(s) point to a single Poll.</p>
<pre><code> class Poll(models.Model):
question = models.CharField(max_length=200)
...
class Choice(models.Model):
poll = models.ForeignKey(Poll)
...
</code></pre>
<p>Question:
I have a database with places, persons, etc. (mutiple tables).
A subset of my tables have a similar field.
I want a place to have 1+ phone_number(s).
I want a person to have 1+ phone_number(s).
I may want other tables to have 1+ phone_number(s). </p>
<p>If I followed the Poll/Choice approach, then my problem is indicated by the question marks shown below under PhoneNumber.</p>
<pre><code> class Person(models.Model):
firstname = models.CharField(max_length=20)
...
class Place(models.Model):
description = models.CharField(max_length=200)
...
class PhoneNumber(models.Model):
??? = models.ForeignKey(???)
...
</code></pre>
<p>I have considered using inheritance so that both Person and Place inherit from the same base class. But I may have other fields besides phone_number for which I have a similar situation, and which span a different subset of tables. E.g.</p>
<pre><code> phone_number(s) comments
--------------- --------
Person yes no
Place yes yes
Contract no yes
...
</code></pre>
<p>Any advice on how to correctly design these types of relationships would be greatly appreciated. Thank you.</p>
http://stackoverflow.com/questions/167927/is-there-a-function-to-invoke-a-stack-dump-in-c0Is there a function to invoke a stack dump in C?jd2008-10-03T17:16:10Z2008-10-05T18:05:47Z
<p>Can someone please provide an implementation of a C function that gets invoked to dump the current stack? It's for a x86 linux system. It can be invoked in 2 ways: explicitly by another function, or after a crash (probably as a trap/int handler). The output can be either to the screen or to a file, as indicated by a parameter (handle). A clear explanation/comments of how the stack is unwound would obviously be very helpful. Thank you.</p>
http://stackoverflow.com/questions/167927/is-there-a-function-to-invoke-a-stack-dump-in-c/168066#1680660Answer by jd for Is there a function to invoke a stack dump in C?jd2008-10-03T17:46:40Z2008-10-03T17:56:29Z<p>following on Adam's answer, the source code that shows how to perform the actual stack backtracing is in gnu libc's backtrace(), under /libc/debug/backtrace.c - not sure if the full link below will be accepted by stackoverflow's html filters...</p>
<p>http://cvs.savannah.gnu.org/viewvc/*checkout*/libc/debug/backtrace.c?root=libc&revision=1.1.2.1&content-type=text%2Fplain</p>
http://stackoverflow.com/questions/1029891/python-unittest-is-there-a-way-to-pass-command-line-options-to-the-app/1030002#1030002Comment by jd on python, unittest: is there a way to pass command line options to the appjd2009-06-23T00:13:03Z2009-06-23T00:13:03Zi receive weekly data reports (files); i'd like to feed these new reports to the unittests, before generating public reports. If for some reason the structure or type of the data has changed (e.g. a new column field was added, a data range changed and a bug is unveiled) I'd like to catch them with the tests. Hope this makes sense.http://stackoverflow.com/questions/1029891/python-unittest-is-there-a-way-to-pass-command-line-options-to-the-app/1029923#1029923Comment by jd on python, unittest: is there a way to pass command line options to the appjd2009-06-22T23:46:50Z2009-06-22T23:46:50Zgreat, thanks; just to confirm: first allow optparse to handle the (possibly multiple and variable) app options, then delete them from sys.argv, and finally allow unittest to take over?http://stackoverflow.com/questions/1019850/python-config-options-how-to-input-handleComment by jd on python - config options, how to input/handle?jd2009-06-19T20:29:56Z2009-06-19T20:29:56Zhadn't used SO enough to realize there are locking and/or race-condition issues - thanks for your answer s.l.http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars/989801#989801Comment by jd on xemacs: dotemacs config so that one can paste without getting "funny" charsjd2009-06-17T03:27:10Z2009-06-17T03:27:10Zthis worked; followed the links that you included above; installed latest xemacs version listed in the cygwin website (21.5 - experimental, but no problems) - thanks.http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars/929115#929115Comment by jd on xemacs: dotemacs config so that one can paste without getting "funny" charsjd2009-05-30T13:28:21Z2009-05-30T13:28:21Zupdate: i tried the above and get an error (symbol's function definition is void: set-clipboard-coding-system). Now I'm trying to figure out in which package that function is contained so that I can load it. I find that many people set this function in their config (mostly to deal with Asian languages' characters), so I feel I'm getting somewhere, just not there yet...http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars/928410#928410Comment by jd on xemacs: dotemacs config so that one can paste without getting "funny" charsjd2009-05-29T22:28:14Z2009-05-29T22:28:14Zthanks Adam - great to know what is going on; hopefully someone will know how to solve it.http://stackoverflow.com/questions/905160/python-example-difference-between-object-reference-and-object-copyComment by jd on python example: difference between object reference and object copyjd2009-05-25T03:36:40Z2009-05-25T03:36:40Zwhat's the point of this website/community? - to abide by jeopardy rules, or to try and share info that may be useful?http://stackoverflow.com/questions/879732/logging-with-filters/879937#879937Comment by jd on logging with filtersjd2009-05-18T21:36:40Z2009-05-18T21:36:40Zthanks that workedhttp://stackoverflow.com/questions/879732/logging-with-filters/879765#879765Comment by jd on logging with filtersjd2009-05-18T21:05:05Z2009-05-18T21:05:05Zthanks S.Lott for your reply; this would work; however, if i scaled my simple example to more modules and more funcs per module, i'd be concerned about lots of loggers; can i keep it down to 1 logger per module? note that the log messages are "structured", i.e. if the function(s) logging it are doing some parsing work, they all contain a prefix logger.debug("parsing: ...") - can i somehow with a single line just shut-off all "parsing" messages (regardless of the module/function emitting the message?)http://stackoverflow.com/questions/537685/django-database-design-mutiple-tables-require-1-phonenumbers/537735#537735Comment by jd on django - database design - mutiple tables require 1+ phone_number(s)jd2009-02-12T16:41:41Z2009-02-12T16:41:41Zhasen, i read the docs, used the generic relations approach, and it solved my problem. thanks again. http://stackoverflow.com/questions/537685/django-database-design-mutiple-tables-require-1-phonenumbers/537742#537742Comment by jd on django - database design - mutiple tables require 1+ phone_number(s)jd2009-02-11T17:25:39Z2009-02-11T17:25:39Zas with the first answer, thank you for the reply - I am reading the ContentType documentation.http://stackoverflow.com/questions/537685/django-database-design-mutiple-tables-require-1-phonenumbers/537735#537735Comment by jd on django - database design - mutiple tables require 1+ phone_number(s)jd2009-02-11T17:24:23Z2009-02-11T17:24:23Zthanks for the reply - I am reading the docs.http://stackoverflow.com/questions/167927/is-there-a-function-to-invoke-a-stack-dump-in-cComment by jd on Is there a function to invoke a stack dump in C?jd2008-10-04T17:58:51Z2008-10-04T17:58:51ZI was thinking of textual output; it seems that in gnu's libc case, backtrace() provides the bin output and backtrace_symbols() provides the textual output.http://stackoverflow.com/questions/167927/is-there-a-function-to-invoke-a-stack-dump-in-c/167959#167959Comment by jd on Is there a function to invoke a stack dump in C?jd2008-10-03T17:41:26Z2008-10-03T17:41:26ZThanks for the pointer Adam. I wanted to look at the source code to see how the back tracing was done. This is a link to the gnu source code repository - backtrace.c
<a href="http://cvs.savannah.gnu.org/viewvc/" rel="nofollow">cvs.savannah.gnu.org/viewvc</a>*checkout*/libc/debug/backtrace.c?root=libc&revision=1.1.2.1&content-type=text%2Fplain