User crystalattice - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T13:56:03Z http://stackoverflow.com/feeds/user/18676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/153712/creating-music-visualizer 6 Creating music visualizer crystalattice 2008-09-30T15:59:10Z 2009-12-09T17:13:30Z <p>So how does someone create a music visualizer? I've looked on Google but I haven't really found anything that talks about the actual programming; mostly just links to plug-ins or visualizing applications.</p> <p>I use iTunes but I realize that I need Xcode to program for that (I'm currently deployed in Iraq and can't download that large of a file). So right now I'm just interested in learning "the theory" behind it, like processing the frequencies and whatever else is required.</p> http://stackoverflow.com/questions/228912/sqlite-parameter-substitution-problem 1 SQLite parameter substitution problem crystalattice 2008-10-23T08:13:36Z 2009-10-03T22:35:44Z <p>Using SQLite3 with Python 2.5, I'm trying to iterate through a list and pull the weight of an item from the database based on the item's name.</p> <p>I tried using the "?" parameter substitution suggested to prevent SQL injections but it doesn't work. For example, when I use:</p> <pre><code>for item in self.inventory_names: self.cursor.execute("SELECT weight FROM Equipment WHERE name = ?", item) self.cursor.close() </code></pre> <p>I get the error:</p> <blockquote> <p>sqlite3.ProgrammingError: Incorrect number of bindings supplied. The current statement uses 1, and there are 8 supplied.</p> </blockquote> <p>I believe this is somehow caused by the initial creation of the database; the module I made that actually creates the DB does have 8 bindings.</p> <pre><code>cursor.execute("""CREATE TABLE Equipment (id INTEGER PRIMARY KEY, name TEXT, price INTEGER, weight REAL, info TEXT, ammo_cap INTEGER, availability_west TEXT, availability_east TEXT)""") </code></pre> <p>However, when I use the less-secure "%s" substitution for each item name, it works just fine. Like so:</p> <pre><code>for item in self.inventory_names: self.cursor.execute("SELECT weight FROM Equipment WHERE name = '%s'" % item) self.cursor.close() </code></pre> <p>I can't figure out why it thinks I have 8 bindins when I'm only calling one. How can I fix it?</p> http://stackoverflow.com/questions/211501/using-sqlite-in-a-python-program 5 Using SQLite in a Python program crystalattice 2008-10-17T09:02:12Z 2009-09-13T05:07:20Z <p>I have created a Python module that creates and populates several SQLite tables. Now, I want to use it in a program but I don't really know how to call it properly. All the tutorials I've found are essentially "inline", i.e. they walk through using SQLite in a linear fashion rather than how to actually use it in production.</p> <p>What I'm trying to do is have a method check to see if the database is already created. If so, then I can use it. If not, an exception is raised and the program will create the database. (Or use if/else statements, whichever is better).</p> <p>I created a test script to see if my logic is correct but it's not working. When I create the try statement, it just creates a new database rather than checking if one already exists. The next time I run the script, I get an error that the table already exists, even if I tried catching the exception. (I haven't used try/except before but figured this is a good time to learn).</p> <p>Are there any good tutorials for using SQLite operationally or any suggestions on how to code this? I've looked through the pysqlite tutorial and others I found but they don't address this.</p> http://stackoverflow.com/questions/157211/open-source-fractal-maps 4 Open-source fractal maps crystalattice 2008-10-01T11:40:46Z 2009-08-07T22:56:10Z <p>I'm interested in creating a game that uses fractal maps for more realistic geography. However, the only fractal map programs I have found are Windows-only, for example <a href="http://www.nbos.com/products/mapper/mapper.htm" rel="nofollow">Fractal Mapper</a>. Needless to say, they are also not open-sourced.</p> <p>Are there any open-sourced fractal map creators available, preferably in Python or C/C++? Ideally I would like something that can be "plugged into" a program, rather then being standalone.</p> http://stackoverflow.com/questions/148042/using-or-comparisons-with-if-statements 1 Using OR comparisons with IF statements crystalattice 2008-09-29T09:12:24Z 2009-07-12T00:33:01Z <p>When using IF statements in Python, you have to do the following to make the "cascade" work correctly.</p> <pre><code>if job == "mechanic" or job == "tech": print "awesome" elif job == "tool" or job == "rock": print "dolt" </code></pre> <p>Is there a way to make Python accept multiple values when checking for "equals to"? For example,</p> <pre><code>if job == "mechanic" or "tech": print "awesome" elif job == "tool" or "rock": print "dolt" </code></pre> http://stackoverflow.com/questions/142799/define-production-ready 3 Define "production-ready" crystalattice 2008-09-27T02:41:43Z 2009-04-28T16:21:20Z <p>I have been curious about this for a while. What exactly is meant by "production-ready" or its variants? Most recently I was looking for information about sqlite and found <a href="http://stackoverflow.com/questions/3630/sqlite-vs-mysql">this thread</a>, where many people suggest sqlite isn't ready for production.</p> <p>I know the difference between development/testing and production; my definition of production is anything that is provided to the customer or will be used by non-programmers. </p> <p>However, there seem to be many items that aren't defined as production-ready. But in reality, they may be perfectly suited and people just have a predujice against them, e.g. sqlite, python, non-MS products, etc.</p> <p>Small office vs. enterprise? Single user vs. multi-user? Client vs. server? Where do you draw the line?</p> http://stackoverflow.com/questions/169975/what-to-include-in-a-beginners-programming-book 1 What to include in a beginner's programming book? crystalattice 2008-10-04T08:25:04Z 2009-02-24T13:16:28Z <p>As a follow-up to my <a href="http://stackoverflow.com/questions/166468/is-it-worthwile-to-write-a-programming-tutorial-book">previous question</a>, what sort of information should I make sure to include in a tutorial book and what should I avoid? In other words, what would you have liked to have known when first starting with Python or wxPython?</p> <p>Right now I am just planning on restructing the tutorials I have already created and other editing tasks. But I want to make sure that I cover topics that are important for a beginning programmer while eliminating fluff and "too advanced" topics. Space is not an issue since it will be an ebook.</p> http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app 11 Browser-based application or stand-alone GUI app? crystalattice 2008-11-01T03:25:09Z 2009-02-22T07:41:51Z <p>I'm sure this has been asked before, but I can't find it. </p> <p>What are the benefits/limitations of using a browser-based interface for a stand-alone application vs. using a normal GUI framework?</p> <p>I'm working on a Python program currently implement with wxPython for the GUI. The application is simply user-entry forms and dialogs. I am considering moving to PyQt because of the widgets it has (for future expansion), then I realized I could probably just use a browser to do much of the same stuff.</p> <p>The application currently doesn't require Internet access, though it's a possibility in the future. I was thinking of using <a href="http://karrigell.sourceforge.net/" rel="nofollow">Karrigell</a> for the web framework if I go browser-based.</p> <p><hr /></p> <p><strong>Edit</strong> For clarification, as of right now the application would be browser-based, not web-based. All the information would be stored locally on the client computer; no server calls would need to be made and no Internet access required (it may come later though). It would simply be a browser GUI instead of a wxPython/PyQt GUI. Hope that makes sense.</p> http://stackoverflow.com/questions/166468/is-it-worthwhile-to-write-a-programming-tutorial-book 12 Is it worthwhile to write a programming tutorial book? crystalattice 2008-10-03T11:46:25Z 2009-01-08T14:53:49Z <p>I have written an introductory <a href="http://www.gidnetwork.com/b-26.html" rel="nofollow">Python tutorial</a> and I'm working on one for <a href="http://crystalattice.gidblog.com/2008/09/29/developing-guis-with-wxpython-part-1/" rel="nofollow">wxPython</a>. My Python tutorial was used at a college for a programming introduction class.</p> <p>I know the answer is probably "if you want to", but I'm curious to know if I should take the time to formalize my tutorials into a book format, most likely as an ebook. I don't know enough to compete with the "big boys" of publishing but I think the format would be better structured and easier to learn if it was in a book style. I especially don't expect to make any money with it, though I wouldn't mind it :-).</p> <p>However, I don't want to waste my time doing something that ultimately won't be of much use to people. I know there are many tutorials and books available, especially for these two topics. Is there room for another set of beginner books?</p> <p><hr /></p> <p><strong>Update</strong> For those who are interested/curious, I have been working on the book and have drafted several chapters. The web site is <a href="http://python-ebook.blogspot.com" rel="nofollow">http://python-ebook.blogspot.com</a>. Comments are welcome.</p> http://stackoverflow.com/questions/17988/how-to-learn-python/319681#319681 0 Answer by crystalattice for How to Learn Python crystalattice 2008-11-26T03:34:35Z 2008-11-26T03:34:35Z <p>I'm writing a <a href="http://python-ebook.blogspot.com" rel="nofollow">Intro to Programming</a> book using Python. It's an ebook and will be free, if cost is a concern.</p> http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/319673#319673 0 Answer by crystalattice for What did you use to teach yourself python? crystalattice 2008-11-26T03:31:20Z 2008-11-26T03:31:20Z <p>Well, to put in a blatant plug, I'm writing a <a href="http://python-ebook.blogspot.com" rel="nofollow">Intro to Programming book</a> using Python. It's an ebook and will be free, if cost is a concern.</p> http://stackoverflow.com/questions/237859/formatting-dict-items-for-wxpython/297811#297811 0 Answer by crystalattice for Formatting dict.items() for wxPython crystalattice 2008-11-18T03:57:39Z 2008-11-18T03:57:39Z <p>I figured out a "better" way of formatting the output. As usual, I was trying to nuke it out when a more elegant method will do.</p> <pre><code>for key, value in sorted(self.dict.items()): self.current_list.WriteText(key + " " + str(self.dict[key]) + "\n") </code></pre> <p>This way also sorts the dictionary alphabetically, which is a big help when identifying items that have already been selected or used.</p> http://stackoverflow.com/questions/237859/formatting-dict-items-for-wxpython 1 Formatting dict.items() for wxPython crystalattice 2008-10-26T10:50:34Z 2008-11-18T03:57:39Z <p>I have a text box in wxPython that takes the output of dictionary.items() and displays it to the user as items are added to the dictionary. However, the raw data is very ugly, looking like </p> <pre><code>[(u'BC',45) (u'CHM',25) (u'CPM',30)] </code></pre> <p>I know dictionary.items() is a list of tuples, but I can't seem to figure out how to make a nice format that is also compatible with the SetValue() method of wxPython.</p> <p>I've tried iterating through the list and tuples. If I use a <em>print</em> statement, the output is fine. But when I replace the <em>print</em> statement with SetValue(), it only seems to get the last value of each tuple, rather than both items in the tuple.</p> <p>I've also tried creating a string and passing that string to SetValue() but, again, I can only get one item in the tuple or the other, not both.</p> <p>Any suggestions?</p> <p><hr /></p> <p><strong>Edit:</strong> Yes, I am passing the results of the dictionary.items() to a text field in a wxPython application. Rather than having the results like above, I'm simply looking for something like:</p> <pre><code>BC 45 CHM 25 CMP 30 </code></pre> <p>Nothing special, just simply pulling each value from each tuple and making a visual list.</p> <p>I have tried making a string format and passing that to SetValue() but it gets hung up on the two values in the tuple. It will either double print each string and add the integers together or it simply returns the integer, depending on how I format it.</p> http://stackoverflow.com/questions/296624/how-do-you-appropriately-value-work-from-developers-that-provide-stuff-to-the-com/297781#297781 2 Answer by crystalattice for How do you appropriately value work from developers that provide stuff to the community? crystalattice 2008-11-18T03:33:28Z 2008-11-18T03:33:28Z <p>The only problem I see with trying to split some money between contributors to the modules is finding out who contributed. Unless the modules were solely written by named individuals, open-source projects are typically a conglomeration of inputs from various people. </p> <p>For example, the Linux kernel is managed by Linus Torvalds but receives source code from many different people. Who would be the receipients of the money? On the other hand, the SPE Python editor is managed and coded by one person; there may be some source code donations by others but mostly it's just one guy.</p> <p>In cases where the module is truly a community effort, I think it makes more sense to contribute to the community itself, rather than individuals. Ergo, a financial donation to Python.org (which you are already doing) or to the project(s) that manage the modules you used (if any exist). Otherwise some of the suggestions <strong>ddaa</strong> made are probably better.</p> http://stackoverflow.com/questions/286486/accounting-for-a-changing-path 1 Accounting for a changing path crystalattice 2008-11-13T08:10:28Z 2008-11-14T02:27:02Z <p>In relation to <a href="http://stackoverflow.com/questions/283431/why-would-an-command-not-recognized-error-occur-only-when-a-window-is-populated">another question</a>, how do you account for paths that may change? For example, if a program is calling a file in the same directory as the program, you can simply use the path ".\foo.py" in *nix. However, apparently Windows likes to have the path hard-coded, e.g. "C:\Python_project\foo.py".</p> <p>What happens if the path changes? For example, the file may not be on the C: drive but on a thumb drive or external drive that can change the drive letter. The file may still be in the same directory as the program but it won't match the drive letter in the code.</p> <p>I want the program to be cross-platform, but I expect I may have to use <strong>os.name</strong> or something to determine which path code block to use.</p> http://stackoverflow.com/questions/286486/accounting-for-a-changing-path/286914#286914 -1 Answer by crystalattice for Accounting for a changing path crystalattice 2008-11-13T13:37:10Z 2008-11-14T02:27:02Z <p>I figured out by using <strong>os.getcwd()</strong>. I also learned about using <strong>os.path.join</strong> to automatically determine the correct path format based on the OS. Here's the code:</p> <pre><code>def openNewRecord(self, event): # wxGlade: CharSheet.&lt;event_handler&gt; """Create a new, blank record sheet.""" path = os.getcwd() subprocess.Popen(os.path.join(path, "TW2K_char_rec_sheet.py"), shell=True).stdout </code></pre> <p>It appears to be working. Thanks for the ideas.</p> http://stackoverflow.com/questions/283431/why-would-an-command-not-recognized-error-occur-only-when-a-window-is-populated 1 Why would an "command not recognized" error occur only when a window is populated? crystalattice 2008-11-12T09:38:53Z 2008-11-13T07:27:55Z <p>My record sheet app has a menu option for creating a new, blank record sheet. When I open a sheet window, I can open new windows without a problem, using subprocess.Popen() to do it.</p> <p>However, under Windows (I haven't tested it on other OSes yet), if I open a new window then use the "open file" dialog to populate the fields with data from a file, I'm no longer able to create new windows. Once it's populated, Windows gives me the </p> <blockquote> <p>'foo.py' is not recognized as an internal or external command, operable program or batch file.</p> </blockquote> <p>I don't understand what would cause Windows to suddenly not recognize the Popen() call. I don't have any code that would affect it in any way that I'm aware of.</p> http://stackoverflow.com/questions/283431/why-would-an-command-not-recognized-error-occur-only-when-a-window-is-populated/286436#286436 0 Answer by crystalattice for Why would an "command not recognized" error occur only when a window is populated? crystalattice 2008-11-13T07:27:55Z 2008-11-13T07:27:55Z <p>The suggested answer seems to have fixed the problem. I also realized that I needed to use <strong>os.name</strong> to determine which OS is being used, then I can use the correct path format for loading the external Python file.</p> http://stackoverflow.com/questions/283766/pickled-file-wont-load-on-mac-linux 1 Pickled file won't load on Mac/Linux crystalattice 2008-11-12T12:15:52Z 2008-11-12T15:46:22Z <p>I have an application that imports data from a pickled file. It works just fine in Windows but Mac and Linux behaviour is odd.</p> <p>In OS X, the pickled file (file extension ".char") is unavailable as a selection unless I set the file type to *.*. Then, if I select a file that has the .char extension, it won't load, giving the error</p> <blockquote> <pre><code>unpickle_file = cPickle.load(char_file) </code></pre> <p>ValueError: could not convert string to float</p> </blockquote> <p>However, if I create a file that doesn't have the .char extension, that file will load up just fine.</p> <p>In Linux, when I use the "file open" dialog, my pickled files aren't visible, whether or not they have a file extension. However, I can see them under Nautilus or Dolphin. They simply don't exist to my application though.</p> <p><hr /></p> <p><strong>Edit</strong> Here's the save code:</p> <pre><code>def createSaveFile(self): """Create the data files to be saved and save them. Creates a tuple comprised of a dictionary of general character information and the character's skills dictionary.""" if self.file_name: self.save_data = ({'Name':self.charAttribs.name, &lt;snip&gt; self.charAttribs.char_skills_dict) self.file = open(self.file_name, 'w') cPickle.dump(self.save_data, self.file) self.file.close() </code></pre> <p>Here's the open code:</p> <pre><code> def getCharFile(self, event): # wxGlade: CharSheet.&lt;event_handler&gt; """Retrieve pickled character file from disk.""" wildcard = "Character files (*.char) | *.char | All files (*.*) | *.*" openDialog = wx.FileDialog(None, "Choose a character file", os.getcwd(), "", wildcard, wx.OPEN | wx.CHANGE_DIR) if openDialog.ShowModal() == wx.ID_OK: self.path = openDialog.GetPath() try: char_file = open(self.path, "r") unpickle_file = cPickle.load(char_file) char_data, char_skills = unpickle_file self.displayCharacter(char_data, char_skills) except IOError: self.importError = wx.MessageDialog(self, "The character file is not available!", "Character Import Error", wx.OK | wx.ICON_ERROR) self.importError.ShowModal() self.importError.Destroy() openDialog.Destroy() </code></pre> http://stackoverflow.com/questions/280324/when-is-self-required 4 When is "self" required? crystalattice 2008-11-11T08:24:00Z 2008-11-11T11:05:39Z <p>I have been using classes for only a short while and when I write a method, I make all variables reference self, e.g. self.foo.</p> <p>However, I'm looking through the <em>wxPython in Action</em> book and notice that "self" isn't used all the time. For example:</p> <pre><code> import wx class TextFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None, -1, 'Text Entry Example', size=(300, 100)) panel = wx.Panel(self, -1) basicLabel = wx.StaticText(panel, -1, "Basic Control:") basicText = wx.TextCtrl(panel, -1, "I've entered some text!", size=(175, -1)) basicText.SetInsertionPoint(0) pwdLabel = wx.StaticText(panel, -1, "Password:") pwdText = wx.TextCtrl(panel, -1, "password", size=(175, -1), style=wx.TE_PASSWORD) sizer = wx.FlexGridSizer(cols=2, hgap=6, vgap=6) sizer.AddMany([basicLabel, basicText, pwdLabel, pwdText]) panel.SetSizer(sizer) </code></pre> <p>The one below does use "self".</p> <pre><code>import wx class ButtonFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None, -1, 'Button Example', size=(300, 100)) panel = wx.Panel(self, -1) self.button = wx.Button(panel, -1, "Hello", pos=(50, 20)) self.Bind(wx.EVT_BUTTON, self.OnClick, self.button) self.button.SetDefault() def OnClick(self, event): self.button.SetLabel("Clicked") </code></pre> <p>If I remember correctly, "self" is reference to a particular instance of the class, so when is it not necessary? Is there a general rule of thumb?</p> http://stackoverflow.com/questions/275756/whats-the-difference-between-all-of-the-os-popen-methods 6 What's the difference between all of the os.popen() methods? crystalattice 2008-11-09T08:50:12Z 2008-11-10T01:13:32Z <p>I was looking at the <a href="http://www.python.org/doc/2.5.2/lib/module-popen2.html" rel="nofollow">Python documentation</a> and saw that there are 4-5 different versions of popen(), e.g. os.popen(), os.popen2(), etc. </p> <p>Apart from the fact that some include <em>stderr</em> while others don't, what are the differences between them and when would you use each one? The documentation didn't really explain it very well.</p> http://stackoverflow.com/questions/259160/did-anyone-try-portable-python/260661#260661 2 Answer by crystalattice for Did anyone try Portable Python ? crystalattice 2008-11-04T02:43:49Z 2008-11-04T02:43:49Z <p>I have been using Portable Python for about 3 months and have had no problems with it. You don't get the features of Movable Python but Portable Python is free.</p> <p>I have it on a thumbdrive that I take to work (Windows computers) so I can work on projects there. Then I can take it home and import the projects into Linux/Mac for refinement.</p> <p>I have installed wxPython, wxGlade, and <a href="http://www.instantdjango.com/" rel="nofollow">portable Django</a> on the thumbdrive also, creating an all-in-one Python development environment.</p> http://stackoverflow.com/questions/260165/whats-the-best-way-to-generate-a-uml-diagram-from-python-source-code/260649#260649 0 Answer by crystalattice for What's the best way to generate a UML diagram from Python source code? crystalattice 2008-11-04T02:37:07Z 2008-11-04T02:37:07Z <p>The <a href="http://pythonide.blogspot.com" rel="nofollow">SPE</a> IDE has built-in UML creator. Just open the files in SPE and click on the UML tab.</p> <p>I don't know how comprhensive it is for your needs, but it doesn't require any additional downloads or configurations to use.</p> http://stackoverflow.com/questions/249064/i-need-a-really-good-reason-to-use-python/249258#249258 1 Answer by crystalattice for I need a really good reason to use Python. crystalattice 2008-10-30T04:16:21Z 2008-10-30T04:16:21Z <p>Well, <a href="http://www.paulgraham.com/pypar.html" rel="nofollow">here's a view</a> of why Python programmers make better Java programmers; the concepts are much the same as for your situation.</p> <p>Essentially, people who learn a language because they want to show that they enjoy programming, like to learn new things, and are more likely to think outside the box.</p> <blockquote> <p>...if a company chooses to write its software in a comparatively esoteric language, they'll be able to hire better programmers, because they'll attract only those who cared enough to learn it. And for programmers the paradox is even more pronounced: the language to learn, if you want to get a good job, is a language that people don't learn merely to get a job.</p> </blockquote> <p>Not only that, but Python enforces "good looking" code and you don't have to do the whole code/compile routine. With IronPython, you can simply code in Python and use it as is; just another .NET tool.</p> http://stackoverflow.com/questions/224337/alternatives-to-a-wizard 1 Alternatives to a wizard crystalattice 2008-10-22T02:54:17Z 2008-10-29T17:38:48Z <p>I'm making a program that fits the wizard concept ideally; the user is walked through the steps to create a character for a game.</p> <p>However, I'm realizing that the limitations of the wizard are making it difficult to design "elegant" logic flow. For example, because all pages of the wizard are initalized at the same time, I can't have the values entered in one page available to the next one. I have to put a button on each page to get the values from a previous page rather than simply having fields auto-populated.</p> <p>I've thought about alternatives to using the wizard. I think the best idea is to have some buttons on one panel that change the information on another panel, e.g. a splitter window.</p> <p>However, I can't find any documentation in wxPython on how to dynamically change the panel. Everything I've found so far is really pretty static, hence the use of the wizard. Even the "wxPython in Action" book doesn't mention it.</p> <p>Are there any tutorials for making "dynamic panels" or better management of a wizard?</p> http://stackoverflow.com/questions/237876/refactoring-to-hit-values-for-a-game 1 Refactoring "to hit" values for a game crystalattice 2008-10-26T11:08:32Z 2008-10-27T05:14:52Z <p>I'm making a game and one of the methods calculates a character's base hit numbers based on skill values. The method currently calculates each value individually, since each skill can be used at short, medium, and long range.</p> <p>I originally thought I could combine the skills into a tuple and iterate over it, dynamically creating each hit number. But I don't know if it's actually possible, since I currently have each hit number assigned to it's own variable.</p> <p>I also thought about creating a method for each range, and passing the tuple as an argument. I could create a new tuple or list with the resulting values and then assign them to the individual variables, but I don't see how it would be any better than do it this way, except that it won't look so copy &amp; pasted.</p> <p>Here's what I currently have:</p> <pre><code> def calcBaseHitNumbers(self, dict): """Calculate character's base hit numbers depending on skill level.""" self.skill_dict = dict self.rifle = self.skill_dict.get('CRM', 0) self.pistol = self.skill_dict.get('PST', 0) self.big_gun = self.skill_dict.get('LCG', 0) self.heavy_weapon = self.skill_dict.get('HW', 0) self.bow = self.skill_dict.get('LB', 0) #self.skill_tuple = (self.rifle, self.pistol, self.big_gun, self.heavy_weapon, # self.bow) #---Short range ## for skill in self.skill_tuple: ## self.base_hit_short = skill * 0.6 self.charAttribs.bhCRM_short = self.rifle * 0.6 self.charAttribs.bhPST_short = self.pistol * 0.6 self.charAttribs.bhHW_short = self.heavy_weapon * 0.6 self.charAttribs.bhLCG_short = self.big_gun * 0.6 self.charAttribs.bhLB_short = self.bow * 0.6 #---Med range self.charAttribs.bhCRM_med = self.rifle * 0.3 self.charAttribs.bhPST_med = self.pistol * 0.3 self.charAttribs.bhHW_med = self.heavy_weapon * 0.3 self.charAttribs.bhLCG_med = self.big_gun * 0.3 self.charAttribs.bhLB_med = self.bow * 0.3 #---Long range self.charAttribs.bhCRM_long = self.rifle * 0.1 self.charAttribs.bhPST_long = self.pistol * 0.1 self.charAttribs.bhHW_long = self.heavy_weapon * 0.1 self.charAttribs.bhLCG_long = self.big_gun * 0.1 self.charAttribs.bhLB_long = self.bow * 0.1 </code></pre> <p>How would you refactor this so it's more dynamic?</p> <p><hr /></p> <p><strong>Edit:</strong> I guess what I want to do is something like this: Have a tuple (like the one I commented out) and iterate over it 3 times, each time making a new value (for each skill) based on the modifier for each particular range. The resulting value is then automatically assigned to it's respective variable.</p> <p>In my head, it makes sense. But when I actually try to code it, I get lost. The problem, I think, is that this is the first "real" program I've written; all I've done before are small scripts.</p> <p>This is only the 0.1 version of my program, so it's not critical to refactor it now. However, it seems very un-Pythonic to do this manually and I also want to "future-proof" this in case things change down the road.</p> http://stackoverflow.com/questions/233346/to-buy-or-to-build-that-is-the-question/233448#233448 2 Answer by crystalattice for To Buy or To Build That is The Question crystalattice 2008-10-24T13:05:11Z 2008-10-24T13:05:11Z <p>My experience: I became project manager of a content management system. The project, when I took over, was 4 years late and several million dollars over budget.</p> <p>When originally considered, it had been decided to use Zope because it was open-source and "we can extend it to do what we need". It was felt that it would be cheaper to simply customize it rather than buy a proprietary product.</p> <p>Unfortunately, it required too much customization for our needs so a contract was signed with the Zope corp. to customize it for us (Zope 3 was built based on our needs). Due to poor management, the project specs continuously changed so the Zope people were never able to give a working product to us.</p> <p>When I came onboard, I was able to kill off the project and we ended up buying an OTS product that met most of our needs well enough that we could use it. Though they spent 5 years and millions of dollars on Zope, we never once got a product that we could even user test, much less put into production.</p> <p>So, my advice is to ensure that your in-house version can actually be built in-house. Any outside assistance you may require needs to be heavily negotiated and the contract managed correctly.</p> <p>You may consider using an open-source product and building upon it. Just be aware of the limitations it may have and how much work your in-house programmers may need to do to it. If you have the talent, time, and money then rolling your own will probably be better in the long run. </p> <p>If you do buy OTS, ensure that it has good API and other developer support so you don't have to have all customization done by the company itself.</p> http://stackoverflow.com/questions/233249/ethics-of-open-source-copy-of-proprietary-software/233385#233385 3 Answer by crystalattice for Ethics of Open Source Copy of Proprietary Software crystalattice 2008-10-24T12:51:35Z 2008-10-24T12:51:35Z <p>You don't. It's not your place to worry about taking money away from a closed-source program. If the your program is making life difficult for Developer A, then he needs to get off his butt and improve his product so it becomes desirable.</p> <p>One of the problems with the current legal arena is the belief that infringing on a business plan is illegal. It's not; it's simply competition. You either evolve and adapt or you die.</p> <p>Look at Microsoft. After Netscape was killed off, MS rested on its laurels with Internet Explorer. It took Firefox to come along and get some significant market share before MS decided to improve IE.</p> <p>Developer A is perfectly able to open-source his application and make money in an alternative fashion, the most common being pay-for-support. But he could also sell T-shirts with the application's logo, provide a manual for a small donation, etc. Or he can keep it closed-source and hope that people are willing to pay for the feature-set, convenience, or whatever.</p> <p>Just because someone thinks the only way to make money is by selling closed-source programs doesn't mean everyone has to agree. Personally, if I ever decide to try and make money with my programs, I will provide the source code for free but charge for binaries. That way "lazy" people can pay me for my services while savvy people can built from source. It's a similar idea for Trolltech's license agreements for Qt.</p> http://stackoverflow.com/questions/226069/how-long-do-you-program-before-you-need-to-take-a-break 4 How long do you program before you (need to) take a break? crystalattice 2008-10-22T14:48:15Z 2008-10-23T11:04:05Z <p>I'm only a hobbyist programmer, so maybe my body isn't used to it. But I've found that I can only code for a few hours (usually 3) before I need to take a break.</p> <p>I move around quite a bit while I'm sitting, so it's not because of back pain or anything like that. Nor do I suffer a lot of eyestraing because I have a habit of glancing around somewhat frequently. The biggest reason is mental fatigue, sometimes even boredom.</p> <p>So how long can you code for before you take a break? Do you have to remind yourself to take a break, e.g. a timer of some sort? What was the longest you coded for in one shot? What do you do to "recover" during your break?</p> <p>I'm just curious how much endurance I need to build up in case I ever decide to program professionally.</p> http://stackoverflow.com/questions/228181/zen-of-python/228385#228385 0 Answer by crystalattice for zen of python crystalattice 2008-10-23T02:56:47Z 2008-10-23T02:56:47Z <p>This will probably be downvoted, but take a look at <a href="http://99-bottles-of-beer.net/" rel="nofollow">99 Bottles of Beer</a>. It has multiple examples of different programming languages printing the "99 bottles of beer" song.</p> <p>I'm actually using several examples in the <a href="http://python-ebook.blogspot.com" rel="nofollow">Python book</a> I'm writing to showcase why Python is a great language to learn. The simplicity and elegance of Python is a stark contrast to the convoluted code some people have created, and that's not counting the deliberate obfuscated code.</p> http://stackoverflow.com/questions/286486/accounting-for-a-changing-path/286914#286914 Comment by crystalattice on Accounting for a changing path crystalattice 2008-11-14T14:55:33Z 2008-11-14T14:55:33Z Because I want to create a window when the method is called, which implies a new process. I tried importing it but it just sits there. It does work like I want. Am I doing it wrong? http://stackoverflow.com/questions/286486/accounting-for-a-changing-path/286914#286914 Comment by crystalattice on Accounting for a changing path crystalattice 2008-11-14T03:18:39Z 2008-11-14T03:18:39Z &quot;Better&quot; means it's the recommend replacement for os.popen(). I did import the <i>subprocess</i> module. Is there a different way to use it? If I call Popen() by itself, I just get an error; hence the explict subprocess.Popen() call. http://stackoverflow.com/questions/286486/accounting-for-a-changing-path/286914#286914 Comment by crystalattice on Accounting for a changing path crystalattice 2008-11-14T02:28:29Z 2008-11-14T02:28:29Z @S.Lott-fixed @Sam Corder-I was using os.popen() until it was recommended to use the subprocess module because it's better. http://stackoverflow.com/questions/286486/accounting-for-a-changing-path/286914#286914 Comment by crystalattice on Accounting for a changing path crystalattice 2008-11-13T14:25:12Z 2008-11-13T14:25:12Z Sure, downvote me because I'm still learning. I wasn't aware of os.path.join; I'm just happy I got something that works. Sometimes I get really tired w/ this site. http://stackoverflow.com/questions/166468/is-it-worthwhile-to-write-a-programming-tutorial-book/284724#284724 Comment by crystalattice on Is it worthwhile to write a programming tutorial book? crystalattice 2008-11-13T07:24:56Z 2008-11-13T07:24:56Z I'm not doing it for the money since I'm releasing it as an ebook, like <i>Dive into Python</i>. I just wanted to know if there was a market for yet another &quot;intro to programming&quot; book. http://stackoverflow.com/questions/280324/when-is-self-required/280332#280332 Comment by crystalattice on When is "self" required? crystalattice 2008-11-12T03:26:44Z 2008-11-12T03:26:44Z Okay. That makes sense. http://stackoverflow.com/questions/280324/when-is-self-required Comment by crystalattice on When is "self" required? crystalattice 2008-11-12T03:25:16Z 2008-11-12T03:25:16Z Man, how come I can't find these prior questions when I search? This is like the 6th time it's happened. Thanks for the link. http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app Comment by crystalattice on Browser-based application or stand-alone GUI app? crystalattice 2008-11-04T02:51:37Z 2008-11-04T02:51:37Z Internet access will probably come in the future, so starting web-based is future proofing. Plus, web-apps are easier to create vs. custom GUI code. http://stackoverflow.com/questions/255476/browser-based-application-or-stand-alone-gui-app/255491#255491 Comment by crystalattice on Browser-based application or stand-alone GUI app? crystalattice 2008-11-01T04:21:53Z 2008-11-01T04:21:53Z That's one of reasons I'm looking at a browser; the amount of time spent making the GUI vs. that actual &quot;business logic&quot;. Good points. http://stackoverflow.com/questions/250397/what-do-you-like-about-django Comment by crystalattice on What do you like about Django? crystalattice 2008-10-31T04:29:15Z 2008-10-31T04:29:15Z Probably because people are starting to turn into jerks on this site, at least based on all the downvotes/derogatory comments I've been starting to notice. http://stackoverflow.com/questions/54867/old-style-and-new-style-classes-in-python Comment by crystalattice on Old style and new style classes in Python crystalattice 2008-10-29T02:29:09Z 2008-10-29T02:29:09Z I wasn't even aware there <i>were</i> new vs. old classes. It wasn't covered in any of the Python books I have nor do I recall seeing it online. Now I have to learn that, too. http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/107013#107013 Comment by crystalattice on What single URL should every web developer have bookmarked? crystalattice 2008-10-24T15:30:28Z 2008-10-24T15:30:28Z Of course, they just release that study that claimed only ~2.5% of web sites are actually valid, so it may not be that vital. :-) http://stackoverflow.com/questions/228912/sqlite-parameter-substitution-problem Comment by crystalattice on SQLite parameter substitution problem crystalattice 2008-10-23T10:58:22Z 2008-10-23T10:58:22Z Yes, I know. I just figured the code was somehow trying to use the bindings referenced by the &quot;create table&quot; statement. I didn't realize it referred to the number of letters in the item itself. http://stackoverflow.com/questions/228181/zen-of-python/228385#228385 Comment by crystalattice on zen of python crystalattice 2008-10-23T07:21:58Z 2008-10-23T07:21:58Z Look at that. I got downvoted. http://stackoverflow.com/questions/228181/zen-of-python/228251#228251 Comment by crystalattice on zen of python crystalattice 2008-10-23T02:59:45Z 2008-10-23T02:59:45Z Man. I didn't even know about the warnings module. Good stuff.