User jjohn - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T22:13:53Zhttp://stackoverflow.com/feeds/user/16513http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python3How to call a parent class's method from child class in python?jjohn2009-04-30T01:52:31Z2009-04-30T03:52:59Z
<p>Stackers, </p>
<p>I apologize for this question in advance. It must be a FAQ, but I don't seem to be able to find the answer.</p>
<p>When creating a simple object hierarchy in python, I'd like to be able to invoke methods of the parent class from a derived class. In Perl and Java, there is a keyword for this (super). In Perl, I might do this:</p>
<pre><code>package Foo;
sub frotz() {
return "Bamf";
}
package Bar;
@ISA = qw(Foo);
sub frotz() {
my $str = SUPER::frotz();
return uc($str);
}
</code></pre>
<p>In python, it appears that I have to name the parent class explicitly from the child.
In the example above, I'd have to do something like Foo::frotz(). </p>
<p>This doesn't seem right, since this behavior makes it hard to make deep hierarchies. If children need to know what class defined an inherited method, then all sorts of information pain is created. </p>
<p>Is this an actual limitation in python, a gap in my understanding or both?</p>
<p>Thanks,</p>
<p>--Joe</p>
http://stackoverflow.com/questions/787419/unique-identifier-for-user-profiles-in-windows/789038#7890380Answer by jjohn for Unique identifier for user profiles in Windowsjjohn2009-04-25T14:32:42Z2009-04-25T14:32:42Z<p>I might use a more LDAP-centric solution to this problem, but it might be a lot more work for your app.</p>
<p>There are a few unique fields in AD for user. You could use the whole DN of a User record (i.e. DC=com,DC=example,CN=Users,DN=bob smith). That's what uniquely identifies a record in AD. However, MS also has a field called UPN, which looks like an email address (sometimes it is) and takes the form user@domain. </p>
<p>Of course, this information requires read access to AD and that may not be practical for your app.</p>
http://stackoverflow.com/questions/490091/java-generics/490225#4902252Answer by jjohn for Java Genericsjjohn2009-01-29T01:52:32Z2009-01-29T01:52:32Z<p>As the other posts have noted, you're asking about a java feature called generics. In C++, this is called templates. The java beasties are far tamer to deal with.</p>
<p>Let me answer your questions functionally (if that's not a naughty word for OO discussions).</p>
<p>Before generics, you had good old concrete classes like Vector. </p>
<pre><code>Vector V = new Vector();
</code></pre>
<p>Vectors hold any old object you give them. </p>
<pre><code>V.add("This is an element");
V.add(new Interger(2));
v.add(new Hashtable());
</code></pre>
<p>However, they do this by casting everything you give it into an Object (the root of all java classes). That's OK until you attempt to retrieve the values stored in your Vector. When you do, you need to cast the value back into the original class (if you want to do anything meaningful with it).</p>
<pre><code>String s = (String) v.get(0);
Integer i = (Integer) v.get(1);
Hashtable h = (Hashtable) v.get(2);
</code></pre>
<p>Casting gets pretty old fast. More than that, the compiler whines at you about unchecked casts. For a vivid example of this, use the XML-RPC library from Apache (version 2 anyway). The most important problem with this is that consumers of your Vector have to know the exact class of its values at <em>compile time</em> in order to cast correctly. In cases where the producer of the Vector and the consumer are completely isolated from each other, this can be a fatal issue. </p>
<p>Enter generics. Generics attempt to create strongly typed classes to do generic operations. </p>
<pre><code>ArrayList<String> aList = new ArrayList<String>();
aList.add("One);
System.out.println("Got one: " + aList.get(0)); // no cast needed
</code></pre>
<p>Now, if you take a look at the infamous gang of four's /Design Patterns/ book, you'll notice that there is some wisdom in divorcing variables from their implementing class. It's better to think of contracts rather than implementation. So, you might say that all List objects do the same things: add(), get(), size(), etc. However, there are many implementations of List operations that may choose to obey the contract in various ways (e.g. ArrayList). However, the type of data these object deal with is left as a runtime consideration to you, the user of the generic class. Put it all together and you'll see the following line of code very frequently:</p>
<pre><code>List<String> L = new ArrayList<String>();
</code></pre>
<p>You should read that as "L is a kind of List that deals with String objects". When you start dealing with Factory classes, it is critical to deal with contracts rather than specific implementations. Factories produce objects of various types at runtime. </p>
<p>Using generics is pretty easy (most of the time). However, one awful day you may decide you want to implement a generic class. Perhaps you've thought of a great new List implementation. When you define that class, you use as a placeholder for the kind of object that will be manipulated by the methods. If you're confused, use the generic classes for List until you're comfortable. Then, you can dive into the implementation with a bit more confidence. Or you can look at the source code for the various List classes that ship with the JRE. Open source is great that way.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/179735/what-are-some-good-resources-on-2d-game-engine-design/411161#4111611Answer by jjohn for What are some good resources on 2D game engine design?jjohn2009-01-04T15:42:25Z2009-01-04T15:42:25Z<p>I can't agree with you more: enterprise applications do not prepare you for games programming.</p>
<p>I've created a few small-scale games in python, java, html/php and perl. The basic structure of a game, as you probably know, is:</p>
<p>Main Loop :<br>
handleInput()<br>
updateGameLogic()<br>
renderImages()<br></p>
<p>Now, that's all well and good for single-screen, single threaded games, like anything from the 70s or 80s. But I don't find this structure a particularly strong fit for multi-screen games (like RPGs) or anything more exotic. It doesn't thread very well. The code gets pretty funky as you need to handle a variety of inputs. It doesn't scale well. </p>
<p>However, before I bash this metaphor too much, please note that this is an EXCELLENT place to start. I would go so far as to recommend learning Python/Pygame and start building games with that tool rather than C++, which complicates the design and implementation process. When you prototype in python, you'll see the game take shape much faster and run into language-independent issues.</p>
<p>For me, the hardest, most time-consuming aspects of game programming are the graphic and sound assets. While I'm a bit of an audio nerd and amateur musician, creating believable and appropriate music and SFX is a project all on its own. I have no graphic talent, so I must rely on modifying exisitng images or using freely available ones. Luckily, there are a widely available free fonts that can used for games (and little else, since they are almost universally bad). </p>
<p>Finally, there's nothing like open source to see how other projects handle this. Battle of Westnoth is a mature, medium sized game. You might want to see what's going on there. Again, games in python frequently make their source code available, so you could look through hundreds of projects there. You could also decompile atari 2600 ROMs, but that won't tell you much about programming today. The old VCS was a dedicated device that handled its apps in a very system-dependent way. :-D</p>
<p>Finally, I also like Andre LaMothe. I have his olde 1993 book that's a million pages thick. Although it's still a nice reference on some generic game ideas, a lot of it is obviated by the availability of free available libraries and frameworks that did not exist back then.</p>
<p>Good luck with your project.</p>
http://stackoverflow.com/questions/118463/what-is-the-performance-difference-of-pki-to-symmetric-encryption/118777#1187770Answer by jjohn for What is the performance difference of pki to symmetric encryption?jjohn2008-09-23T02:15:31Z2008-09-23T02:15:31Z<p>Perhaps you can add some details about your project so that you get better quality answers. What are you trying to secure? From whom? If you could explain the requirements of your security, you'll get a much better answer. Performance doesn't mean much if the encryption mechanism isn't protecting what you think it is.</p>
<p>For instance, X509 certs are an industrial standard way of securing client/server endpoints. PGP armoring can be used to secure license files. For simplicity, Cipher block chaining with Blowfish (and a host of other ciphers) is easy to use in Perl or Java, if you control both end points.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98335#983350Answer by jjohn for how to display RSS feeds as HTML?jjohn2008-09-19T00:28:09Z2008-09-19T00:28:09Z<p>Do you need to program a solution? Which programming languages do you know? Perl can do this pretty efficiently with XML::RSS. You can also do this with XSLT processing if you want to stay firmly in the XML/HTML camp.</p>
<p>If programming isn't what you're after, you can use an RSS reader, like the one built into Firefox.</p>
<p>Perhaps you can add a bit more context to your question?</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98300#983001Answer by jjohn for Why does Javascript getYear() return 108?jjohn2008-09-19T00:22:16Z2008-09-19T00:22:16Z<p>This question is so old that it makes me weep with nostalgia for the dotcom days! </p>
<p>That's right, Date.getYear() returns the number of years since 1900, just like Perl's localtime(). One wonders why a language designed in the 1990s wouldn't account for the century turnover, but what can I say? You had to be there. It sort of made a kind of sense at the time (like pets.com did).</p>
<p>Before 2000, one might have been tempted to fix this bug by appending "19" to the result of getYear() resulting in the <a href="http://www.theregister.co.uk/2000/01/04/transmeta_screws_up_on_y2k/" rel="nofollow">"year 19100 bug"</a>. Others have already answered this question sufficiently (add 1900 to the result of getDate()). </p>
<p>Maybe the book you're reading about JavaScript is a little old? </p>
<p>Thanks for the blast from the past!</p>
http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/97440#974405Answer by jjohn for Is there any way to use a "constant" as hash key in Perl?jjohn2008-09-18T22:00:14Z2008-09-18T22:00:14Z<p>Most of the other folks have answered your questioned well. Taken together, these create a very full explanation of the problem and recommended workarounds. The problem is that the Perl pragma "use constant" really creates a subroutine in your current package whose name is the the first argument of the pragma and whose value is the last.</p>
<p>In Perl, once a subroutine is declared, it may be called without parens.</p>
<p>Understanding that "constants" are simply subroutines, you can see why they are not interpolated in strings and why the "fat comma" operator "=>" which quotes the left-hand argument thinks you've handed it a string (try other built-in functions like time() and keys() sometime with the fat comma for extra fun). </p>
<p>Luckily, you may invoke the constant using explicit punctuation like parens or the ampersand sigil.</p>
<p>However, I've got a question for you: why are you using constants for hash keys at all? </p>
<p>I can think of a few scenarios that might lead you in this direction:</p>
<ol>
<li><p>You want control over which keys can be in the hash.</p></li>
<li><p>You want to abstract the name of the keys in case these change later</p></li>
</ol>
<p>In the case of number 1, constants probably won't save your hash. Instead, consider creating an Class that has public setters and getters that populate a hash visible only to the object. This is a very un-Perl like solution, but very easily to do.</p>
<p>In the case of number 2, I'd still advocate strongly for a Class. If access to the hash is regulated through a well-defined interface, only the implementer of the class is responsible for getting the hash key names right. In which case, I wouldn't suggest using constants at all.</p>
<p>Hope this helps and thanks for your time.</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/97302#973020Answer by jjohn for How do you vent stress as a programmer?jjohn2008-09-18T21:41:52Z2008-09-18T21:41:52Z<p>I assume you've already tried the traditional self-gratify, imbibe, blow-up digital monsters loop? </p>
<p>You might try simply walking away from the computer for awhile. Take a walk. Read a book. Catch up with friends. Make new friends. What have you...</p>
<p>Believe it or not, I have solved and even debugged more annoying problems by walking away from the KVM than by "slogging it out" coding.</p>
<p>The mind is a funny thing!</p>
http://stackoverflow.com/questions/97188/is-there-a-monitoring-tool-like-xentop-that-will-track-historical-data/97259#972591Answer by jjohn for Is there a monitoring tool like xentop that will track historical data?jjohn2008-09-18T21:37:42Z2008-09-18T21:37:42Z<p><a href="http://linux.die.net/man/1/xentop" rel="nofollow">Xentop</a> is a tool to monitor the domains (VMs) running under Xen. VMware's ESX has a similar tool (I believe its called esxtop).</p>
<p>The problem is that you'd like to see the historical CPU/Mem usage for domains on your Xen system, correct?</p>
<p>As with all Virtualization layers, there are two views of this information relevant to admins: the burden imposed by the domain on the host and the what the domain thinks is its process load. If the domain thinks it is running low on resources but the host is not, it is easy to allocate more resources to the domain from the host. If the host runs out of resources, you'll need to optimize or turn off some of the domains.</p>
<p>Unfortunately, I don't know of any free tools to do this. XenSource provides a rich XML-RPC API to control and monitor their systems. You could easily build something from that.</p>
<p>If you only care about the domain-view of its own resources, I'm sure there are plenty of monitoring tools already available that fit your need.</p>
<p>As a disclaimer, I should mention that the company I work for, Leostream, builds virtualization management software. Unfortunately, it does not really do utilization monitoring. </p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93333#9333311Answer by jjohn for What do you use for game dev ?jjohn2008-09-18T14:58:57Z2008-09-18T14:58:57Z<p>Game programming is fun, but challenging. I don't think most "gamers" would enjoy the process of writing a game. </p>
<p>The would-be designer needs to consider the abstract design of the game (that is, what are the rules, mechanisms and goals of the game), the target computer platform and an estimate of how much time he wants to dedicate to this kind of project. Games can be an enormous effort to produce -- even tiny space invader clones are, for the novice, full of unexpected challenges and can take days to produce.</p>
<p>If you are new to programming in general, you should first learn that. Get up to speed on simple CGI programming or text processing. That will help give you the tools to understand some the concepts that attend game programming. I recommend learning Python or Java as an introduction to programming. Both support games well. When you're ready to design games with tighter real-time performance requirements, consider C++.</p>
<p>Are you an artist? If so, can you produce your own graphics for your game? Does your game require complicate 3D graphics? Are you good at producing sound or background music? These assets are essential parts of a game. You can stub your way through the design with placeholders, but the success of your game often depends on these assets.</p>
<p>I have used Pygame, PHP and Perl to write games (although none of them are particularly good). I'm currently working on a game in Java. Ultimately, the language and toolkit choice is determined by the platform you're targeting. If you want your game on a console, you'll probably be doing C++ or .NET. If you want to make a web game, Flash, Java or DHTML will be your easy choices.</p>
<p>You might want to get <A href="http://fivedots.coe.psu.ac.th/~ad/jg/" rel="nofollow">Killer Game Programming in Java</a>. It's a weighty book, but it walks you through the basics very well. The Pygame's web site has solid documentation for that toolkit as well. </p>
<p>Perhaps you might consider using an existing game framework for creating your first game? Frameworks like <a href="http://www.rtsoft.com/novashell/" rel="nofollow">Novashell</a> and <a href="http://www.adventuregamestudio.co.uk/" rel="nofollow">Adventure Game Studio</a> are good tools to let your rapidly prototype many kinds of games without learning the gory details of graphics programming.</p>
<p>In any case, good luck with your project.</p>
http://stackoverflow.com/questions/85522/migrating-from-mysql-to-arbitrary-standards-compliant-sql2003-server/85885#858851Answer by jjohn for Migrating from MySQL to arbitrary standards-compliant SQL2003 serverjjohn2008-09-17T17:58:08Z2008-09-17T17:58:08Z<p>This one is kind of tough. Unless you've got a very simple DB structure with vanilla types (varchar, integer, etc), you're probably going to get the best results writing a migration tool. In a language like Perl (via the DBI), this is pretty straight-forward. The program is basically an echo loop that reads from one database and inserts into the other. There are examples of this sort of code that Google knows about.</p>
<p>Aside from the obvious problem of moving the data is the more subtle problem of how some datatypes are represented. For instance, MS SQL's datetime field is not in the same format as MySQL's. Other datatypes like BLOBs may have a different capacity in one RDBMs than in another. You should make sure that you understand the datatype definitions of the target DB system very well before porting.</p>
<p>The last problem, of course, is getting application-level SQL statements to work against the new system. In my work, that's by far the hardest part. Date math seems especially DB-specific, while annoying things like quoting rules are a constant source of irritation.</p>
<p>Good luck with your project. </p>
http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805081#805081Comment by jjohn on How to call a parent class's method from child class in python?jjohn2009-04-30T15:25:21Z2009-04-30T15:25:21ZThank you. I don't have a good handle on the two Python object models. I'll get my read-on. Thank you all.http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93333#93333Comment by jjohn on What do you use for game dev ?jjohn2008-09-19T15:56:30Z2008-09-19T15:56:30ZSince the original poster didn't not present as an experienced coder, Game programming is hard even for pros. You can make money doing much less difficult coding. Tasks were provided that might be a good onramp to programming and also move the poster nearer to working on games.