User Corey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:25:52Zhttp://stackoverflow.com/feeds/user/1595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types1Django: How do I model a tree of heterogeneous data types? Corey2008-11-14T20:14:56Z2009-12-03T01:13:52Z
<p>I need to store a tree data structure in my database, for which I plan on using <a href="http://code.google.com/p/django-treebeard/" rel="nofollow">django-treebeard</a> or possibly <a href="http://code.google.com/p/django-mptt/" rel="nofollow">django-mptt</a>. My source of confusion is that each node could be one of three different possible types: root nodes will always be a type A entity, leaf nodes a type C entity, and anything in between will be a type B entity. I would like to know the best way to model this situation.</p>
<p><strong>update:</strong> I first tried model inheritance, and I think that this could be the best way to go. Unfortunately django-treebeard's public API isn't really designed to handle this. I ended up getting it to work with GenericForeignKey. Thank you very much for the answers.</p>
http://stackoverflow.com/questions/20346/net-what-are-attributes29.NET: What are attributes?Corey2008-08-21T15:59:39Z2009-10-21T20:29:54Z
<p>What are they, what are they good for, and how to I create my own?</p>
http://stackoverflow.com/questions/25375/how-can-i-represent-a-very-large-integer-in-net17How can I represent a very large integer in .NET? Corey2008-08-24T21:51:57Z2009-10-21T15:04:48Z
<p>Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?</p>
http://stackoverflow.com/questions/459833/which-open-source-licenses-are-compatible-with-the-iphone-and-app-store2Which open source licenses are compatible with the iPhone and App Store?Corey2009-01-20T01:15:13Z2009-08-25T07:14:02Z
<p>I'm writing an iPhone app, and I would like to use a 3rd party library for part of its functionality. I intend on selling it through the App Store and my code will not be open sourced. Which open source licenses allow this? </p>
http://stackoverflow.com/questions/86458/how-do-i-upload-a-file-to-an-sftp-server-in-c-net7How do I upload a file to an SFTP server in C# / .NET?Corey2008-09-17T19:02:58Z2009-05-19T02:23:59Z
<p>Does this capability come with .Net? If not, what's the best free library? I need something that will throw good exceptions when there is a problem, and allows me to monitor its progress.</p>
http://stackoverflow.com/questions/507006/problem-using-django-mptt/512486#5124860Answer by Corey for Problem using django mpttCorey2009-02-04T17:40:24Z2009-02-04T17:40:24Z<p>I asked a similar question here: <a href="http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types">http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types</a></p>
http://stackoverflow.com/questions/510339/how-do-i-use-django-mptt/512478#5124780Answer by Corey for How do I use django mptt?Corey2009-02-04T17:38:42Z2009-02-04T17:38:42Z<p>I asked a similar question here: <a href="http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types">http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types</a></p>
http://stackoverflow.com/questions/338767/tool-to-convert-python-indentation-from-spaces-to-tabs3Tool to convert python indentation from spaces to tabs?Corey2008-12-03T21:26:25Z2009-02-04T11:14:03Z
<p>I have a some .py files that use spaces for indentation, and I'd like to convert them to tabs.</p>
<p>I could easily hack together something using regexes, but I can think of several edge cases where this approach could fail. Is there a tool that does this by parsing the file and determining the indentation level the same way the python interpreter does?</p>
http://stackoverflow.com/questions/483072/how-come-my-class-is-behaving-like-a-static-class/483123#4831236Answer by Corey for How come my class is behaving like a static class?Corey2009-01-27T11:53:11Z2009-01-28T14:01:48Z<p>Is it fileList you're talking about? You have it as a class variable, to make it an instance variable you need to do:</p>
<pre><code>self.fileList = {'files': [], 'dirs': []}
</code></pre>
<p>in you __ init __ function.</p>
http://stackoverflow.com/questions/480761/would-you-develop-in-vb-and-then-convert-your-code-to-c-just-to-have-your-entire/480771#4807714Answer by Corey for Would you develop in VB and then convert your code to C# just to have your entire team use one language?Corey2009-01-26T18:09:03Z2009-01-26T18:15:03Z<p>I would get comfortable in C#, which shouldn't take too long. Writing in VB and then converting would just be a waste of time IMO.</p>
<p>Besides, what happens when they need to read some C# code if they're not comfortable in the language?</p>
http://stackoverflow.com/questions/422254/c-in-data-structure-course-should-i-be-a-programmer/422292#4222923Answer by Corey for C in Data Structure Course: should I be a programmer?Corey2009-01-07T21:54:51Z2009-01-07T21:54:51Z<p>Retake the class, or at least study the subject thoroughly on your own. If you got a C the first time, it shouldn't be too difficult to fill in the gaps in your knowledge and get an A.</p>
http://stackoverflow.com/questions/383073/django-how-can-i-use-my-model-classes-to-interact-with-my-database-from-outside4Django: How can I use my model classes to interact with my database from outside Django?Corey2008-12-20T07:48:15Z2008-12-20T12:06:39Z
<p>I'd like to write a script that interacts with my DB using a Django app's model. However, I would like to be able to run this script from the command line or via cron. What all do I need to import to allow this?</p>
http://stackoverflow.com/questions/373194/python-regex-for-md5-hash/373206#3732062Answer by Corey for Python regex for MD5 hashCorey2008-12-16T23:51:00Z2008-12-16T23:51:00Z<p>How about "([a-fA-F\d]{32})" which requires it to be 32 characters long?</p>
http://stackoverflow.com/questions/345255/python-version-for-a-newbie/345269#34526912Answer by Corey for Python Version for a NewbieCorey2008-12-05T21:44:52Z2008-12-05T21:44:52Z<p>Go with 2.6 since that's what most libraries(pygame, wxpython, django, etc) target. </p>
<p>The differences in 3.0 aren't that huge, so transitioning to it later shouldn't be much of a problem.</p>
http://stackoverflow.com/questions/340888/navigation-in-django/340994#3409943Answer by Corey for Navigation in djangoCorey2008-12-04T15:31:47Z2008-12-04T15:31:47Z<p>You could use the <a href="http://docs.djangoproject.com/en/dev/topics/http/urls/?from=olddocs#reverse" rel="nofollow">reverse function</a> with the appropriate parameters to get the current url.</p>
http://stackoverflow.com/questions/313527/simple-algorithm-tutorials/313530#3135304Answer by Corey for Simple algorithm tutorials?Corey2008-11-24T06:15:12Z2008-11-24T06:15:12Z<p>MIT's OCW has <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/LectureNotes/" rel="nofollow">video lectures</a> of their Algorithm course. The professor is one of the authors of the book Introduction to Algorithms, which another poster suggested.</p>
<p>It assumes a basic knowledge of Discrete Maths.</p>
http://stackoverflow.com/questions/296377/generating-a-picture-graphic-of-a-graph/296381#2963814Answer by Corey for Generating a picture/graphic of a graphCorey2008-11-17T18:16:24Z2008-11-17T18:16:24Z<p>If you're using python, <a href="http://nodebox.net/code/index.php/Graph" rel="nofollow">Nodebox</a> draws pretty graphs.</p>
http://stackoverflow.com/questions/218161/how-would-you-recommend-a-novice-get-started-using-css/218212#2182121Answer by Corey for How Would You Recommend a Novice Get Started Using CSS?Corey2008-10-20T12:12:52Z2008-10-20T12:12:52Z<p>I'm a big fan of reading tech books, so I learned from <a href="http://rads.stackoverflow.com/amzn/click/1590596897" rel="nofollow">Beginning CSS Web Development: From Novice to Professional</a></p>
http://stackoverflow.com/questions/212039/what-should-students-be-taught-first-when-first-learning-sorting-algorithms/212083#2120831Answer by Corey for What should students be taught first when first learning sorting algorithms?Corey2008-10-17T13:21:16Z2008-10-17T13:21:16Z<p>I thought selection sort was the simplest to comprehend, and IMO would be the best to introduce sorting. </p>
<p>I think it would be silly to not teach them at least one O(nlog(n)) sorting algorithm, along with an explanation of big O notation.</p>
http://stackoverflow.com/questions/205901/c-equivalent-to-javas-biginteger/206078#2060783Answer by Corey for C# Equivalent to Java's BigIntegerCorey2008-10-15T19:28:57Z2008-10-16T05:32:36Z<p>Already asked here: <a href="http://stackoverflow.com/questions/25375/how-can-i-represent-a-very-large-integer-in-net">http://stackoverflow.com/questions/25375/how-can-i-represent-a-very-large-integer-in-net</a></p>
http://stackoverflow.com/questions/165473/are-programming-books-a-necessity-nowadays/165509#1655091Answer by Corey for Are programming books a necessity nowadaysCorey2008-10-03T02:55:14Z2008-10-03T02:55:14Z<p>Yes.</p>
<p>I always prefer a well written and comprehensive book on a technology over randomly scouring the internet for resources. A good book will often cover the material in more depth. It's usually more likely to teach you important idioms of a language, common pitfalls, best practices, and what's going on 'under the hood' of the technology.</p>
<p>That said, I like my tech books in pdf format :-)</p>
http://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio/145982#1459822Answer by Corey for What is the first thing you do when you install Visual Studio?Corey2008-09-28T14:45:48Z2008-09-28T14:45:48Z<p>I change the font to Consolas, and the background to a light gray(#FAFAFA).</p>
http://stackoverflow.com/questions/139239/what-is-your-favorite-first-exercise/139335#1393350Answer by Corey for What is your favorite first exercise?Corey2008-09-26T12:58:39Z2008-09-26T12:58:39Z<p>Often I'll implement the <a href="http://en.wikipedia.org/wiki/K-means_algorithm" rel="nofollow">k-means clustering algorithm.</a></p>
http://stackoverflow.com/questions/106850/how-best-to-draw-in-the-console/106859#1068592Answer by Corey for How best to draw in the console?Corey2008-09-20T02:51:42Z2008-09-20T02:51:42Z<p>This doesn't answer your question, but why not just use <a href="http://www.pygame.org/news.html" rel="nofollow">PyGame</a>? PyGame makes it very to create draw 2d sprite based games. </p>
http://stackoverflow.com/questions/94935/what-is-the-difference-between-range-and-xrange/95100#9510011Answer by Corey for What is the difference between range and xrange?Corey2008-09-18T18:08:19Z2008-09-19T23:57:22Z<blockquote>
<p>range creates a list, so if you do range(1, 10000000) it creates a list in memory with 10000000 elements.
xrange is a generator, so it evaluates lazily.</p>
</blockquote>
<p>This is true, but in Python 3, range will be replaced with xrange(). If you need to actually generate the list, you will need to do:</p>
<pre><code>list(range(1,100))
</code></pre>
http://stackoverflow.com/questions/86654/whats-wrong-with-singleton/86678#866783Answer by Corey for What's wrong with singleton?Corey2008-09-17T19:27:11Z2008-09-17T19:27:11Z<p><a href="http://stackoverflow.com/questions/11831/singletons-good-design-or-a-crutch">See this thread</a></p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61836#618366Answer by Corey for What should I learn next after VB and C#Corey2008-09-15T03:48:28Z2008-09-15T03:56:16Z<p>Learn more C# and .Net. The framework is gigangic, and there's no way that you know everything about it.</p>
<p>Also, learn about <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/CourseHome/index.htm" rel="nofollow">algorithms</a> and other important computer science topics.</p>
<p>edit: While I'm just now starting to learn it myself, F# seems like a good way to learn functional programming, while being useful to you and while allowing you to leverage your existing knowledge of .Net.</p>
http://stackoverflow.com/questions/57068/good-databases-with-sample-data/57078#570782Answer by Corey for Good Databases with sample dataCorey2008-09-11T16:46:17Z2008-09-11T16:46:17Z<p>For Microsoft SQL Server, there is the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=06616212-0356-46A0-8DA2-EEBC53A68034&displaylang=en" rel="nofollow">Northwind Sample DB</a> and <a href="http://msdn.microsoft.com/en-us/library/ms124659.aspx" rel="nofollow">AdventureWorks</a>.</p>
http://stackoverflow.com/questions/52926/beginning-c/52953#529530Answer by Corey for Beginning C#Corey2008-09-09T21:26:28Z2008-09-09T21:26:28Z<p><a href="http://rads.stackoverflow.com/amzn/click/1590598849" rel="nofollow">Apress's Pro C#</a> is a great book that will teach you both the C# language and quite a bit of the .Net class libraries, including GUIs, database access, multithreading, and even some ASP.Net.</p>
<p>Also, C# does not require manual memory management :-)</p>
http://stackoverflow.com/questions/52176/what-are-the-core-mathematical-concepts-a-good-developer-should-know/52363#523636Answer by Corey for What are the core mathematical concepts a good developer should know?Corey2008-09-09T17:12:10Z2008-09-09T17:12:10Z<p>For discrete math, <a href="http://video.google.com/videoplay?docid=-2965569821331370765&ei=Ua3GSODbC5Gk-wH328G6Dg&q=arsdigita+discrete" rel="nofollow">here</a> is an awesome set of 20 lectures from Arsdigita University. Each is about an hour and twenty minutes long.</p>
http://stackoverflow.com/questions/483072/how-come-my-class-is-behaving-like-a-static-class/483123#483123Comment by Corey on How come my class is behaving like a static class?Corey2009-01-27T12:01:08Z2009-01-27T12:01:08ZNo, Python lets you refer to a classvariable as instance.classvariable
http://stackoverflow.com/questions/483072/how-come-my-class-is-behaving-like-a-static-classComment by Corey on How come my class is behaving like a static class?Corey2009-01-27T11:43:07Z2009-01-27T11:43:07ZYou should post the class's code.http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi/407540#407540Comment by Corey on Code Golf: Leibniz formula for PiCorey2009-01-02T18:19:23Z2009-01-02T18:19:23Z@jamesbrady, no, '-1' cannot be changed to '1'http://stackoverflow.com/questions/373186/mathematical-derivation-with-cComment by Corey on Mathematical Derivation with C#?Corey2008-12-16T23:47:38Z2008-12-16T23:47:38ZI think you mean "differentiation." Do you want it done numerically? Do you really mean to use ints as the return type and parameters instead of floats?http://stackoverflow.com/questions/338767/tool-to-convert-python-indentation-from-spaces-to-tabs/338796#338796Comment by Corey on Tool to convert python indentation from spaces to tabs?Corey2008-12-03T21:42:42Z2008-12-03T21:42:42ZI would like to change them for consistency's sake.http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers/37182#37182Comment by Corey on Most efficient code for the first 10000 prime numbers?Corey2008-10-17T15:50:05Z2008-10-17T15:50:05ZFor most computers, calculating the values would be quicker than the latency involved in downloading them over the internet.http://stackoverflow.com/questions/145842/what-are-the-most-useful-data-structures-to-know-inside-out/145870#145870Comment by Corey on What are the most useful data structures to know inside out?Corey2008-09-28T14:53:20Z2008-09-28T14:53:20ZBy searching do you mean random access?http://stackoverflow.com/questions/66363/get-external-ip-address-over-remoting-in-c/66408#66408Comment by Corey on Get external IP address over remoting in C#Corey2008-09-15T20:11:48Z2008-09-15T20:11:48ZI ran this code and it gave me an interal IP. In fact, all three addresses IPHost.AddressList contained were 192.168.x.xhttp://stackoverflow.com/questions/58431/algorithm-for-joining-e-g-an-array-of-strings/58437#58437Comment by Corey on Algorithm for joining e.g. an array of stringsCorey2008-09-15T16:19:31Z2008-09-15T16:19:31ZIn many languages this will have poor performance unless you use a Stringbuilder.