User izb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T14:23:31Zhttp://stackoverflow.com/feeds/user/974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1751495/why-do-errors-no-longer-appear-in-eclipses-package-explorer0Why do errors no longer appear in Eclipse's package explorer?izb2009-11-17T20:20:59Z2009-11-21T20:49:03Z
<p>My project used to be fine - errors showed up in the file margin, the editor breadcrumb, the problems view and in the package explorer tree as little red X marks.</p>
<p>Somewhat spontaneously though, it's stopped working properly.</p>
<p>If I introduce an error into my code, it shows up in the file margin, and nowhere else. It takes a 'project clean' to make the red X's show up elsewhere.</p>
<p>Then if I fix the problem, the error is cleared from the file margin but the red marks persist elsewhere until I do another clean.</p>
<p>Why is it no longer showing errors properly in an automatic way?</p>
<p>I'm using Eclipse 3.5</p>
http://stackoverflow.com/questions/1743254/eclipse-pulsar-packaging-how-do-i-incorporate-other-projects-into-my-jar0Eclipse (Pulsar) packaging: How do I incorporate other projects into my jar?izb2009-11-16T16:26:16Z2009-11-16T16:29:18Z
<p>I have a JavaME project in Eclipse (Pulsar 3.5; Galileo).</p>
<p>I have another project with common code in it in the same workspace and this is referenced from my app.</p>
<p>When I choose 'package app' it generates a jad/jar in the project's deployed folder, but the classes from the referenced project are not included.</p>
<p>Is it possible to include these classes into the final jar automatically?</p>
http://stackoverflow.com/questions/1743254/eclipse-pulsar-packaging-how-do-i-incorporate-other-projects-into-my-jar/1743273#17432730Answer by izb for Eclipse (Pulsar) packaging: How do I incorporate other projects into my jar?izb2009-11-16T16:29:18Z2009-11-16T16:29:18Z<p>No sooner had I asked the question, than I found the solution myself...</p>
<p>Project properties, 'Order and Export', check the box next to the referenced project you want to include in the output.</p>
http://stackoverflow.com/questions/1625814/get-a-hashset-out-of-the-keys-of-a-hashmap/1625984#16259846Answer by izb for Get a HashSet out of the keys of a HashMap?izb2009-10-26T17:05:36Z2009-10-26T17:05:36Z<p>Assuming that the word 'efficient' is the key part of your question, and depending what you want to do with the set, it might be an idea to create your own subclass of HashSet which ignores the HashSet implementation and presents a view onto the existing map, instead.</p>
<p>As a partially implemented example, it might look something like:</p>
<pre><code>public class MapBackedHashSet extends HashSet
{
private HashMap theMap;
public MapBackedHashSet(HashMap theMap)
{
this.theMap = theMap;
}
@Override
public boolean contains(Object o)
{
return theMap.containsKey(o);
}
/* etc... */
}
</code></pre>
<p>If you don't know how the class will be used, you'll need to take care to override all the relevant methods.</p>
http://stackoverflow.com/questions/1588753/flicker-free-awt-application1Flicker free AWT applicationizb2009-10-19T13:43:58Z2009-10-19T13:46:49Z
<p>I'm trying to write a silly little app using Java and AWT.</p>
<p>It simply runs and animates some shapes, so as a first step, I created a simple app that clears a canvas with <code>fillRect</code> every 50ms.</p>
<p>The problem is, my app flickers every now and then with the underlying window colour. Google is failing me when it comes to finding simple hello-world type examples of flicker-free animating AWT apps.</p>
<p>What would the skeletal code for something like this look like?</p>
http://stackoverflow.com/questions/1536769/is-there-a-pattern-for-this-queueing-system-and-example-java-code0Is there a pattern for this queueing system, and example Java code?izb2009-10-08T09:55:44Z2009-10-08T10:08:30Z
<p>I have a component that I wish to write and it's the kind of thing that feels like a common pattern. I was hoping to find the common name for the pattern if there is one, and examples of how to go about implementing it.</p>
<p>I have a service that queues requests and processes them one at a time. I have a number of client threads which make the requests. The key is that the calling threads must block until their own particular request is serviced.</p>
<p>E.g. if there are 10 threads, all making a request, then the 10th thread will block for longest while it waits for its request to make it to the front of the queue, and to be processed. In brief pseodocode, a call would be as simple as:</p>
<pre><code>service.processMessage(myMessage); /* block whilst it enqueues, waits, */
/* processes and returns */
</code></pre>
<p>I know what you're thinking - why bother having threads at all? Let's just say there are design constraints well outside my control.</p>
<p>Also, this should run on JavaME, which means an <a href="http://java.sun.com/javame/reference/apis/jsr139/" rel="nofollow">infuriating subset of real Java</a>, and no swanky external libraries.</p>
http://stackoverflow.com/questions/416050/avm2-and-abc-adobes-actionscript-bytecode-format-spec-licensing-can-i-use-it0AVM2 and ABC (Adobe's ActionScript bytecode format) spec licensing.. can I use it?izb2009-01-06T10:35:31Z2009-10-03T20:17:01Z
<p>Google is failing me on this one.</p>
<p>Let's say I have some ECMA script that I've compiled to an ABC bytecode file using the compiler in the Open Source Flex SDK.</p>
<p>Is it within the terms of use (That I can't seem to find) for me to use the AVM2 specification from adobe to create a new interpreter for this file?</p>
<p>The best I can manage is a sentence in wikipedia that says that the flash specification is available "without restriction". I'm not making a flash player though, and AFAIK the AVM2 spec is separate from the SWF spec.</p>
<p>Does anyone know off-hand if my intentions are legal?</p>
http://stackoverflow.com/questions/1468223/audio-streaming-using-j2me/1470499#14704990Answer by izb for Audio Streaming Using J2MEizb2009-09-24T08:57:04Z2009-09-24T08:57:04Z<p>J2ME won't let you do this over HTTP. It will download the entire audio before it starts playback. What you need is to host it on an RTP server instead; only then will J2ME stream the audio.</p>
<p>If that's no good, then you might be stuck looking for devices that have their own proprietary libraries for this kind of thing.</p>
http://stackoverflow.com/questions/1459088/how-do-i-make-wget-properly-quiet0How do I make wget properly quiet?izb2009-09-22T09:38:26Z2009-09-22T09:42:20Z
<p>wget always echoes system values to the console, even when I specify -q (quiet) on the command line, e.g.:</p>
<pre><code>C:\> wget -q http://www.google.com/
SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc
syswgetrc = C:\Program Files\GnuWin32/etc/wgetrc
C:\>
</code></pre>
<p>How do I make the noise stop?</p>
http://stackoverflow.com/questions/1432961/how-do-i-make-httpurlconnection-use-a-proxy2How do I make HttpURLConnection use a proxy?izb2009-09-16T13:28:16Z2009-09-16T14:23:29Z
<p>If I do this...</p>
<pre><code>conn = new URL(urlString).openConnection();
System.out.println("Proxy? " + conn.usingProxy());
</code></pre>
<p>it prints</p>
<pre><code>Proxy? false
</code></pre>
<p>The problem is, I am behind a proxy. Where does the JVM get its proxy information from on Windows? How do I set this up? All my other apps seem perfectly happy with my proxy.</p>
http://stackoverflow.com/questions/1422380/how-to-i-launch-a-ruby-script-from-the-command-line-by-just-its-name1How to I launch a ruby script from the command line by just its name?izb2009-09-14T15:44:58Z2009-09-14T16:01:36Z
<p>On windows, I can run my ruby script like this:</p>
<pre><code>> ruby myscript.rb
</code></pre>
<p>but I want to set things up so that I can just do this instead?..</p>
<pre><code>> myscript.rb
</code></pre>
<p>How do I do this? I know it's possible because I've recently moved from one PC that had this set up to a new PC that doesn't (yet).</p>
http://stackoverflow.com/questions/631166/using-json-in-a-yahoo-widget0Using JSON in a Yahoo! widgetizb2009-03-10T16:41:47Z2009-09-13T19:59:59Z
<p>Haaylp!</p>
<p>The Yahoo! Widgets spec says I can parse JSON objects using JSON.parse(). When I actually try this, and here is what I tried...</p>
<pre><code>var parsed = JSON.parse('{"key": "value"}');
print (parsed);
for (p in parsed)
{
print ("prop: "+p);
}
</code></pre>
<p>I get:</p>
<pre><code>ReferenceError: JSON is not defined
</code></pre>
<p>What's going on? Is further magic required?</p>
http://stackoverflow.com/questions/1393054/can-i-set-up-arbitrary-commands-in-an-eclipse-java-project-run-configuration1Can I set up arbitrary commands in an Eclipse Java project run configuration?izb2009-09-08T09:51:06Z2009-09-08T10:12:53Z
<p>I have a Java Eclipse project, but I don't run it from the command line using java.exe. Instead I run it through a python script that runs the java.</p>
<p>What I'd like to do is run this when I hit the 'Run' button in eclipse and see the output in Eclipse's console window. Unfortunately the available run configuration options available are a little too restrictive and don't seem to allow for this arbitrary 'run anything you like' configuration.</p>
<p>Is this possible? Are there any eclipse plugins that add this kind of configuration option?</p>
<p>I realise I'd probably lose debugger support, but this is not an issue for me.</p>
http://stackoverflow.com/questions/1389303/finding-phone-number-or-any-unique-number-thru-j2me/1389508#13895082Answer by izb for Finding phone number or any unique number thru J2MEizb2009-09-07T13:47:43Z2009-09-07T13:47:43Z<p>One approach is to insert a unique identifier into the JAD file when the application is downloaded during installation. The app can then uniquely identify itself to the server by reading the identifier string from its JAD file.</p>
http://stackoverflow.com/questions/1356912/synchronize-data-from-javame-mobile-locally/1357171#13571710Answer by izb for Synchronize data from JavaME mobile locallyizb2009-08-31T12:11:34Z2009-09-04T14:22:15Z<p>One way would be to save the data in a pre-determined location using the file connection API. The synchronization work would then be done entirely by the PC application which scans for the presence of a particular folder on the device. If found it could write new data into the folder, or read changed data from it, both activities being picked up by the J2ME app the next time it starts.</p>
http://stackoverflow.com/questions/1152261/are-there-any-examples-of-code-that-is-difficult-to-decompile1Are there any examples of code that is difficult to decompile?izb2009-07-20T08:14:19Z2009-09-04T04:04:15Z
<p>Sometimes when decompiling Java code, the decompiler doesn't manage to decompile it properly and you end up with little bits of bytecode in the output.</p>
<p>What are the weaknesses of decompilers? Are there any examples of Java source code that compiles into difficult-to-decompile bytecode?</p>
<p><strong>Update:</strong></p>
<p>Note that I'm aware that exploiting this information is not a safe way to hide secrets in code, and that decompilers can be improved in the future.</p>
<p>Nonetheless I am still interested in finding out what kinds of code foxes todays crop of decompilers.</p>
http://stackoverflow.com/questions/1367430/is-there-a-faster-way-to-escape-a-string1Is there a faster way to escape a string?izb2009-09-02T12:34:28Z2009-09-02T19:34:00Z
<p>I have a method that looks like this:</p>
<pre><code>public static String escape(String text)
{
String r = replace(text, "\\", "\\\\");
r = replace(r, "\r", "\\r");
r = replace(r, "\b", "\\b");
r = replace(r, "\t", "\\t");
r = replace(r, "\n", "\\n");
r = replace(r, "\f", "\\f");
return r;
}
</code></pre>
<p>Is there a faster, less brutal way to do this and if so what would that way look like?</p>
<p>Note that this is J2ME, so no Apache commons, and no regex.</p>
http://stackoverflow.com/questions/1367322/what-are-all-the-escape-characters-in-java1What are all the escape characters in Java?izb2009-09-02T12:10:46Z2009-09-02T12:14:31Z
<p>I know some of the escape characters in Java, e.g.</p>
<pre><code>\n : Newline
\r : Carriage return
\t : Tab
\\ : Backslash
...
</code></pre>
<p>Is there a complete list somewhere?</p>
http://stackoverflow.com/questions/1362400/eclipse-spell-checker-how-do-i-remove-a-word-i-added2Eclipse spell checker - How do I remove a word I added?izb2009-09-01T13:10:03Z2009-09-01T13:42:55Z
<p>I accidentally added a word I'm forever mis-spelling into Eclipse's spell-checker dictionary. How do I get it back out again?</p>
http://stackoverflow.com/questions/1340644/alternative-ways-to-open-a-file-for-writing-on-j2me1Alternative ways to open a file for writing on J2ME?izb2009-08-27T12:06:11Z2009-08-28T14:20:57Z
<p>I've inherited a bit of J2ME code where a single class has the following two methods in it:</p>
<pre><code>public DataOutputStream getOutputStream(String filePath) throws IOException
{
return Connector.openDataOutputStream(filePath);
}
public DataOutputStream createOutputStream(String filePath) throws IOException
{
FileConnection fc = (FileConnection)Connector.open(filePath);
if(fc.exists())
return fc.openDataOutputStream();
else
fc.create();
return fc.openDataOutputStream();
}
</code></pre>
<p>As far as I can tell, these two methods do exactly the same thing. Bizarrely, the methods are right next to each other in the class, implying that whoever put them there knew what they were doing.</p>
<p>Are these methods essentially the same? Can I get rid of one of them? (Or probably both, thinking about it).</p>
http://stackoverflow.com/questions/1337041/regex-a-xml-string/1337282#13372822Answer by izb for Regex a xml stringizb2009-08-26T20:29:12Z2009-08-26T20:29:12Z<p>Look up <a href="http://www.google.com/search?q=xpath" rel="nofollow">XPath</a>, which is kinda like regex for XML. Sort of.</p>
<p>With XPath you write expressions that extract information from XML documents, so extracting the nodes which don't have Loop as a sub-node is exactly the sort of thing it's cut out for.</p>
<p>I haven't tried this, but as a first stab, I'd guess the XPath expression would look something like:</p>
<pre><code>"//ser:serviceItemValues/ord1:value[text()!='Loop']/parent::*"
</code></pre>
http://stackoverflow.com/questions/1333527/how-to-i-print-to-the-console-in-a-win32-app1How to I print to the console in a Win32 app?izb2009-08-26T09:45:12Z2009-08-26T10:51:42Z
<p>I've got a win32 project that I've loaded into Visual Studio 2005. I'd like to be able to print things to the Visual Studio output window, but I can't for the life of me work out how. I've tried 'printf' and 'cout <<' but my messages stay stubbornly unprinted.</p>
<p>Is there some sort of special way to print to the Visual Studio output window?</p>
http://stackoverflow.com/questions/1333708/how-to-run-jar-file-on-unix/1333784#13337841Answer by izb for How to run .jar file on unix ?izb2009-08-26T10:36:40Z2009-08-26T10:36:40Z<p>Have you tried using a newer version of Java on your Unix system?</p>
<p>If you control the jar file, could you target Java 1.5 when it's compiled?</p>
http://stackoverflow.com/questions/1322683/dynamic-array-of-ints-in-j2me/1322714#13227144Answer by izb for Dynamic Array of ints in j2meizb2009-08-24T14:21:08Z2009-08-24T14:21:08Z<pre><code>public class DynamicIntArray
{
private static final int CAPACITY_INCREMENT = 10;
private static final int INITIAL_CAPACITY = 10;
private final int capacityIncrement;
public int length = 0;
public int[] array;
public DynamicIntArray(int initialCapacity, int capacityIncrement)
{
this.capacityIncrement = capacityIncrement;
this.array = new int[initialCapacity];
}
public DynamicIntArray()
{
this(DEFAULT_CAPACITY_INCREMENT, DEFAULT_INITIAL_CAPACITY);
}
public int append(int i)
{
final int offset = length;
if (offset == array.length)
{
int[] old = array;
array = new int[offset + capacityIncrement];
System.arraycopy(old, 0, array, 0, offset);
}
array[length++] = i;
return offset;
}
public void removeElementAt(int offset)
{
if (offset >= length)
{
throw new ArrayIndexOutOfBoundsException("offset too big");
}
if (offset < length)
{
System.arraycopy(array, offset+1, array, offset, length-offset-1);
length--;
}
}
}
</code></pre>
<p>Doesn't have a setAt() method, but I'm sure you get the idea.</p>
http://stackoverflow.com/questions/1311037/are-there-any-invalid-linux-filenames3Are there any invalid linux filenames?izb2009-08-21T09:54:53Z2009-08-21T16:46:17Z
<p>If I wanted to create a string which is guaranteed not to represent a filename, I could put one of the following characters in it on Windows:</p>
<pre><code>\ / : * ? | < >
</code></pre>
<p>e.g.</p>
<pre><code>this-is-a-filename.png
?this-is-not.png
</code></pre>
<p>Is there any way to identify a string as 'not possibly a file' on Linux?</p>
http://stackoverflow.com/questions/1295688/compiled-jar-file-contains-excess-class-files/1295876#12958763Answer by izb for compiled Jar file contains excess class filesizb2009-08-18T19:09:07Z2009-08-18T19:09:07Z<p>Try using proguard on the jar to automatically remove classes not used by your midlet class.</p>
http://stackoverflow.com/questions/835753/convert-grayscale-value-to-rgb-representation/1271822#12718224Answer by izb for Convert grayscale value to RGB representation?izb2009-08-13T13:01:56Z2009-08-13T13:01:56Z<p>If you have the greyscale value in a variable and want to produce a new value in the form 0x00RRGGBB, then a quick way to do this is:</p>
<pre><code>int rgb = grey * 0x00010101;
</code></pre>
<p>or equivalent in your chosen language.</p>
http://stackoverflow.com/questions/1267031/what-does-fragmented-memory-look-like1What does fragmented memory look like?izb2009-08-12T15:44:18Z2009-08-12T16:31:49Z
<p>I have a mobile application that is suffering from slow-down over time. My hunch, (In part fed by <a href="http://developer.sonyericsson.com/site/global/techsupport/tipstrickscode/java/p%5Favoidingmemoryfragment.jsp" rel="nofollow">this article</a>,) is that this is due to fragmentation of memory slowing the app down, but I'm not sure. Here's a pretty graph of the app's memory use over time:</p>
<p><img src="http://kupio.com/image-dump/fragmented.png" alt="fraggle rock" /></p>
<p>The 4 peaks on the graph are 4 executions of the exact same task on the app. I start the task, it allocates a bunch of memory, it sits for a bit (The flat line on top) and then I stop the task. At that point it calls System.gc(); and the memory gets cleaned up.</p>
<p>As can be seen, each of the 4 runs of the exact same task take longer to execute. The low-points in the graph all return to the same level so there do not seem to be any memory leaks between task runs.</p>
<p>What I want to know is, is memory fragmentation a feasible explanation or should I look elsewhere first, bearing in mind that I've already done a lot of looking? The low-points on the graph are relatively low so my assumption is that in this state the memory would not be very fragmented since there can't be a lot of small memory holes to be causing problems.</p>
<p>I don't know how the j2me memory allocator works though, so I really don't know. Can anyone advise? Has anyone else had problems with this and recognises the memory profile of the app?</p>
http://stackoverflow.com/questions/793422/can-i-guarantee-the-order-in-which-static-initializers-are-run-in-java4Can I guarantee the order in which static initializers are run in Java?izb2009-04-27T13:10:11Z2009-08-10T15:45:18Z
<p>I have a Set class (This is J2ME, so I have limited access to the standard API; just to explain my apparent wheel-reinvention). I am using my set class to create constant sets of things in classes and subclasses. It sort of looks like this...</p>
<pre><code>class ParentClass
{
protected final static Set THE_SET = new Set() {{
add("one");
add("two");
add("three");
}};
}
class SubClass extends ParentClass
{
protected final static Set THE_SET = new Set() {{
add("four");
add("five");
add("six");
union(ParentClass.THE_SET); /* [1] */
}};
}
</code></pre>
<p>All looks fine, except the line at [1] causes a null pointer exception. Presumably this means that the static initialiser in the subclass is being run before that of the parent class. This surprised me because I'd have thought it would run the static blocks in any new imports first, before running any in the instatiated subclass.</p>
<p>Am I right in this assumption? Is there any way to control or work around this behaviour?</p>
<p><strong>Update:</strong></p>
<p>Things are even stranger. I tried this instead (Note the 'new ParentClass()' line):</p>
<pre><code>class ParentClass
{
public ParentClass()
{
System.out.println(THE_SET);
}
protected final static Set THE_SET = new Set() {{
add("one");
add("two");
add("three");
}};
}
class SubClass extends ParentClass
{
protected final static Set THE_SET = new Set() {{
System.out.println("a");
new ParentClass();
System.out.println("b");
add("four");
System.out.println("c");
add("five");
System.out.println("d");
add("six");
System.out.println("e");
union(ParentClass.THE_SET); /* [1] */
System.out.println("f");
}};
}
</code></pre>
<p>And the output is strange:</p>
<pre><code>a
["one", "two", "three"]
b
c
d
e
Exception in thread "main" java.lang.ExceptionInInitializerError
Caused by: java.lang.NullPointerException
</code></pre>
<p>So ParentClass is initialised, but the subclass doesn't have access to it in its static initializer.</p>
http://stackoverflow.com/questions/1168451/is-shifting-bits-faster-than-multiplying-and-dividing-in-java-net/1255621#12556210Answer by izb for Is shifting bits faster than multiplying and dividing in Java? .NET?izb2009-08-10T15:37:45Z2009-08-10T15:37:45Z<p>Note that shifting down and division will (In Java, certainly) give different results for negative, odd numbers.</p>
<pre><code>int a = -7;
System.out.println("Shift: "+(a >> 1));
System.out.println("Div: "+(a / 2));
</code></pre>
<p>Prints:</p>
<pre><code>Shift: -4
Div: -3
</code></pre>
<p>Since Java doesn't have any unsigned numbers it's not really possible for a java compiler to optimise this.</p>
http://stackoverflow.com/questions/1337041/regex-a-xml-string/1337282#1337282Comment by izb on Regex a xml stringizb2009-11-26T09:50:12Z2009-11-26T09:50:12ZWhy is this wrong? This is exactly what xpath is for, isn't it?http://stackoverflow.com/questions/1751495/why-do-errors-no-longer-appear-in-eclipses-package-explorer/1751538#1751538Comment by izb on Why do errors no longer appear in Eclipse's package explorer?izb2009-11-17T20:38:02Z2009-11-17T20:38:02ZOh, for goodness sake :)
Thanks.http://stackoverflow.com/questions/1700081/can-anybody-tell-me-why-is-so/1700117#1700117Comment by izb on Can anybody tell me why is so?izb2009-11-09T10:13:23Z2009-11-09T10:13:23ZGood lord... an integer cache.http://stackoverflow.com/questions/1367430/is-there-a-faster-way-to-escape-a-string/1367493#1367493Comment by izb on Is there a faster way to escape a string?izb2009-11-04T10:13:49Z2009-11-04T10:13:49ZWhoops. Mis-clicked.http://stackoverflow.com/questions/1625814/get-a-hashset-out-of-the-keys-of-a-hashmap/1625984#1625984Comment by izb on Get a HashSet out of the keys of a HashMap?izb2009-10-29T09:53:15Z2009-10-29T09:53:15ZThe point is that you don't need to extract the set in this way. This is to avoid creating a new hash from a potentially large number of objects.http://stackoverflow.com/questions/1536769/is-there-a-pattern-for-this-queueing-system-and-example-java-code/1536832#1536832Comment by izb on Is there a pattern for this queueing system, and example Java code?izb2009-10-08T10:12:21Z2009-10-08T10:12:21ZWow. That's just obliterated a whole lot of over-engineering on my part. I might actually do this, despite the vague possibility of genuine concurrency in the future, because it's far too perfect to ignore. Thanks.http://stackoverflow.com/questions/425757/netbeans-j2me-svg-complianceComment by izb on Netbeans J2ME SVG Complianceizb2009-10-06T09:59:23Z2009-10-06T09:59:23ZJust to clarify, are you saying that the WTK demo SVG files also display the error when launched from netbeans?http://stackoverflow.com/questions/1459088/how-do-i-make-wget-properly-quiet/1459107#1459107Comment by izb on How do I make wget properly quiet?izb2009-09-22T09:54:58Z2009-09-22T09:54:58Z2> NUL
Perfect, thanks :)http://stackoverflow.com/questions/1432961/how-do-i-make-httpurlconnection-use-a-proxy/1432984#1432984Comment by izb on How do I make HttpURLConnection use a proxy?izb2009-09-16T13:39:41Z2009-09-16T13:39:41ZThanks internet!http://stackoverflow.com/questions/1422380/how-to-i-launch-a-ruby-script-from-the-command-line-by-just-its-name/1422398#1422398Comment by izb on How to I launch a ruby script from the command line by just its name?izb2009-09-14T15:51:19Z2009-09-14T15:51:19ZDamn, that was obvious. (Slaps own face)http://stackoverflow.com/questions/1393054/can-i-set-up-arbitrary-commands-in-an-eclipse-java-project-run-configuration/1393143#1393143Comment by izb on Can I set up arbitrary commands in an Eclipse Java project run configuration?izb2009-09-08T10:25:04Z2009-09-08T10:25:04ZYou know I've looked at that button for years and it's never occurred to me to press it. Thanks :)http://stackoverflow.com/questions/278553/how-to-learn-spring-framework-fastComment by izb on How to learn Spring Framework fast? izb2009-09-08T08:57:00Z2009-09-08T08:57:00ZHow to learn it fast? I find that unreasonable deadlines are very helpful in that regard. ;)http://stackoverflow.com/questions/1356912/synchronize-data-from-javame-mobile-locally/1357171#1357171Comment by izb on Synchronize data from JavaME mobile locallyizb2009-09-04T14:22:29Z2009-09-04T14:22:29ZHa. That was rather silly.http://stackoverflow.com/questions/979100/any-reason-not-to-slap-the-synchronized-keyword-everywhere/979106#979106Comment by izb on Any reason NOT to slap the 'synchronized' keyword everywhere?izb2009-09-03T08:40:11Z2009-09-03T08:40:11ZBigger worries such as people adding the synchronized keyword to methods without really understanding why, or what it does. I'd worry about that.http://stackoverflow.com/questions/1367430/is-there-a-faster-way-to-escape-a-string/1367973#1367973Comment by izb on Is there a faster way to escape a string?izb2009-09-02T19:19:02Z2009-09-02T19:19:02ZAnd Hashtables are synchronized, just to add to the costs. The containsKey call could be replaced with '"\n\r\t\b\f\\\"\'".indexOf(current) != 1', I guess.