User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:23:18Z http://stackoverflow.com/feeds/user/121 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers 32 What Are Some Good .NET Profilers? ricree 2008-08-06T20:14:57Z 2009-10-26T13:47:55Z <p>What profilers have you used when working with .net programs, and which would you particularly recommend?</p> http://stackoverflow.com/questions/1370502/manage-py-not-updating-database-name/1370643#1370643 0 Answer by ricree for manage.py not updating database name ricree 2009-09-02T23:12:17Z 2009-09-02T23:12:17Z <p>I figured out what the problem was.</p> <p>While manage.py does take the settings file, the djang.conf.settings is loaded from the sys.path rather than what is passed via manage.py.</p> <p>Apparently, the old location was in the sys.path, and so it was loading the old settings file.</p> http://stackoverflow.com/questions/1370502/manage-py-not-updating-database-name 0 manage.py not updating database name ricree 2009-09-02T22:34:08Z 2009-09-02T23:12:17Z <p>I have a django app, and I recently changed the name of the database it is supposed to use. However, manage.py doesn't seem to be using the new database. </p> <p>I've doublechecked the settings.py file, and I've even added a "print settings.DATABASE_NAME" to the mange.py file, and it prints out the correct name, but still connects to the old db.</p> <p>for example, ./manage.py dbshell:</p> <pre><code>NewDB Password for user : Welcome to psql 8.1.11, the PostgreSQL interactive terminal. OldDB=&gt; </code></pre> <p>So as far as I can see, it's completely ignoring what's in the settings file.</p> <p>Any idea what could be causing this?</p> http://stackoverflow.com/questions/1011431/python-things-one-must-avoid/1325204#1325204 0 Answer by ricree for Python - Things one MUST avoid ricree 2009-08-24T22:50:27Z 2009-08-24T22:50:27Z <p>This has been mentioned already, but I'd like to elaborate a bit on class attribute mutability.</p> <p>When you define a member attribute, then every time you instance that class it gets an attribute that's a shallow copy of the class attribute.</p> <p>So if you have something like </p> <pre><code>class Test(object): myAttr = 1 instA = Test() instB = Test() instB.myAttr = 2 </code></pre> <p>It will behave as expected.</p> <pre><code>&gt;&gt;&gt; instA.myAttr 1 &gt;&gt;&gt; instB.myAttr 2 </code></pre> <p>The problem comes when you have class attributes that are mutable. Since instantiation just did a shallow copy, all instances are going to just have a reference pointing to the same object.</p> <pre><code>class Test(object): myAttr=[1,2,3] instA = Test() instB = Test() instB.myAttr[0]=2 &gt;&gt;&gt; instA.myAttr [2,2,3] </code></pre> <p>But the references <em>are</em> actual members of the instance, so as long as you are actually assigning something new to the attribute you are ok.</p> <p>You can get around this by making a deep copy of mutable variables during the <strong>init</strong> function</p> <pre><code>import copy class Test(object): myAttr = [1,2,3] def __init__(self): self.myAttr = copy.deepcopy(self.myAttr) instA = Test() instB = Test() instB.myAttr[0] = 5 &gt;&gt;&gt; instA.myAttr [1,2,3] &gt;&gt;&gt; instB.myAttr [5,2,3] </code></pre> <p>It might be possible to write a decorator that would automatically deepcopy all your class attributes during init, but I don't know offhand of one that is provided anywhere.</p> http://stackoverflow.com/questions/4287/how-do-you-determine-the-pid-of-the-parent-of-a-process 3 How Do You Determine The PID of the Parent of a Process ricree 2008-08-07T01:54:12Z 2009-08-11T16:19:38Z <p>I have a process in erlang that is supposed to do something immediately after spawn, then send the result back to the parent when it is finished. How do I figure out the PID of the process that spawned it?</p> http://stackoverflow.com/questions/1304/how-to-check-for-file-lock-in-c 15 How to check For File Lock in C# ? ricree 2008-08-04T14:56:57Z 2009-07-24T08:29:14Z <p>Is there any way to check whether a file is locked without using a try catch block? Right now, the only way I know of is to just open the file and catch any System.IO.IOException.</p> http://stackoverflow.com/questions/1012457/how-to-concatenate-strings-with-binary-values-in-python/1012526#1012526 3 Answer by ricree for How to concatenate strings with binary values in python? ricree 2009-06-18T13:03:35Z 2009-06-18T13:03:35Z <p>The chr() function will have the effect of translating a variable into a string with the binary value you are looking for.</p> <pre><code>&gt;&gt;&gt; sep = 0x1 &gt;&gt;&gt; sepc = chr(sep) &gt;&gt;&gt; sepc '\x01' </code></pre> <p>The join() function can then be used to concat a series of strings with your binary value as a separator.</p> <pre><code>&gt;&gt;&gt; data = ['abc']*3 &gt;&gt;&gt; data ['abc', 'abc', 'abc'] &gt;&gt;&gt; sepc.join(data) 'abc\x01abc\x01abc' </code></pre> http://stackoverflow.com/questions/3061/calling-a-function-from-a-string-with-the-functions-name-in-python 15 Calling a Function From a String With the Function's Name in Python ricree 2008-08-06T03:36:08Z 2009-05-07T12:45:13Z <p>What is the best way to go about calling a function given a string with the function's name in a python program. For example, let's say that I have a module foo, and I have a string whose contents are "bar". What is the best way to go about calling foo.bar()?</p> <p>I need to get the return value of the function, which is why I don't just use eval. I figured out how to do it by using eval to define a temp function that returns the result of that function call, but I'm hoping that there is a more elegant way to do this.</p> http://stackoverflow.com/questions/327311/how-are-pythons-built-in-dictionaries-implemented 6 How are Python's Built In Dictionaries Implemented ricree 2008-11-29T07:35:31Z 2008-12-02T18:29:16Z <p>The topic title pretty much says it all. Does anyone know how the built in dictionary type for python is implemented? My understanding is that it is some sort of hash table, but I haven't been able to find any sort of definitive answer.</p> http://stackoverflow.com/questions/327223/memory-efficient-alternatives-to-python-dictionaries 8 Memory Efficient Alternatives to Python Dictionaries ricree 2008-11-29T05:33:26Z 2008-12-01T19:48:13Z <p>In one of my current side projects, I am scanning through some text looking at the frequency of word triplets. In my first go at it, I used the default dictionary three levels deep. In other words, topDictionary[word1][word2][word3] returns the number of times these words appear in the text, topdictionary[word1][word2] returns a dictionary with all the words that appeared following words 1 and 2, etc.</p> <p>This functions correctly, but it is very memory intensive. In my initial tests it used something like 20 times the memory of just storing the triplets in a text file, which seems like an overly large amount of memory overhead.</p> <p>My suspicion is that many of these dictionaries are being created with many more slots than are actually being used, so I want to replace the dictionaries with something else that is more memory efficient when used in this manner. I would strongly prefer a solution that allows key lookups along the lines of the dictionaries.</p> <p>From what I know of data structures, a balanced binary search tree using something like red-black or AVL would probably be ideal, but I would really prefer not to implement them myself. If possible, I'd prefer to stick with standard python libraries, but I'm definitely open to other alternatives if they would work best.</p> <p>So, does anyone have any suggestions for me?</p> <p>Edited to add:</p> <p>Thanks for the responses so far. A few of the answers so far have suggested using tuples, which didn't really do much for me when I condensed the first two words into a tuple. I am hesitant to use all three as a key since I want it to be easy to look up all third words given the first two. (ie I want something like the result of topDict[word1,word2].keys() ). </p> <p>The current dataset I am playing around with is the most recent version of <a href="http://www.soschildrensvillages.org.uk/charity-news/wikipedia-for-schools.htm" rel="nofollow">Wikipedia For Schools</a>. The results of parsing the first thousand pages, for example, is something like 11MB for a text file where each line is the three words and the count all tab separated. Storing the text in the dictionary format I am now using takes around 185MB. I know that there will be some additional overhead for pointers and whatnot, but the difference seems excessive.</p> <p>Once again, thank you all for the responses so far.</p> http://stackoverflow.com/questions/12537/what-tools-are-used-to-write-documentation/12995#12995 0 Answer by ricree for What tools are used to write documentation? ricree 2008-08-16T04:50:30Z 2008-08-16T04:50:30Z <p>A couple people have already mentioned the C# xml docuementation, and others have mentioned doxygen for C/C++/Java, but I would like to remind everyone that it also supports C# style documentation. It can generate documentation in html, postscript, pdf, and man pages, so you don't need to be stuck with Sandcastle help files.</p> http://stackoverflow.com/questions/10930/what-if-you-used-the-wrong-language/12000#12000 3 Answer by ricree for What if you used the wrong language? ricree 2008-08-15T05:44:43Z 2008-08-15T05:44:43Z <p>@Keith</p> <p>Don't forget about the ability to maintain and extend the application in the future. Even if switching would not produce a net gain on solving the immediate problem, it might be better to bite the bullet and switch before you get even more entrenched in the current codebase. Unless there is some really pressing need to get the product released <em>now</em> or it has a short expected lifespan, then going with the best long term solution will likely pay off.</p> http://stackoverflow.com/questions/11199/net-framework-dependency/11226#11226 1 Answer by ricree for .NET Framework dependency ricree 2008-08-14T15:40:03Z 2008-08-14T15:40:03Z <p><a href="http://www.go-mono.com/mono-downloads/download.html" rel="nofollow" title="excanvas">Mono</a> Has a Windows release, if you absolutely have to avoid dependency on .NET.</p> <p>Any way you look at it, though, you are going to need a .NET compatible runtime on any computer that your application is running on. So if you want to completely avoid .NET, you will probably have to distribute the Mono runtime along with your application.</p> http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog/8929#8929 5 Answer by ricree for How can you tell whether you're ready to start your own blog? ricree 2008-08-12T14:59:13Z 2008-08-12T14:59:13Z <p>I've never tried to write a blog, so take my advice with a grain of salt, but I'd suggest trying to write a few articles up in advance on a schedule that you think is sustainable.</p> <p>If after a couple articles (a month or so, assuming you're updating once per week) you feel that this is still something you are interested in, then go ahead and get started. You even have a couple of reserve articles in case you can't keep to your schedule.</p> <p>If you do try to start, though, I would definitely recommend setting a firm schedule for yourself, and try to keep to it.</p> http://stackoverflow.com/questions/8140/suggestions-for-adding-plugin-capability/8196#8196 1 Answer by ricree for Suggestions for Adding Plugin Capability? ricree 2008-08-11T20:40:44Z 2008-08-11T20:40:44Z <p>If you are using a compiled language such as C or C++, it may be a good idea to look at plugin support via scripting languages. Both Python and Lua are excellent languages that are used to script a large number of applications (Civ4 and blender use Python, Supreme Commander uses Lua, etc). </p> <p>If you are using C++, check out the boost python library. Otherwise, python ships with headers that can be used in C, and does a fairly good job documenting the C/python API. The documentation seemed less complete for Lua, but I may not have been looking hard enough. Either way, you can offer a fairly solid scripting platform without a terrible amount of work. It still isn't trivial, but it provides you with a very good base to work from.</p> http://stackoverflow.com/questions/6080/what-to-use-for-login-id/6091#6091 0 Answer by ricree for What to use for login ID? ricree 2008-08-08T15:48:06Z 2008-08-08T16:01:24Z <p>I think that OpenID is definitely worth looking at. Besides giving you a framework in which to provide a unified id for customers, it can also provide large businesses with the ability to manage their own logins and provide a common login across all products that they use, including your own. This isn't that large of a benefit now when OpenId is still relatively rare, but as more products begin to use it, I suspect that the ability to use a common company OpenId login for each employee could become a good selling point.</p> <p>Since you're mostly catering to businesses, I don't think that it's all that unreasonable to offer to host the OpenId accounts yourself. I just think that the extra flexibility will benefit your customers.</p> http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4723#4723 5 Answer by ricree for What are some good free programming books? ricree 2008-08-07T13:44:31Z 2008-08-07T13:48:14Z <p>As long as we're on the subject of Lisp, <strong><em><a href="http://gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a></em></strong> by Peter Seibel is available for free online.</p> http://stackoverflow.com/questions/4387/best-multi-language-documentation-generator/4429#4429 3 Answer by ricree for Best Multi-Language Documentation Generator ricree 2008-08-07T05:45:46Z 2008-08-07T05:45:46Z <p>As others have said, Doxygen is probably your best bet. It works across many different languages, and just as importantly, it works with a number of different commenting styles.</p> <p>For example, in C# you can continue to use the xml documentation in order to get the intellisense benefits that come with it as well as the ability to also use other tools such as the sandcastle help file builder. In other languages, you're still free to use more concise styles.</p> <p>It can generate output in a number of different ways, including html, man page, ps, pdf (with LaTex), and a few others, I believe.</p> http://stackoverflow.com/questions/3510/bodmas/3527#3527 0 Answer by ricree for BODMAS ricree 2008-08-06T15:12:30Z 2008-08-06T15:12:30Z <p>I'm not really sure how applicable to programming the old BODMAS mnemonic is anyways. There is no guarantee on order of operations between languages, and while many keep the standard operations in that order, not all do. And then there are some languages where order of operations isn't really all that meaningful (Lisp dialects, for example). In a way, you're probably better off for programming if you forget the standard order and either use parentheses for everything(eg (a*b) + c) or specifically learn the order for each language you work in.</p> http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/2385#2385 0 Answer by ricree for What good technology podcasts are out there? ricree 2008-08-05T14:29:33Z 2008-08-05T14:29:33Z <p>All of the tech podcasts I listen to have been mentioned, but as long as we're discussing video I'd like to mention <a href="http://www.hak5.org/" rel="nofollow">Hak.5</a>. It is more focused on using existing programs rather than coding, but it has some good hardware segments, and it can often be an excellent source of inspiration.</p> http://stackoverflow.com/questions/1284/catching-sql-injection-and-other-malicious-web-requests/1336#1336 0 Answer by ricree for Catching SQL Injection and other Malicious Web Requests ricree 2008-08-04T15:26:05Z 2008-08-04T15:26:05Z <p>Now that I think about it, a Bayesian filter similar to the ones used to block spam might work decently too. If you got together a set of normal text for each field and a set of sql injections, you might be able to train it to flag injection attacks.</p> http://stackoverflow.com/questions/1284/catching-sql-injection-and-other-malicious-web-requests/1328#1328 1 Answer by ricree for Catching SQL Injection and other Malicious Web Requests ricree 2008-08-04T15:20:17Z 2008-08-04T15:20:17Z <p>One method that might work for some cases would be to take the sql string that would run if you naively used the form data and pass it to some code that counts the number of statements that would actually be executed. If it is greater than the number expected, then there is a decent chance that an injection was attempted, especially for fields that are unlikely to include control characters such as username.</p> <p>Something like a normal text box would be a bit harder since this method would be a lot more likely to return false positives, but this would be a start, at least.</p> http://stackoverflow.com/questions/550632/favorite-django-tips-features/558401#558401 Comment by on Favorite Django Tips & Features? 2009-09-04T08:34:09Z 2009-09-04T08:34:09Z I agree 100% on this one. I started out using hard coded urls, and it bit me on a project when I changed the url format around a bit to accommodate some changes. I took the time to go back and dig through everything and replace hard coded urls. My only big complaint is that url tag errors kill the whole page while hard coded only messes up the individual link. http://stackoverflow.com/questions/1376438/how-to-make-a-repeating-generator-in-python Comment by on How to make a repeating generator in Python 2009-09-04T08:14:22Z 2009-09-04T08:14:22Z I think that's more than a small nitpick. That's the entire reason for the difference. And as John pointed out, the desired behavior can be gained with an overloaded <b>iter</b>. http://stackoverflow.com/questions/927619/django-formset-isvalid-failing-for-extra-forms/934734#934734 Comment by on Django Formset.is_valid() failing for extra forms 2009-09-01T03:00:43Z 2009-09-01T03:00:43Z I'm having what seems to be the same bug, but providing an initial didn't actually solve the problem. Are you sure that was what actually fixed your problem? http://stackoverflow.com/questions/1313989/how-django-projects-can-be-deployed-with-minimal-installation-works Comment by on How django projects can be deployed with minimal installation works? 2009-08-24T20:08:16Z 2009-08-24T20:08:16Z This is a bit orthogonal to your question, but at the moment mod_wsgi is recommended over mod_python. http://stackoverflow.com/questions/166506/finding-local-ip-addresses-in-python/166992#166992 Comment by on Finding local IP addresses in Python. 2009-06-18T00:19:29Z 2009-06-18T00:19:29Z The one liner solution above generally works on windows. It's the Linux one that's being a problem. http://stackoverflow.com/questions/327223/memory-efficient-alternatives-to-python-dictionaries/327299#327299 Comment by on Memory Efficient Alternatives to Python Dictionaries 2008-11-29T07:27:14Z 2008-11-29T07:27:14Z When I tried this, there was a savings, but it wasn't all that much. If I remember correctly, it was something like 165MB vs 185MB. http://stackoverflow.com/questions/327223/memory-efficient-alternatives-to-python-dictionaries/327254#327254 Comment by on Memory Efficient Alternatives to Python Dictionaries 2008-11-29T07:24:58Z 2008-11-29T07:24:58Z I think I might just go ahead and ask about the implementation of dict() as its own question. Thanks for the answers, by the way. http://stackoverflow.com/questions/327223/memory-efficient-alternatives-to-python-dictionaries/327254#327254 Comment by on Memory Efficient Alternatives to Python Dictionaries 2008-11-29T06:36:34Z 2008-11-29T06:36:34Z Also, my understanding was that dict was implemented using some sort of hash table, although I was never able to find a definitive source for this. http://stackoverflow.com/questions/327223/memory-efficient-alternatives-to-python-dictionaries/327254#327254 Comment by on Memory Efficient Alternatives to Python Dictionaries 2008-11-29T06:35:40Z 2008-11-29T06:35:40Z I tried doing it two levels deep where the keys were a tuple of words 1 and 2, and it actually increased memory usage. I would strongly prefer to have easy access to all third words given 1 and 2, so using all of them as the key is probably out.