User Specto - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:25:22Z http://stackoverflow.com/feeds/user/54316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/711181/putty-with-transparent-background-and-opaque-text 0 Putty with Transparent Background and Opaque Text Specto 2009-04-02T19:11:38Z 2009-10-17T05:45:10Z <p>Is there a version of putty that has a transparent background with opaque text? If not is there a way to do this?</p> http://stackoverflow.com/questions/775231/directory-walker-for-python 1 Directory Walker for Python Specto 2009-04-22T00:19:13Z 2009-04-22T17:40:32Z <p>I am currently using the directory walker from <a href="http://effbot.org/librarybook/os-path-walk-example-3.py" rel="nofollow">Here</a></p> <pre><code>import os class DirectoryWalker: # a forward iterator that traverses a directory tree def __init__(self, directory): self.stack = [directory] self.files = [] self.index = 0 def __getitem__(self, index): while 1: try: file = self.files[self.index] self.index = self.index + 1 except IndexError: # pop next directory from stack self.directory = self.stack.pop() self.files = os.listdir(self.directory) self.index = 0 else: # got a filename fullname = os.path.join(self.directory, file) if os.path.isdir(fullname) and not os.path.islink(fullname): self.stack.append(fullname) return fullname for file in DirectoryWalker(os.path.abspath('.')): print file </code></pre> <p>This minor change allows you to have the full path within the file.</p> <p>Can anyone help me how to find just the filename as well using this? I need both the full path, and just the filename.</p> http://stackoverflow.com/questions/775619/online-flash-mp3-player-music-button 0 Online Flash Mp3 Player Music Button Specto 2009-04-22T03:48:59Z 2009-04-22T10:44:48Z <p>So I have a website that queries a database with information about music, with id3 information and file location information. I would like to use <a href="http://musicplayer.sourceforge.net/" rel="nofollow">THIS</a> to add a little playable mp3 player beside each of the search results, but I can't figure out how to do this without generating the xspf file, which would mean I would need an xspf file for every file in the database, which I don't want to do.</p> http://stackoverflow.com/questions/775049/python-time-seconds-to-hms 2 Python Time Seconds to h:m:s Specto 2009-04-21T23:08:16Z 2009-04-22T09:00:33Z <p>I have a function that returns information in seconds, but I need to store that information in hours:minutes:seconds. Is there an easy way to convert the seconds to this format in python?</p> http://stackoverflow.com/questions/775619/online-flash-mp3-player-music-button/775667#775667 1 Answer by Specto for Online Flash Mp3 Player Music Button Specto 2009-04-22T04:24:22Z 2009-04-22T04:24:22Z <p>Never mind, found out you don't need a playlist for one song if you don't want to.</p> http://stackoverflow.com/questions/775296/python-mysql-with-variables 0 Python mysql with variables Specto 2009-04-22T00:43:21Z 2009-04-22T02:20:57Z <p>I am having a hard time using the MySQLdb module to insert information into my database. I need to insert 6 variables into the table. </p> <pre><code>cursor.execute (""" INSERT INTO Songs (SongName, SongArtist, SongAlbum, SongGenre, SongLength, SongLocation) VALUES (var1, var2, var3, var4, var5, var6) """) </code></pre> <p>Can someone help me with the syntax here?</p> <p>Thanks guys, if figured out my other problem, db.commit().....</p> <p><a href="http://www.kitebird.com/articles/pydbapi.html" rel="nofollow">Some info on it here</a></p> http://stackoverflow.com/questions/775049/python-time-seconds-to-hms/775109#775109 -2 Answer by Specto for Python Time Seconds to h:m:s Specto 2009-04-21T23:26:52Z 2009-04-21T23:42:10Z <pre><code>def GetInHMS(seconds): hours = seconds / 3600 seconds -= 3600*hours minutes = seconds / 60 seconds -= 60*minutes if hours == 0: return "%d:%d" % (minutes, seconds) elif minutes == 0: return "%d" % (seconds) return "%d:%d:%d" % (hours, minutes, seconds) </code></pre> <p>This is not working for some reason. It keeps saying my tabbing is wrong...</p> <pre><code> File myfile.py, line 12 if hours == 0: ^ </code></pre> <p>IndentationError: unexpected indent</p> <h2>Possible Solution:</h2> <p>Try deleting all the indents, and then put them all back with individually typed spaces.</p> <h2>Also:</h2> <p>I'd recommend changing it to:</p> <pre><code>def GetInHMS(seconds): hours = seconds / 3600 seconds -= 3600*hours minutes = seconds / 60 seconds -= 60*minutes if hours == 0: return "%02d:%02d" % (minutes, seconds) if minutes == 0: return "%d" % (seconds) return "%d:%02d:%02d" % (hours, minutes, seconds) </code></pre> <p>The %02d's make it look prettier, and indenting the 'if minutes == 0' removes the logical error that might come up if you do have hours, but no minutes.</p> http://stackoverflow.com/questions/774502/python-scripted-mp3-database-with-a-php-front-end 2 Python scripted mp3 database, with a php front end Specto 2009-04-21T20:44:08Z 2009-04-21T21:13:49Z <p>So, here's the deal. I am attempting to write a quick python script that reads the basic id3 tags from an mp3 (artist, album, songname, genre, etc). The python script will use most likely the mutagen library (unless you know of a better one). I'm not sure how to recursively scan through a directory to get each mp3's tags, and then fill a database. Also, as far as the database end, I want to make it as solid as possible, so I was wondering if anyone had any ideas on how I should design the database itself. Should I just use one big table, should I use certain relationships, etc. I am not very good at relational databases so I would appreciate any help. Oh, this is running on a linux box.</p> http://stackoverflow.com/questions/711181/putty-with-transparent-background-and-opaque-text/759347#759347 1 Answer by Specto for Putty with Transparent Background and Opaque Text Specto 2009-04-17T07:21:10Z 2009-04-17T07:21:10Z <p>I have found the solution. Windows XP and below do not provide the functionality to do so, however someone from Japan wrote a patch for Putty to allow for aero and alpha background transparency. I believe it may be hardcoded in for Vista use only however because I can't get it to work with my Windows 7 boxes, and I refuse to use vista :). If you can help me out with this minor problem I would appreciate it.</p> <p><a href="http://translate.google.com/translate?hl=en&amp;sl=ja&amp;u=http://ice.hotmint.com/putty/&amp;ei=XSzoSb7mEYTCtwf43uWYBg&amp;sa=X&amp;oi=translate&amp;resnum=1&amp;ct=result&amp;prev=/search%3Fq%3Dputty%2Baero%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26hs%3DKwN" rel="nofollow">http://translate.google.com/translate?hl=en&amp;sl=ja&amp;u=http://ice.hotmint.com/putty/&amp;ei=XSzoSb7mEYTCtwf43uWYBg&amp;sa=X&amp;oi=translate&amp;resnum=1&amp;ct=result&amp;prev=/search%3Fq%3Dputty%2Baero%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26hs%3DKwN</a></p> http://stackoverflow.com/questions/436801/could-someone-provide-a-c-example-using-itemsearch-from-amazon-web-services 2 Could someone provide a C# example using itemsearch from Amazon Web Services Specto 2009-01-12T20:00:12Z 2009-02-24T18:16:11Z <p>I am trying to use Amazon Web Services to query Artist and title information and receive album art back. Using C# I cannot find any examples that come even close to this. All of the examples online are outdated and do not work with AWS' newer version.</p> http://stackoverflow.com/questions/775231/directory-walker-for-python/775249#775249 Comment by Specto on Directory Walker for Python Specto 2009-04-22T04:35:18Z 2009-04-22T04:35:18Z Can anyone help me how to find just the filename as well using this? I need both the full path, and just the filename. http://stackoverflow.com/questions/775231/directory-walker-for-python Comment by Specto on Directory Walker for Python Specto 2009-04-22T04:34:48Z 2009-04-22T04:34:48Z Can anyone help me how to find just the filename as well using this? I need both the full path, and just the filename. http://stackoverflow.com/questions/775296/python-mysql-with-variables/775381#775381 Comment by Specto on Python mysql with variables Specto 2009-04-22T01:42:14Z 2009-04-22T01:42:14Z figured it out, simply forgot to commit the cursor. http://stackoverflow.com/questions/775296/python-mysql-with-variables/775399#775399 Comment by Specto on Python mysql with variables Specto 2009-04-22T01:39:11Z 2009-04-22T01:39:11Z This is a backend, shouldn't have to worry about sql injections on myself. http://stackoverflow.com/questions/775296/python-mysql-with-variables/775344#775344 Comment by Specto on Python mysql with variables Specto 2009-04-22T01:38:18Z 2009-04-22T01:38:18Z That's fine in this case. SQL injections are no issue, this is a back end. http://stackoverflow.com/questions/775296/python-mysql-with-variables/775381#775381 Comment by Specto on Python mysql with variables Specto 2009-04-22T01:33:52Z 2009-04-22T01:33:52Z yes, in this case to make it quick and dirty, all tinytxt and varchars http://stackoverflow.com/questions/775296/python-mysql-with-variables/775344#775344 Comment by Specto on Python mysql with variables Specto 2009-04-22T01:32:46Z 2009-04-22T01:32:46Z any ideas on what I put below? http://stackoverflow.com/questions/775231/directory-walker-for-python/775249#775249 Comment by Specto on Directory Walker for Python Specto 2009-04-22T00:32:14Z 2009-04-22T00:32:14Z worked great thanks. http://stackoverflow.com/questions/775049/python-time-seconds-to-hms/775109#775109 Comment by Specto on Python Time Seconds to h:m:s Specto 2009-04-21T23:55:58Z 2009-04-21T23:55:58Z ya, I wasn't thinking right when I did that, but thanks again! http://stackoverflow.com/questions/775049/python-time-seconds-to-hms/775109#775109 Comment by Specto on Python Time Seconds to h:m:s Specto 2009-04-21T23:33:20Z 2009-04-21T23:33:20Z weird, oh well, vim is crazy sometimes. http://stackoverflow.com/questions/775049/python-time-seconds-to-hms/775068#775068 Comment by Specto on Python Time Seconds to h:m:s Specto 2009-04-21T23:32:08Z 2009-04-21T23:32:08Z Hrm, I keep getting an error, posted below. http://stackoverflow.com/questions/775049/python-time-seconds-to-hms/775068#775068 Comment by Specto on Python Time Seconds to h:m:s Specto 2009-04-21T23:17:03Z 2009-04-21T23:17:03Z Is there any way to not show hours if there is a 0 there easily? http://stackoverflow.com/questions/774502/python-scripted-mp3-database-with-a-php-front-end/774547#774547 Comment by Specto on Python scripted mp3 database, with a php front end Specto 2009-04-21T20:55:24Z 2009-04-21T20:55:24Z I never thought to google the database design, thanks, any idea on the recursive mp3 search though? http://stackoverflow.com/questions/711181/putty-with-transparent-background-and-opaque-text/759347#759347 Comment by Specto on Putty with Transparent Background and Opaque Text Specto 2009-04-17T07:36:03Z 2009-04-17T07:36:03Z Oh, it does work never mind, I just have a hard time reading japanese, especially with unsupported characters on my system. Oh and not being able to read japanese, that's a problem too. Anyone want to translate? This is perfect :) http://stackoverflow.com/questions/711181/putty-with-transparent-background-and-opaque-text/759347#759347 Comment by Specto on Putty with Transparent Background and Opaque Text Specto 2009-04-17T07:21:21Z 2009-04-17T07:21:21Z <a href="http://translate.google.com/translate?hl=en&amp;sl=ja&amp;u=http://ice.hotmint.com/putty/&amp;ei=XSzoSb7mEYTCtwf43uWYBg&amp;sa=X&amp;oi=translate&amp;resnum=1&amp;ct=result&amp;prev=/search%3Fq%3Dputty%2Baero%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26hs%3DKwN" rel="nofollow">translate.google.com/translate?hl=en&amp;sl=ja&am&hellip;</a>