User tim.tadh - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:39:19Z http://stackoverflow.com/feeds/user/14107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108665#108665 0 Answer by tim.tadh for What is your single favorite development tool? tim.tadh 2008-09-20T16:36:47Z 2009-08-20T15:52:13Z <p><a href="http://en.wikipedia.org/wiki/Kate%5F%28text%5Feditor%29" rel="nofollow">Kate</a> on KDE and on all other systems JEdit, they are both text editors. Kate is really good for Linux development because it has a console built in, and JEdit has the best search and replace tool I have found.</p> http://stackoverflow.com/questions/128259/what-is-the-best-way-to-store-set-data-in-python 4 What is the best way to store set data in Python? tim.tadh 2008-09-24T16:39:08Z 2008-09-24T19:40:55Z <p>Hello Stack-Overflow,</p> <p>Here is my situation. I have a list of data that looks like this:</p> <p>[(id__1_, description, id_type), (id__2_, description, id_type), ... , (id__n_, description, id_type))</p> <p>The data is loaded from multiple files that all belong to the same grouping. In each grouping there could be multiples of the same id, each coming from different files. I don't care about the duplicates, so I thought a nice way to store all of this would be to throw it into a Set type. However there is a problem, sometimes for the same id the descriptions can vary slightly like this,</p> <p>IPI00110753</p> <ul> <li>Tubulin alpha-1A chain</li> <li>Tubulin alpha-1 chain</li> <li>Alpha-tubulin 1</li> <li>Alpha-tubulin isotype M-alpha-1</li> </ul> <p>(Note this example is taken from the <a href="http://www.uniprot.org/uniprot/P68369" rel="nofollow">uniprot protein database</a>) </p> <p>Now I don't care if the descriptions vary. Initially it might seem like I could just throw them away (because I could look them up in a database later). However I can't do this because there is a chance that the protein database I am using will not contain a listing for a certain identifier. If this happens I will want to be able to display the human readable description to the biologists so they know roughly what protein they are looking at.</p> <p>I am currently solving this problem by using a dictionary type. However I don't really like this solution because it uses a lot of memory (I have a lot of these ID's). This is only an intermediary listing of them. There is some additional processing the ID's go through before they are placed in the database so I would like to keep my data-structure smaller.</p> <p>I have two questions really. First, will I get a smaller memory footprint using the Set type (over the dictionary type) for this, or should I use a sorted list where I check every time I insert into the list to see if the ID exists, or is there a third solution that I haven't thought of? If the Set type is the better answer how do I key it to look at just the first element of the tuple instead of the whole thing? </p> <p>Thank you for reading my question, <br> Tim</p> <p><strong>Update</strong></p> <p>based on some of the comments I received let me clarify a little. Most of what I do with data-structure is insert into it. I only read it twice, once to annotate it with additional information,* and once to do be inserted into the database. However down the line there may be additional annotation that is done before I insert into the database. Unfortunately I don't know if that will happen at this time. </p> <p>Right now I am looking into storing this data in a structure that is not based on a hash-table (ie. a dictionary). I would like the new structure to be fairly quick on insertion, but reading it can be linear since I only really do it twice. I am trying to move away from the hash table to save space. Is there a better structure or is a hash-table about as good as it gets?</p> <p>*The information is a list of Swiss-Prot protein identifiers that I get by querying uniprot.</p> http://stackoverflow.com/questions/124542/so-in-good-python-do-you-have-to-type-every-space-individually/124719#124719 0 Answer by tim.tadh for So in 'good' Python do you have to type every space individually? tim.tadh 2008-09-24T00:25:02Z 2008-09-24T00:25:02Z <p>I agree with all who said good text editors make all the difference so here are some I like. There are lot of others out there, but any one these will help you a lot.</p> <p>Cross-Platform:</p> <ul> <li>JEdit</li> </ul> <p>Windows:</p> <ul> <li>Notepad++</li> <li>TextPad</li> </ul> <p>Mac:</p> <ul> <li>TextWrangler </li> <li>TextMate</li> </ul> <p>Linux:</p> <ul> <li>Kate - KDE's text editor </li> <li>Vim (there is a version for windows too) </li> <li>EMacs - never used it myself, but people like it.</li> </ul> http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111908#111908 2 Answer by tim.tadh for What did you use to teach yourself python? tim.tadh 2008-09-21T19:57:23Z 2008-09-21T19:57:23Z <p>The book I used was Core Python Programming by Wesley J Chun. I believe it is a second edition now. I really liked it. I also have the Python Cookbook for a reference on how do specific tasks. The python library documentation is also really helpful. The best online community I found is the Python usenet group comp.lang.python.</p> http://stackoverflow.com/questions/109087/python-get-instance-variables/111876#111876 2 Answer by tim.tadh for Python - Get Instance Variables tim.tadh 2008-09-21T19:46:01Z 2008-09-21T19:46:01Z <p>Although not directly an answer to the OP question, there is a pretty sweet way of finding out what variables are in scope in a function. take a look at this code:</p> <pre><code>&gt;&gt;&gt; def f(x, y): z = x**2 + y**2 sqrt_z = z**.5 return sqrt_z &gt;&gt;&gt; f.func_code.co_varnames ('x', 'y', 'z', 'sqrt_z') &gt;&gt;&gt; </code></pre> <p>The func_code attribute has all kinds of interesting things in it. It allows you todo some cool stuff. Here is an example of how I have have used this:</p> <pre><code>def exec_command(self, cmd, msg, sig): def message(msg): a = self.link.process(self.link.recieved_message(msg)) self.exec_command(*a) def error(msg): self.printer.printInfo(msg) def set_usrlist(msg): self.client.connected_users = msg def chatmessage(msg): self.printer.printInfo(msg) if not locals().has_key(cmd): return cmd = locals()[cmd] try: if 'sig' in cmd.func_code.co_varnames and \ 'msg' in cmd.func_code.co_varnames: cmd(msg, sig) elif 'msg' in cmd.func_code.co_varnames: cmd(msg) else: cmd() except Exception, e: print '\n-----------ERROR-----------' print 'error: ', e print 'Error proccessing: ', cmd.__name__ print 'Message: ', msg print 'Sig: ', sig print '-----------ERROR-----------\n' </code></pre> http://stackoverflow.com/questions/108848/python-music-library/108936#108936 3 Answer by tim.tadh for Python Music Library? tim.tadh 2008-09-20T18:33:16Z 2008-09-20T22:35:40Z <p>I had to do this years ago. I used pymedia. I am not sure if it is still around any way here is some test code I wrote when I was playing with it. It is about 3 years old though.</p> <p><strong>Edit:</strong> The sample code plays an MP3 file</p> <pre><code>import pymedia import time demuxer = pymedia.muxer.Demuxer('mp3') #this thing decodes the multipart file i call it a demucker f = open(r"path to \song.mp3", 'rb') spot = f.read() frames = demuxer.parse(spot) print 'read it has %i frames' % len(frames) decoder = pymedia.audio.acodec.Decoder(demuxer.streams[0]) #this thing does the actual decoding frame = decoder.decode(spot) print dir(frame) #sys.exit(1) sound = pymedia.audio.sound print frame.bitrate, frame.sample_rate song = sound.Output( frame.sample_rate, frame.channels, 16 ) #this thing handles playing the song while len(spot) &gt; 0: try: if frame: song.play(frame.data) spot = f.read(512) frame = decoder.decode(spot) except: pass while song.isPlaying(): time.sleep(.05) print 'well done' </code></pre> http://stackoverflow.com/questions/108927/what-cs-class-has-helped-you-over-and-over/108928#108928 14 Answer by tim.tadh for What CS class has helped you over and over? tim.tadh 2008-09-20T18:29:00Z 2008-09-20T18:29:00Z <p>Data structures and Algorithms I use every time I program. So that class is definitely worth it.</p> http://stackoverflow.com/questions/102496/compatible-encryption-between-c-and-php-coldfusion-ruby-python/108757#108757 1 Answer by tim.tadh for Compatible encryption between C# and PHP, ColdFusion, Ruby, Python tim.tadh 2008-09-20T17:07:26Z 2008-09-20T17:07:26Z <p><a href="http://stackoverflow.com/questions/102496/compatible-encryption-between-c-and-php-coldfusion-ruby-python#102643">Ed Haber said</a></p> <blockquote> <p>I would use AES for the bulk data encryption and RSA for encrypting the AES Key. If the data is small enough then just encrypt the whole thing with RSA.</p> </blockquote> <p>I think this is a good solution. What I would do is have your application publish an API for getting a public RSA key. When I third party wants to send you something it gets the public key. It then generates a session key to do the actual encryption using a block cipher, (ie AES), and sends the key to you by encrypting with your public key. You decrypt the session key with your private key. The third party then encrypts the data it wants to send you with AES (using a padding scheme that you also publish) and sends it to you. You decrypt it using the session key.</p> <p>There are some problems with the method above. Since you are not sending any information (other than publishing your public key, you cannot control how the session key is generated. This means that third parties can use very insecure ways to of generating the session key and you will never know. A second problem is everyone who wants to send you data has to pad data for AES in the same way you do. So you will have to make sure every one co-ordinates. The second issue isn't to big, but the first could be a problem especially if you don't trust the third parties all that much to generate really good session keys from a good cryptographically secure random number generator</p> http://stackoverflow.com/questions/70653/python-authentication-api/80008#80008 4 Answer by tim.tadh for Python Authentication API tim.tadh 2008-09-17T04:31:02Z 2008-09-17T04:58:25Z <p>dbr said:</p> <blockquote> <pre><code>def hash_password(password): """Returns the hashed version of a string """ return hasher.new( str(password) ).hexdigest() </code></pre> </blockquote> <p>This is a really insecure way to hash passwords. You <em>don't</em> want to do this. If you want to know why read the <a href="http://www.openbsd.org/papers/bcrypt-paper.pdf" rel="nofollow" title="&quot;B-Crypt Paper">Bycrypt Paper</a> by the guys who did the password hashing system for OpenBSD. Additionally if want a good discussion on how passwords are broken check out <a href="http://www.securityfocus.com/columnists/388" rel="nofollow">this interview</a> with the author of Jack the Ripper (the popular unix password cracker).</p> <p>Now B-Crypt is great but I have to admit I don't use this system because I didn't have the EKS-Blowfish algorithm available and did not want to implement it my self. I use a slightly updated version of the FreeBSD system which I will post below. The gist is this. Don't just hash the password. Salt the password then hash the password and repeat 10,000 or so times.</p> <p>If that didn't make sense here is the code: </p> <pre><code>#note I am using the Python Cryptography Toolkit from Crypto.Hash import SHA256 HASH_REPS = 50000 def __saltedhash(string, salt): sha256 = SHA256.new() sha256.update(string) sha256.update(salt) for x in xrange(HASH_REPS): sha256.update(sha256.digest()) if x % 10: sha256.update(salt) return sha256 def saltedhash_bin(string, salt): """returns the hash in binary format""" return __saltedhash(string, salt).digest() def saltedhash_hex(string, salt): """returns the hash in hex format""" return __saltedhash(string, salt).hexdigest() </code></pre> <p>For deploying a system like this the key thing to consider is the HASH_REPS constant. This is the scalable cost factor in this system. You will need to do testing to determine what is the exceptable amount of time you want to wait for each hash to be computed versus the risk of an offline dictionary based attack on your password file. </p> <p>Security is hard, and the method I present is not the best way to do this, but it is significantly better than a simple hash. Additionally it is dead simple to implement. So even you don't choose a more complex solution this isn't the worst out there.</p> <p>hope this helps, Tim</p> http://stackoverflow.com/questions/78799/is-there-a-benefit-to-defining-a-class-inside-another-class-in-python/78968#78968 1 Answer by tim.tadh for Is there a benefit to defining a class inside another class in Python? tim.tadh 2008-09-17T01:34:41Z 2008-09-17T01:34:41Z <p>You could be using a class as class generator. Like (in some off the cuff code :)</p> <pre><code>class gen(object): class base_1(object): pass ... class base_n(object): pass def __init__(self, ...): ... def mk_cls(self, ..., type): '''makes a class based on the type passed in, the current state of the class, and the other inputs to the method''' </code></pre> <p>I feel like when you need this functionality it will be very clear to you. If you don't need to be doing something similar than it probably isn't a good use case.</p> <p>cheers tim</p> http://stackoverflow.com/questions/128259/what-is-the-best-way-to-store-set-data-in-python/128361#128361 Comment by tim.tadh on What is the best way to store set data in Python? tim.tadh 2008-09-24T20:48:35Z 2008-09-24T20:48:35Z This isn't premature optimization. The people who are using the alpha version have hit the inherit limits of my poor initial design. This is just one aspect of many design decisions I didn't think through. http://stackoverflow.com/questions/128259/what-is-the-best-way-to-store-set-data-in-python/128550#128550 Comment by tim.tadh on What is the best way to store set data in Python? tim.tadh 2008-09-24T20:43:07Z 2008-09-24T20:43:07Z thanks for posting the links to the parallelization libraries. I have thought about making my application multiprocess but haven't wanted to figure out the hard stuff. Maybe I will use one of these once I have the toolchain finished. http://stackoverflow.com/questions/128259/what-is-the-best-way-to-store-set-data-in-python/129396#129396 Comment by tim.tadh on What is the best way to store set data in Python? tim.tadh 2008-09-24T20:40:57Z 2008-09-24T20:40:57Z after looking at your code I conclude that your code processes the entire dataset in something like n*a*lg(a) where n is total number of elements in all sources and a is the number of sources. Hey that is still linear time which is pretty good. I haven't decided what to do yet but nice one. http://stackoverflow.com/questions/128259/what-is-the-best-way-to-store-set-data-in-python/128565#128565 Comment by tim.tadh on What is the best way to store set data in Python? tim.tadh 2008-09-24T17:42:42Z 2008-09-24T17:42:42Z This is an interesting solution but I will have to extend it to be able to use n sources (n could potentially 15 or 20), and allow for an id appearing twice in one of the sources. The source can be human assembled so I need allow for this possibility. In short, I will have do some time analysis. http://stackoverflow.com/questions/128259/what-is-the-best-way-to-store-set-data-in-python/128361#128361 Comment by tim.tadh on What is the best way to store set data in Python? tim.tadh 2008-09-24T17:07:01Z 2008-09-24T17:07:01Z Your examples of dictionaries are pretty close to what I currently have, however as I said I am looking for a solution that doesn't involve a hash table to cut down on memory. However I will continue using a dictionary if none of the other structures provide significant savings. http://stackoverflow.com/questions/124542/so-in-good-python-do-you-have-to-type-every-space-individually/124719#124719 Comment by tim.tadh on So in 'good' Python do you have to type every space individually? tim.tadh 2008-09-24T17:02:48Z 2008-09-24T17:02:48Z that is true. however I decided to put them under the linux category because a) that is where they were originally found, b) they are usually installed by default on linux, c) they were not specifically designed to be cross platform like JEdit was.