User Myer Nore - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:41:59Zhttp://stackoverflow.com/feeds/user/78202http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/721215/how-can-i-fix-a-java-gui-program-swing-that-it-works-with-awesome-wm/1701552#17015521Answer by Myer Nore for How can I fix a Java-GUI-program (swing), that it works with awesome-wm?Myer Nore2009-11-09T14:59:01Z2009-11-09T14:59:01Z<p>Easiest workaround - get <a href="http://tools.suckless.org/wmname" rel="nofollow">wmname from suckless</a> and use it to set the name of the window manager to LG3D:</p>
<pre><code>wmname LG3D
</code></pre>
<p>98% of the time this will fix the issue.</p>
http://stackoverflow.com/questions/1481536/generating-indexed-property-getters-setters-in-eclipse0Generating Indexed Property Getters/Setters in EclipseMyer Nore2009-09-26T16:07:50Z2009-09-27T18:12:37Z
<p>By default, eclipse generates getters/setters according to JavaBeans regular properties style:</p>
<pre><code>* public void setName(String name)
* public String getName()
</code></pre>
<p>As of J2SE 5.0 JavaBeans specification allows IndexedPropertyChangeEvents which have a different getter/setter naming scheme for arrays: </p>
<pre><code>* public void setName(int index, String name)
* public String getName(int index)
* public void setName(String[] names)
* public String[] getName()
</code></pre>
<p>How can you configure eclipse to generate getters and setters which follow this style?</p>
http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works17The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-30T23:56:11Z2009-09-22T21:32:42Z
<p>What is the best description of the CPU that can fit in 500 words? Submit and vote up actual attempts. Imagine you're explaining it ...</p>
<ul>
<li>to some non-cs grad students over
dinner</li>
<li>to the smartest, most interested 12 year old you've ever met</li>
<li>to a beginning programmer in a high-level language who knows how to count, add, subtract, and multiply in binary</li>
<li>anyone capable of understanding how it works</li>
</ul>
http://stackoverflow.com/questions/699414/hiding-a-local-type-parameter-in-java/699958#6999580Answer by Myer Nore for Hiding a "local" type parameter in JavaMyer Nore2009-03-31T04:11:56Z2009-03-31T04:11:56Z<p>If you really want to draw some ire, you can put the Bar class inside the Foo interface, and suck the T of that way. See <a href="http://www.onjava.com/pub/a/onjava/excerpt/HardcoreJava%5Fchap06/index2.html" rel="nofollow">this article</a> for more information about classes inside interfaces. Maybe this is the one case where that makes sense?</p>
<pre><code>interface Foo<T> {
T getOne();
void useOne(T t);
public class Bar<T> {
private Foo<T> foo;
private T t;
public void startStuff() {
t = foo.getOne();
}
public void finishStuff() {
foo.useOne(t);
}
}
}
</code></pre>
http://stackoverflow.com/questions/697918/what-does-o1-access-time-mean/698111#6981110Answer by Myer Nore for What does "O(1) access time" mean?Myer Nore2009-03-30T17:08:51Z2009-03-30T17:08:51Z<p>Introduction to Algorithms: Second Edition by Cormen, Leiserson, Rivest & Stein says on page 44 that </p>
<blockquote>
<p>Since any constant is a degree-0
polynomial, we can express any
constant function as Theta(n^0), or
Theta(1). This latter notation is a
minor abuse, however, because it is
not clear what variable is tending to
infinity. We shall often use the
notation Theta(1) to mean either a
constant or a constant function with
respect to some variable. ... We
denote by O(g(n))... the set of
functions f(n) such that there exist
positive constants c and n0 such that
0 <= f(n) <= c*g(n) for all n >= n0.
... Note that f(n) = Theta(g(n))
implies f(n) = O(g(n)), since Theta
notation is stronger than O notation.</p>
</blockquote>
<p>If an algorithm runs in O(1) time, it means that asymptotically doesn't depend upon any variable, meaning that there exists at least one positive constant that when multiplied by one is greater than the asymptotic complexity (~runtime) of the function for values of n above a certain amount. Technically, it's O(n^0) time.</p>
http://stackoverflow.com/questions/694897/vs-t/695519#6955196Answer by Myer Nore for <?> vs <T>Myer Nore2009-03-29T22:33:34Z2009-03-30T12:04:00Z<p>todd.run is totally right on, but that's only half the answer. There are also use cases for choosing <code><T></code> over <code><?></code> (or vice versa) that apply when you don't add type parameter to the class that encloses the method. For example, consider the difference between </p>
<pre><code>public <E extends JLabel> boolean add(List<E> j) {
boolean t = true;
for (JLabel b : j) {
if (b instanceof JLabel) {
t = t && labels.add(b);
}
}
return t;
}
</code></pre>
<p>and </p>
<pre><code>public boolean add(List<? extends JLabel> j) {
boolean t = true;
for (JLabel b : j) {
if (b instanceof JLabel) {
t = t && labels.add(b);
}
}
return t;
}
</code></pre>
<p>The first method will actually not compile UNLESS you add an appropriate type parameter to the enclosing class, whereas the second method WILL compile regardless of whether the enclosing class has a type parameter. If you do not use <code><?></code>, then you are locally responsible for telling the compiler how to acquire the type that will be filled in by the letter used in its place. You frequently encounter this problem - needing to use ? rather than T - when attempting to write generic methods that use or need "extends" and "super." A better but more elaborate treatment of this issue is on page 18 of <a href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" rel="nofollow">Gilad Bracha's Generics Tutorial (PDF)</a>. Also see <a href="http://stackoverflow.com/questions/695298/java-field-type-for-a-value-of-a-generically-recusive-self-type">this stack overflow question</a> whose answer illuminates these issues.</p>
<p>Check out this stack overflow link for information about your second question: <a href="http://stackoverflow.com/questions/339699/java-generics-type-erasure-when-and-what-happens">Java generics - type erasure - when and what happens</a>. While I don't know the answer to your question about the compile time difference between <code><?></code> and <code><T></code>, I'm pretty sure the answer can be found at <a href="http://www.angelikalanger.com/GenericsFAQ/FAQSections/TechnicalDetails.html#FAQ001" rel="nofollow">this FAQ</a> that erickson mentioned in that post.</p>
http://stackoverflow.com/questions/642242/how-do-i-create-a-movie-from-a-set-of-images-using-qtj-and-java/695902#6959023Answer by Myer Nore for How do i create a movie from a set of images using qtj and java?Myer Nore2009-03-30T03:15:02Z2009-03-30T03:20:08Z<p>I've done this through QTJ with the <a href="http://processing.org/reference/libraries/video/MovieMaker.html" rel="nofollow">MovieMaker</a> class from <a href="http://processing.org" rel="nofollow">processing</a> libraries (GPL). Processing is pure java, though it can hide it for beginners. </p>
<p><strong>Small tutorial:</strong>
Download Processing, open it, go to Sketch -> Show Sketch Folder, create a folder called "data", and put all your images inside that folder, named "filename01.gif" through "filename09.gif". Paste the following code into the editor, and hit play:</p>
<pre><code>/**
* Makes a QuickTime movie out of an array of images.
*/
import processing.video.*;
MovieMaker mm;
PImage[] imageFrames;
int index;
void setup() {
size(320, 240);
int numFrames = 9;
imageFrames = new PImage[numFrames];
for( int i = 0; i < imageFrames.length; i++ )
{
imageFrames[i] = loadImage( "filename" + nf(i+1,2) + ".gif" );
}
// Save uncompressed, at 15 frames per second
mm = new MovieMaker(this, width, height, "drawing.mov");
// Or, set specific compression and frame rate options
//mm = new MovieMaker(this, width, height, "drawing.mov", 30,
// MovieMaker.ANIMATION, MovieMaker.HIGH);
}
void draw() {
if( index < imageFrames.length )
{
// show the image
image( imageFrames[index], 0, 0 );
// Add window's pixels to movie
mm.addFrame();
index++;
}
else
{
mm.finish();
// Quit running the sketch once the file is written
exit();
}
}
</code></pre>
<p>This will create a file "drawing.mov" from your images in the sketch folder. If you go to file --> export application, and then open the sketch folder and navigate to the folder application.macosx/source or application.windows/source, there should be a .java file that has the actual code, which should look like this: </p>
<pre><code>import processing.core.*;
import processing.xml.*;
import processing.video.*;
import java.applet.*;
import java.awt.*;
import java.awt.image.*;
import java.awt.event.*;
import java.io.*;
import java.net.*;
import java.text.*;
import java.util.*;
import java.util.zip.*;
import java.util.regex.*;
public class movie2 extends PApplet {
/**
* Makes a QuickTime movie out of an array of images.
*/
MovieMaker mm;
PImage[] imageFrames;
int index;
public void setup() {
size(320, 240);
int numFrames = 9;
imageFrames = new PImage[numFrames];
for( int i = 0; i < imageFrames.length; i++ )
{
imageFrames[i] = loadImage( "filename" + nf(i+1,2) + ".gif" );
}
// Save uncompressed, at 15 frames per second
mm = new MovieMaker(this, width, height, "drawing.mov");
// Or, set specific compression and frame rate options
//mm = new MovieMaker(this, width, height, "drawing.mov", 30,
// MovieMaker.ANIMATION, MovieMaker.HIGH);
}
public void draw() {
if( index < imageFrames.length )
{
// show the image
image( imageFrames[index], 0, 0 );
// Add window's pixels to movie
mm.addFrame();
index++;
}
else
{
mm.finish();
// Quit running the sketch once the file is written
//exit();
println( "done" );
}
}
static public void main(String args[]) {
PApplet.main(new String[] { "--bgcolor=#e0dfe3", "movie2" });
}
}
</code></pre>
<p>To use pure java, you'll need to use core.jar and video.jar from the processing application folder on your classpath, and then compile this java code. Here's a <a href="http://processing.org/reference/" rel="nofollow">function reference</a> and a <a href="http://dev.processing.org/reference/core/index.html" rel="nofollow">javadoc</a> for the processing library. <a href="http://dev.processing.org/reference/everything/javadoc/processing/video/MovieMaker.html" rel="nofollow">Here are the javadocs for the MovieMaker class</a>. If you want, you can see the <a href="http://dev.processing.org/source/index.cgi/trunk/processing/video/src/processing/video/MovieMaker.java?view=markup" rel="nofollow">source</a> to the MovieMaker class.</p>
<p>HTH</p>
http://stackoverflow.com/questions/695724/java-overloaded-methods/695749#6957491Answer by Myer Nore for Java Overloaded MethodsMyer Nore2009-03-30T01:15:45Z2009-03-30T01:15:45Z<p>Also, at the end of the first method pause(), you need another curly brace: </p>
<pre><code>public static void pause()
{
try
{
System.out.print("Press <Enter> to continue...");
System.in.read();
}
catch (Exception e)
{
System.err.printf("Error %s%c\n",e.getMessage(),7);
}
}<-- this one is missing in yours
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/664896/get-the-vk-int-from-an-arbitrary-char-in-java4Get the VK int from an arbitrary char in javaMyer Nore2009-03-20T03:37:12Z2009-03-29T22:45:17Z
<p>How do you get the VK code from a char that is a letter? It seems like you should be able to do something like <code>javax.swing.KeyStroke.getKeyStroke('c').getKeyCode()</code>, but that doesn't work (the result is zero). Everyone knows how to get the key code if you already have a KeyEvent, but what if you just want to turn chars into VK ints? I'm not interested in getting the FK code for strange characters, only [A-Z],[a-z],[0-9]. </p>
<p>Context of this problem --------
All of the Robot tutorials I've seen assume programmers love to spell out words by sending keypresses with VK codes:</p>
<blockquote>
<pre><code>int keyInput[] = {
KeyEvent.VK_D,
KeyEvent.VK_O,
KeyEvent.VK_N,
KeyEvent.VK_E
};//end keyInput array
</code></pre>
</blockquote>
<p>Call me lazy, but even with Eclipse this is no way to go about using TDD on GUIs. If anyone happens to know of a Robot-like class that takes strings and then simulates user input for those strings (I'm using <a href="http://www.javaworld.com/javaworld/jw-07-2007/jw-07-fest.html" rel="nofollow">FEST</a>), I'd love to know.</p>
http://stackoverflow.com/questions/694287/iterate-recurse-through-containers-and-components-to-find-objects-of-a-given-cl0Iterate / recurse through Containers and Components to find objects of a given class?Myer Nore2009-03-29T07:55:34Z2009-03-29T15:50:04Z
<p>I've written a MnemonicsBuilder class for JLabels and AbstractButtons. I would like to write a convenience method <code>setMnemonics( JFrame f )</code> that will iterate through every child of the JFrame and select out the JLabels and AbstractButtons. How can I obtain access to everything contained in the JFrame? I've tried: </p>
<pre><code>LinkedList<JLabel> harvestJLabels( Container c, LinkedList<JLabel> l ) {
Component[] components = c.getComponents();
for( Component com : components )
{
if( com instanceof JLabel )
{
l.add( (JLabel) com );
} else if( com instanceof Container )
{
l.addAll( harvestJLabels( (Container) com, l ) );
}
}
return l;
}
</code></pre>
<p>In some situations, this works just fine. In others, it runs out of memory. What am I not thinking of? Is there a better way to search for child components? Is my recursion flawed? Is this not a picture of how things "Contain" other things in Swing - e.g., is Swing not a Rooted Tree?</p>
<pre><code>JFrame
|
|\__JMenuBar
| |
| \__JMenu
| |
| \__JMenuItem
|
|\__JPanel
| |
| |\__JButton
| |
| |\__JLabel
| |
| |\__ ... JCheckBoxes, other AbstractButtons, etc.
</code></pre>
http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699632#699632Comment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T03:16:29Z2009-03-31T03:16:29ZNo doubt! It's funny how awkward it is when they get to four.http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-worksComment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T03:08:50Z2009-03-31T03:08:50Z@rism - When I wrote this I hadn't caught on to how all questions that don't have to do with programming are tagged not-programming-related. Will do. http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-worksComment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T02:53:17Z2009-03-31T02:53:17Z@Erik - that's partly it; an earlier version of this question was actually about how to teach kids about the CPU. I'm a teacher of kids myself, and I asked this question today because I just taught a "lesson" about CPUs. But I ask because we SHOULD be able to describe it to others in 500 words.http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699763#699763Comment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T02:44:11Z2009-03-31T02:44:11ZThanks - those tags were mistakes.http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699632#699632Comment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T01:22:07Z2009-03-31T01:22:07ZThanks for your comment. MIPS was how I was taught about the CPU, that's a great choice for teaching. But I'm definitely not asking for tips on how to teach here though, or even an essay that gives "justice" to the situation. Just the "simplest and best" description.http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699574#699574Comment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T00:48:13Z2009-03-31T00:48:13ZA lot can be accomplished in 500 words. I'm hoping the programming community will be able to explain what makes its heart beat.
<a href="http://docs.google.com/Doc?id=dgzqsgjz_43c75smjgg" rel="nofollow">docs.google.com/Doc?id=dgzqsgjz_43c75smjgg</a>
<a href="http://docs.google.com/Doc?id=dgzqsgjz_33vk9kqtfm" rel="nofollow">docs.google.com/Doc?id=dgzqsgjz_33vk9kqtfm</a>
<a href="http://docs.google.com/Doc?id=dgzqsgjz_32g3wqz26z" rel="nofollow">docs.google.com/Doc?id=dgzqsgjz_32g3wqz26z</a>http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-works/699574#699574Comment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T00:45:22Z2009-03-31T00:45:22ZThanks for the suggestions!http://stackoverflow.com/questions/699519/the-best-500-word-or-less-description-of-how-a-cpu-worksComment by Myer Nore on The best 500 word (or less) description of how a CPU works?Myer Nore2009-03-31T00:34:25Z2009-03-31T00:34:25Z@Norman: Understood. We'll see what the community comes up with. I'm hoping and betting that the question's "built in" bounty will be enough.http://stackoverflow.com/questions/697188/fast-circle-collision-detection/697232#697232Comment by Myer Nore on Fast circle collision detectionMyer Nore2009-03-30T23:00:54Z2009-03-30T23:00:54ZWhile I understand it would be faster not to cast to a float, would it be more efficient if you just used floats instead of doubles?http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84826#84826Comment by Myer Nore on What's your favorite "programmer" cartoon?Myer Nore2009-03-30T04:09:10Z2009-03-30T04:09:10ZAn Algorithms and Data Structures teacher once rephrased this as the "fun roommate" problem: what do you do the night your roommate removes all the punctuation and spaces from your senior thesis to be "funny"?