User Oscar Reyes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T05:41:32Zhttp://stackoverflow.com/feeds/user/20654http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/326390/how-to-create-a-java-string-from-the-contents-of-a-file10How to create a Java String from the contents of a fileOscar Reyes2008-11-28T18:32:07Z2009-12-21T03:52:07Z
<p>I've been using this idiom for some time now. And it seems to be the most wide spread at least in the sites I've visited. </p>
<p>Does anyone have a better/different way to read a file into a string in Java.</p>
<p>Thanks</p>
<pre><code> private String readFile( String file ) throws IOException {
BufferedReader reader = new BufferedReader( new FileReader (file));
String line = null;
StringBuilder stringBuilder = new StringBuilder();
String ls = System.getProperty("line.separator");
while( ( line = reader.readLine() ) != null ) {
stringBuilder.append( line );
stringBuilder.append( ls );
}
return stringBuilder.toString();
}
</code></pre>
http://stackoverflow.com/questions/580509/net-java-to-javascript-compiler/580511#5805117Answer by Oscar Reyes for .NET, Java to JavaScript compilerOscar Reyes2009-02-24T04:51:20Z2009-11-19T22:44:45Z<p>Look no further, you already mentioned GWT pick that!</p>
<p>It has a very good API and many good applications have use them. </p>
<p>Even JavaScript frameworks like <a href="http://extjs.com/" rel="nofollow">http://extjs.com/</a> have GWT support. </p>
<p>I use it for an small JavaScript calendar recently.</p>
<p>To be honest, I don't really like JavaScript that much. Most of the times the errors are hard to track (specially for a non JavaScript guy as me) and the workarounds included some plug-ins for the explorer just to get exactly what a compiler should do. Catch silly error early.</p>
<p>In the other hand I'm very familiar with the Java Programming language, and many of the libraries (if not the most important) such as java.lang and java.util have been ported to GWT. </p>
<p>Plus, the guy who wrote relevant parts of java.util is the same behind GWT (google Joshua Bloch.) </p>
http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/457957#4579576Answer by Oscar Reyes for What are the things Java got right? Oscar Reyes2009-01-19T15:24:51Z2009-11-17T21:49:50Z<p>Everything C# took from Java was the part they got right. Everything C# left behind, was the part Java got wrong. </p>
<p>By learning from other languages, the next implementation can fix and improve the previous language. </p>
<p>You can say the same from C++. Whatever Java borrowed was the right thing from java, whatever they put apart, was what C++ got wrong ( from Sun's perspective of course ) </p>
<p><strong>EDIT</strong></p>
<p>I have to make a note on my own sentence. When I said <em>"Everything"</em> I mean it in the most subjective sense of the word. In this case it was everything Microsoft felt was wrong about Java. They wanted to implement Java on MS platform, but when they incurred in license violation, they simply took most of the architecture and the main concepts, and created .NET, CLR and C#.</p>
<p>I think this was a very big step. Otherwise all C# developers will still be programming in VB or C++ ( which not necessarily is a bad thing, just not their favorite language I guess ) </p>
http://stackoverflow.com/questions/297938/always-on-top-windows-with-java/297948#29794813Answer by Oscar Reyes for "Always on Top" Windows with JavaOscar Reyes2008-11-18T05:46:46Z2009-11-03T19:24:03Z<p>Try this method of the Window class:</p>
<p><a href="http://java.sun.com/javase/6/docs/api/java/awt/Window.html#setAlwaysOnTop(boolean)" rel="nofollow">Window.alwaysOnTop(boolean)</a></p>
<p>It works the same way as the default in the Windows TaskManager: switch to another app but it shows always on top.</p>
<p>This was added in Java 1.5</p>
<p>Sample code:</p>
<pre><code>import javax.swing.JFrame;
import javax.swing.JLabel;
public class Annoying {
public static void main(String[] args) {
JFrame frame = new JFrame("Hello!!");
// Set's the window to be "always on top"
frame.setAlwaysOnTop( true );
frame.setLocationByPlatform( true );
frame.add( new JLabel(" Isn't this annoying?") );
frame.pack();
frame.setVisible( true );
}
}
</code></pre>
<p>
<img src="http://img62.imageshack.us/img62/1407/capturadepantalla200910u.png" alt="alt text" />
</p>
<p><sub>Window remains on top even when is not active</sub></p>
http://stackoverflow.com/questions/134492/how-to-serialize-an-object-into-a-string/134918#1349187Answer by Oscar Reyes for How to serialize an object into a stringOscar Reyes2008-09-25T18:03:38Z2009-11-03T18:06:37Z<p>Sergio.</p>
<p>You should use BLOB. It is pretty straighforward with JDBC. </p>
<p>The problem with the second code you posted it's the encoding you should additionally encode the bytes to make sure none of them fails.</p>
<p>If you still want to write it down into a String you can also encode the bytes using Base64. </p>
<p>Java does not have a "public" implementation for that ( though sun.misc, and java.util.prefs have implementations and the source is available, but check the license for those ) </p>
<p>Or you can use the following simple Base64Coder open source impl.</p>
<p><a href="http://www.source-code.biz/snippets/java/2.htm" rel="nofollow">http://www.source-code.biz/snippets/java/2.htm</a></p>
<p>Still you should use CLOB as data type, because you don't know how long the serialized data is going to be.</p>
<p>Here is a sample of how to use it.</p>
<pre><code>import java.util.*;
import java.io.*;
/**
* Usage sample serializing SomeClass instance
*/
public class ToStringSample {
public static void main( String [] args ) throws IOException,
ClassNotFoundException {
String string = toString( new SomeClass() );
System.out.println(" Encoded serialized version " );
System.out.println( string );
SomeClass some = ( SomeClass ) fromString( string );
System.out.println( "\n\nRestituted object");
System.out.println( some );
}
/** Read the object from Base64 string. */
private static Object fromString( String s ) throws IOException ,
ClassNotFoundException {
byte [] data = Base64Coder.decode( s );
ObjectInputStream ois = new ObjectInputStream(
new ByteArrayInputStream( data ) );
Object o = ois.readObject();
ois.close();
return o;
}
/** Write the object to a Base64 string. */
private static String toString( Serializable o ) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream( baos );
oos.writeObject( o );
oos.close();
return new String( Base64Coder.encode( baos.toByteArray() ) );
}
}
/** Test subject. A verey simple class */
class SomeClass implements Serializable{
int i = Integer.MAX_VALUE;
String s = "ABCDEFGHIJKLMNOP";
Double d = new Double( -1.0 );
public String toString(){
return "SomClass instance says: Don't worry, " +
"I'm healty look, my data is i = "+ i + ", s = "+ s + ", d = "+ d;
}
}
</code></pre>
<p>Output: </p>
<pre><code>C:\oreyes\samples\java\encode>javac *.java
C:\oreyes\samples\java\encode>java ToStringSample
Encoded serialized version
rO0ABXNyAAlTb21lQ2xhc3PSHbLk6OgfswIAA0kAAWlMAAFkdAASTG
phdmEvbGFuZy9Eb3VibGU7TAABc3QAEkxqYXZhL2xhbmcvU3RyaW5nO3
hwf////3NyABBqYXZhLmxhbmcuRG91YmxlgLPCSi
lr+wQCAAFEAAV2YWx1ZXhyABBqYXZhLmxhbmcuTnVtYmVyhqyVHQ
uU4IsCAAB4cL/wAAAAAAAAdAAQQUJDREVGR0hJSktMTU5PUA==
Restituted object
SomClass instance says: Don't worry, I'm healty look,
my data is i = 2147483647, s = ABCDEFGHIJKLMNOP, d = -1.0
</code></pre>
http://stackoverflow.com/questions/613390/code-golf-encode-decode-ascii-binary-4Code Golf: Encode / Decode ascii binaryOscar Reyes2009-03-05T02:26:11Z2009-10-29T21:57:04Z
<p>Decode the following string and encode it back.</p>
<p>Any programming language is welcome, the point is to create a solution with the minimum amount of characters. </p>
<p>Formatting and new lines does not count toward the char count.</p>
<p>Here's the message:</p>
<p><hr /></p>
<p>1010100 1101000 1100101 1110010 1100101 1100001 1110010 1100101 110001 110000 1110100 1111001 1110000 1100101 1110011 1101111 1100110 1110000 1100101 1101111 1110000 1101100 1100101 101110 1000100 1100101 1100011 1101111 1100100 1100101 1110100 1101000 1101001 1110011 1110011 1110100 1110010 1101001 1101110 1100111 1100001 1101110 1100100 1100101 1101110 1100011 1101111 1100100 1100101 1101001 1110100 1100010 1100001 1100011 1101011 </p>
<p><hr /></p>
<p><strong>EDIT</strong></p>
<p>Sigh .... anyway, just for the record:</p>
<p>I create this code-golf after reading google's first message on Twitter: <a href="http://twitter.com/google" rel="nofollow">http://twitter.com/google</a> </p>
<p>Yes, probably most of you will find that initial message pointless too, obscure or stupid, but I find it amusing.</p>
<p>Since I wanted to know what it mean, I get to code the simplest binary coder / decoder I could think of:</p>
<pre><code>public static String encode( String s ) {
char [] ca = s.toCharArray();
StringBuilder sb = new StringBuilder();
for( char c : ca ) {
sb.append( c == ' ' ? c : Integer.toString(c,2 ) );
sb.append( ' ' );
}
return sb.toString();
}
public static String decode( String b ) {
String [] p = b.split(" ");
StringBuilder sb = new StringBuilder();
for( String s : p ) {
sb.append( "".equals(s) ? " ": ( char ) Integer.parseInt( s , 2 ) );
}
return sb.toString();
}
</code></pre>
<p>Simple, yet verbose, which obviously led me to think: <em>I bet code-golf on SO will show tons of shorter/elegants solutions for this in perl/python/ruby/c# etc</em></p>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array0Dynamically creating keys in javascript associative array.Oscar Reyes2008-12-09T01:13:34Z2009-10-19T19:10:28Z
<p>Simple, quick, question.</p>
<p>How can I create dynamically create keys in javascript associative arrays? All the doc I've found so far is to update keys that are already created:</p>
<pre><code> arr['key'] = val;
</code></pre>
<p>I have a string like this " name = oscar " </p>
<p>And I want to endup with something like this:</p>
<pre><code>{ name: 'whatever' }
</code></pre>
<p>That is I split the string and get the first element, and I want to put that in a dict ( asoc arr ).</p>
<p><em>EDIT</em></p>
<p>This is what I have and currently doesn't work ( I guess :S ) </p>
<pre><code>var text = ' name = oscar '
var dict = new Array();
var keyValuePair = text.split(' = ');
dict[ keyValuePair[0] ] = 'whatever';
alert( dict ); // prints nothing.
</code></pre>
<p><em>EDIT 2</em></p>
<p>Aaarggg. I hate re-take a programming languages. I forget the most basic things. It turns out I was filling the dict correctly but didn't knew how to display the values :-B . ... .
Thank you all</p>
http://stackoverflow.com/questions/188828/sql-table-alias-scope1SQL - table alias scope.Oscar Reyes2008-10-09T19:30:41Z2009-10-14T20:23:30Z
<p>I've just learned ( yesterday ) to use "exists" instead of "in".</p>
<pre><code> BAD
select * from table where nameid in (
select nameid from othertable where otherdesc = 'SomeDesc' )
GOOD
select * from table t where exists (
select nameid from othertable o where t.nameid = o.nameid and otherdesc = 'SomeDesc' )
</code></pre>
<p>And I have some questions about this:</p>
<p>1) The explanation as I understood was: <em>"The reason why this is better is because only the matching values will be returned instead of building a massive list of possible results"</em>. Does that mean that while the first subquery might return 900 results the second will return only 1 ( yes or no )?</p>
<p>2) In the past I have had the RDBMS complainin: "only the first 1000 rows might be retrieved", this second approach would solve that problem?</p>
<p>3) What is the scope of the alias in the second subquery?... does the alias only lives in the parenthesis? </p>
<p>for example </p>
<pre><code> select * from table t where exists (
select nameid from othertable o where t.nameid = o.nameid and otherdesc = 'SomeDesc' )
AND
select nameid from othertable o where t.nameid = o.nameid and otherdesc = 'SomeOtherDesc' )
</code></pre>
<p>That is, if I use the same alias ( o for table othertable ) In the second "exist" will it present any problem with the first exists? or are they totally independent?</p>
<p>Is this something Oracle only related or it is valid for most RDBMS?</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/262896/what-do-you-think-of-rubymine3What do you think of "RubyMine".Oscar Reyes2008-11-04T18:45:48Z2009-10-07T06:50:07Z
<p><img src="http://www.jetbrains.com/img/newdesign/RubyMine.jpg" alt="alt text" /></p>
<p>Jetbrains has just released a <a href="http://www.jetbrains.com/ruby" rel="nofollow"><strong>"public preview"</strong></a> of a Ruby IDE called RubyMine</p>
<p>The roadmap follows:</p>
<p><strong>Nov 1</strong> - Public Preview Release</p>
<p><strong>Nov 10</strong> - EAP Opens</p>
<p><strong>Q1 2009</strong> - RubyMine 1.0 Release</p>
<p><strong>May 28 '09</strong> - RubyMine 1.1 Released </p>
<p><strong>Oct '09</strong> - RubyMine 2.0 Beta</p>
<p>I don't have much Ruby experience my self, but comming from the creators of IntelliJ IDEA I think this will be a terrific IDE.</p>
<p>Share your thoughts</p>
http://stackoverflow.com/questions/538886/java-lang-unsatisfiedlinkerror-in-linux0java.lang.UnsatisfiedLinkError in Linux.Oscar Reyes2009-02-11T21:26:32Z2009-09-28T14:11:34Z
<p>Hello. </p>
<p>I've managed to get into a linux machine to try the HotKey library suggested in <a href="http://stackoverflow.com/questions/79658/react-on-global-hotkey-in-a-java-program-on-windows-linux-mac/202272#202272">this answer.</a></p>
<p>I've compiled the sample code and now I run the program and I've got the following message:</p>
<pre>
[oracle@machine jxgrabkey-0.2.1_i386]$ java -classpath lib/JXGrabKey.jar:Example JXGrabKeyTest
Exception in thread "main" **java.lang.UnsatisfiedLinkError:** /home/oracle/javasample/jxgrabkey-0.2.1_i386/lib/libJXGrabKey.so: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by /home/oracle/javasample/jxgrabkey-0.2.1_i386/lib/libJXGrabKey.so)
at java.lang.Runtime._load(libgcj.so.7rh)
at java.lang.Runtime.load(libgcj.so.7rh)
at java.lang.System.load(libgcj.so.7rh)
at JXGrabKeyTest.main(JXGrabKeyTest.java:17)
</pre>
<p>I know how to handle this in Windows ( just by adding the DLL to the PATH env var ) but I'm not that sure about linux. </p>
<p>I've read something about LD_LIBRARY_PATH and some other env vars but I can make it work.</p>
<p>Any advice?</p>
<p><strong>EDIT</strong></p>
<p>After the support from mmyers to indentify the problem and reading <a href="http://www.linuxquestions.org/questions/linux-newbie-8/usrliblibstdc.so.6-version-glibcxx3.4.9-not-found-required-by-.example1-604625/" rel="nofollow">this thread</a> and <a href="http://ubuntuforums.org/showthread.php?t=666744" rel="nofollow">this other</a>. </p>
<p>I can tell:</p>
<p>My system is: Linux 2.6.18-53.el5</p>
<p>My GCC version(s) is ( are) : </p>
<p>gcc-c++-4.1.2-14.el5</p>
<p>gcc-gfortran-4.1.2-14.el5</p>
<p>libgcc-4.1.2-14.el5</p>
<p>gcc-4.1.2-14.el5</p>
<p>The problems is I require gcc 4.2.0</p>
<p>Aaand apparently there is no gcc 4.2.0 for my system. </p>
<p>I guess I would have to wait for it to come or the author recompile it in a previous version.</p>
<p>mmyers, thanks a lot for your help.</p>
http://stackoverflow.com/questions/137375/process-to-pass-from-problem-to-code-how-did-you-learn5Process to pass from problem to code. How did you learn?Oscar Reyes2008-09-26T02:13:52Z2009-09-26T02:01:30Z
<p>I'm teaching/helping a student to program.</p>
<p>I remember the following process always helped me when I started; It looks pretty intuitive and I wonder if someone else have had a similar approach.</p>
<ol>
<li>Read the problem and understand it ( of course ) .</li>
<li>Identify possible "functions" and variables.</li>
<li>Write how would I do it step by step ( algorithm ) </li>
<li>Translate it into code, if there is something you cannot do, create a function that does it for you and keep moving.</li>
</ol>
<p>With the time and practice I seem to have forgotten how hard it was to pass from problem description to a coding solution, but, by applying this method I managed to learn how to program.</p>
<p>So for a project description like: </p>
<blockquote>
<p><em>A system has to calculate the price of an Item based on the following rules ( a description of the rules... client, discounts, availability etc.. etc.etc. )</em></p>
</blockquote>
<p>I first step is to understand what the problem is.</p>
<p>Then identify the item, the rules the variables etc.</p>
<p>pseudo code something like:</p>
<pre><code>function getPrice( itemPrice, quantity , clientAge, hourOfDay ) : int
if( hourOfDay > 18 ) then
discount = 5%
if( quantity > 10 ) then
discount = 5%
if( clientAge > 60 or < 18 ) then
discount = 5%
return item_price - discounts...
end
</code></pre>
<p>And then pass it to the programming language..</p>
<pre><code>public class Problem1{
public int getPrice( int itemPrice, int quantity,hourOdDay ) {
int discount = 0;
if( hourOfDay > 10 ) {
// uh uh.. U don't know how to calculate percentage...
// create a function and move on.
discount += percentOf( 5, itemPriece );
.
.
.
you get the idea..
}
}
public int percentOf( int percent, int i ) {
// ....
}
}
</code></pre>
<p>Did you went on a similar approach?.. Did some one teach you a similar approach or did you discovered your self ( as I did :( ) </p>
http://stackoverflow.com/questions/539567/java-swing-layout-oddness-when-using-different-layout-managers/539629#5396291Answer by Oscar Reyes for java swing - layout oddness when using different layout managersOscar Reyes2009-02-12T01:25:38Z2009-09-17T22:32:48Z<blockquote>
<p><em>...any ideas why ?</em></p>
</blockquote>
<p>Yes. That happens because when you remove the layout manager ( by setting it to null ) you're saying to the computer "I'll to all the laying work"; while using any other LayoutManager will attempt to ... well layout your components according to your needs ( based on the properties of the objects to be lay-ed )</p>
<p>So, I think it would be much better to instead try to create a Border instance and set it into the JButton instead of trying to tweak all the objects around it. </p>
<p>I'll see if I can came up with something quickly. </p>
<p><strong>EDIT:</strong></p>
<p>Oops, it wasn't any quick, but here it is ( I messed up with a 1px line that was annoying me )
<img src="http://img22.imageshack.us/img22/8933/capturaby8.png" alt="alt text" />
</p>
<p>As I said before, setting the layout to null is not the best approach. Better is to create a custom border and set it to the button ( or set null border ).</p>
<p>Here's the code:</p>
<pre><code>import javax.swing.*;
import java.awt.*;
import javax.swing.border.*;
import java.awt.geom.*;
/**
* Sample usage of swing borders.
* @author <a href="http://stackoverflow.com/users/20654">Oscar Reyes</a>
*/
public class ButtonBorderSample {
public static void main( String [] args ) {
// Pretty standard swing code
JFrame frame = new JFrame();
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
JPanel panel = new JPanel( new FlowLayout(
FlowLayout.CENTER, 0, 5 ) );
panel.add( createButton( "F I R S T" ) );
panel.add( createButton( "S E C O N D" ) );
panel.add( createButton( "T H I R D " ) );
frame.add( panel , BorderLayout.NORTH );
frame.pack();
frame.setVisible( true );
}
/**
* Utility method to create a button.
* Creates the button, make it square, and add our custom border.
*/
private static JButton createButton( String s ) {
JButton b = new JButton( s );
b.setPreferredSize( new Dimension( 100, 100 ) );
b.setBorder( new NoGapBorder() );
return b;
}
}
/**
* This border implementation. It doesn't have insets and draws only a
* few parts of the border
* @author <a href="http://stackoverflow.com/users/20654">Oscar Reyes</a>
*/
class NoGapBorder implements Border {
private final Insets insets = new Insets( -1, -1 , -1, -1 );
/**
* Defines in Border interface.
* @return The default insets instace that specifies no gap at all.
*/
public Insets getBorderInsets(Component c ) {
return insets;
}
/**
* Defines in Border interface.
* @return false always, it is not relevant.
*/
public boolean isBorderOpaque() {
return false;
}
/**
* Paint the border for the button.
* This creates the difference between setting the border to null
* and using this class.
* It only draws a line in the top, a line in the bottom and a
* darker line
* in the left, to create the desired effect.
* A much more complicated strtegy could be used here.
*/
public void paintBorder(Component c, Graphics g,
int x, int y, int width, int height) {
Color oldColor = g.getColor();
int h = height;
int w = width;
g.translate(x, y);
// Color for top and bottom
g.setColor( c.getBackground().brighter() );
// draw top line
g.drawLine(1, 0, w-2, 0);
// draw bottom line
g.drawLine(0, h-1, w-1, h-1);
// change the color to make it look as a division
g.setColor( c.getBackground().darker() );
// draw the left line
g.drawLine(0, 0, 0, h-2);
// set the graphics back to its original state.
g.translate(-x, -y);
g.setColor(oldColor);
}
}
</code></pre>
<p><strong>EDIT</strong> </p>
<p>Dave Carpeneto wrote:</p>
<blockquote>
<p><strong>Oscar><em></strong>Unfortunately this stops working once you UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); , and this was also core to my needs (I'm looking to make this look as native as possible).</em></p>
</blockquote>
<p>Well, I was not trying to make your work, but to answer to your question, you thought your problems had to do with LayoutManagers and I said that was not the problem.</p>
<p>Perhaps I should've stopped there, but my "programmer" itch make me continue with the sample. : ) </p>
<p>I'm glad you've solve your problem at the end ;) </p>
http://stackoverflow.com/questions/318503/comments-for-comments-answers-for-answers-is-it-that-hard5Comments for comments, answers for answers, is it that hard?? [closed]Oscar Reyes2008-11-25T19:04:01Z2009-09-03T18:33:46Z
<p>I have came across to this situation a couple of times.</p>
<p>One guy ( or my self ) ask something like: </p>
<blockquote>
<p>How can I delete the whole filesystem in LISP</p>
</blockquote>
<p>Or</p>
<blockquote>
<p>Is there a way I can shoot myself in the foot using HTML </p>
</blockquote>
<p>And people answer back:</p>
<blockquote>
<p>What's wrong with you!!, You should not do that, you should do this or the other etc. and the ( we have to admit it ) stupid question gets down voted while the "comment" placed where the answer should go, gets upvoted.</p>
</blockquote>
<p>The comments are very useful indeed ( sometimes I have my head in another planet and ask stupid questions ) but they should go in the comment section, not in the answer section. </p>
<p>If the user in turn don't know the answer, please don't post an answer, post a comment.</p>
<p>When the question is in the form "Is it ok to shook my self in the foot or in the arm?" Well, that's a different story, here you are asking for the opinion, and then an acceptable answer is "Are you stup..." etc. etc but I don't think it is something we should do when the user is asking something very specific.</p>
<p>Now, what is your opinion??</p>
<p>BTW this is community wiki.</p>
http://stackoverflow.com/questions/430479/how-do-i-use-an-equivalent-to-c-reference-parameters-in-java/431152#4311520Answer by Oscar Reyes for How do I use an equivalent to C++ reference parameters in Java?Oscar Reyes2009-01-10T15:47:16Z2009-09-01T16:15:57Z<h2>Simulating reference with wrappers.</h2>
<p>One way you can have this behavior somehow simulated is create a generic wrapper. </p>
<pre><code>public class _<E> {
E ref;
public _( E e ){
ref = e;
}
public E g() { return ref; }
public void s( E e ){ this.ref = e; }
public String toString() {
return ref.toString();
}
}
</code></pre>
<p>I'm not too convinced about the value of this code, by I couldn't help it, I had to code it :) </p>
<p>So here it is.</p>
<p>The sample usage:</p>
<pre><code>public class Test {
public static void main ( String [] args ) {
_<Integer> iByRef = new _<Integer>( 1 );
addOne( iByRef );
System.out.println( iByRef ); // prints 2
_<String> sByRef = new _<String>( "Hola" );
reverse( sByRef );
System.out.println( sByRef ); // prints aloH
}
// Change the value of ref by adding 1
public static void addOne( _<Integer> ref ) {
int i = ref.g();
ref.s( ++i );
// or
//int i = ref.g();
//ref.s( i + 1 );
}
// Reverse the vale of a string.
public static void reverse( _<String> otherRef ) {
String v = otherRef.g();
String reversed = new StringBuilder( v ).reverse().toString();
otherRef.s( reversed );
}
}
</code></pre>
<p>The amusing thing here, is the generic wrapper class name is "_" which is a valid class identifier. So a declaration reads:</p>
<p>For an integer:</p>
<pre><code>_<Integer> iByRef = new _<Integer>( 1 );
</code></pre>
<p>For a String:</p>
<pre><code>_<String> sByRef = new _<String>( "Hola" );
</code></pre>
<p>For any other class</p>
<pre><code>_<Employee> employee = new _<Employee>( Employee.byId(123) );
</code></pre>
<p>The methods "s" and "g" stands for set and get :P </p>
http://stackoverflow.com/questions/125195/i-tried-to-learn-python-and-ruby-but-i-need-a-good-project-with-which-i-can-lear12I tried to learn Python and Ruby but [I need a good project with which I can learn them]Oscar Reyes2008-09-24T03:04:50Z2009-08-30T09:15:28Z
<p>I've been trying to learn Python and/or Ruby since I read about they characteristics, my problem is that I always learn more when I actually need to solve a problem, than working on merely theoretical problems.</p>
<p>I've tried to make some scripts for file management, and actually did some good scripts to copy files or parse HTML but at the end or I don't have the time or I get bored because I don't really need them in my daily job.</p>
<p>I have about 8 yrs. of Java and I think I'm very proficient in it. So when I really really need something I end up doing in Java (for instance start with a directory and walk through the file hierarchy and read o bunch of jar files in to find out where a particular class is, when I got the <code>ClassNotFoundexception</code>). I tried both Python and Ruby at the beginning but since I do not know the API for reading zip files I ended up by doing in Java.</p>
<p>Same thing happened to me when I tried to learn some java specific technology , like ORM, EJB, Java Server Faces ( which I still don't know ) or Spring ( which I don't know neither ) . I only learned the first two until I worked on a project that needed them. </p>
<p>I think that going through a tutorial, reading a book and that kind of stuff bores me. </p>
<p>Do you have any suggestions to actually learn any of these two beautiful languages, other than change my job and start from zero as junior-- programmer? :P </p>
<p>Thanks and regards. </p>
http://stackoverflow.com/questions/597630/understanding-javascript-resource1Understanding JavaScript - ResourceOscar Reyes2009-02-28T06:25:22Z2009-08-28T02:19:13Z
<p>Using the tiny Diggit/Blog feature of StackOverflow described <a href="http://stackoverflow.com/about">here</a>:</p>
<p></p>
<p>I would like to post the following Google tech talk video I have just saw and that I found quite interesting.</p>
<p>I have always had problems understanding javascript "nature".</p>
<p>Here, the <a href="http://www.youtube.com/watch?v=hQVTIJBZook" rel="nofollow">JavaScript good parts</a> are described by Douglas Crockford</p>
<p>I hope you find this link useful. </p>
<p>Now the question part: </p>
<p>What are your complaints about javascript?
Do you use an IDE for javascript editting?
Do you think this video helps to understand the "good parts"?</p>
http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/588770#5887706Answer by Oscar Reyes for What's your first program that you were proud of?Oscar Reyes2009-02-26T01:43:07Z2009-08-20T00:25:55Z<h2>Humane chmod</h2>
<p>The first program I code that I was proud of was a shell replacement/complement for <strong>chmod</strong> command in unix. </p>
<p>I think (no, I'm sure, It must have) been written in sh.</p>
<p>We were learning C in second semester and we all were troubled with the new environment: UNIX (until that day I though DOS and Operating System were interchangeably words OMG). I must have been 19 years old. </p>
<p>It was quite challenging to edit code and make it work there.</p>
<p>After several frustrating minutes one manages to edit and compile hello world:</p>
<pre><code>$ vi hello.c
~ #include<stdio.h>
~
~ void main()
~ {
~
~ printf("Hello\n");
~
~ }
~
:wq
$ cc hello.c
$ a.out
$ Hello
</code></pre>
<p>Uff quite an accomplishment!! Formating was a bonus!!</p>
<p>Well next thing you wanted to make your "golden" hello.c read only for you don't want to screw it by mistake and then make it editable again, you were faced to deal with.... </p>
<pre><code>chmod!!!
$ chmod 777 Hello.c ( or was it 755? 153 rwx??? aaarg!!! )
</code></pre>
<p>Everyone <strong>hate it</strong>!!!</p>
<p>So I came up with something that would accept the file permissions as parameter like this</p>
<pre><code>chmod rwxr--r-- Hello.c
</code></pre>
<p>And then</p>
<pre><code>chmod --------- Hello.c
</code></pre>
<p>Or </p>
<pre><code>chmod r-xr-x-r-- Hello.c
</code></pre>
<p>Whatever you wanted! ( well almost , later I learn there was some other file permission ) ) But the point was that you write it exactly the way you see it in <strong>ls -l</strong>. Plus if it couldn't handle the input it forwarded to /bin/chmod :P </p>
<p>Micro celebrity!!, the script was very popular in my class and was distributed all over the place. </p>
<p>A few weeks later someone discover "man" and not only discover it but really put attention to it and discovered that </p>
<pre><code>chmod u+w Hello.c
</code></pre>
<p>and </p>
<pre><code>chmod u-w Hello.c
</code></pre>
<p>did the job already, and that was the end of my script. </p>
<p>Well. Then I really got hooked into programming and a new world opened in front my eyes!!!</p>
http://stackoverflow.com/questions/226963/autocomplete-algorithms-papers-strategies-etc2autocomplete algorithms, papers, strategies, etc. Oscar Reyes2008-10-22T18:20:38Z2009-08-05T18:16:22Z
<p>Hello, I'm wondering if anyone has good resources to read or code to experiment for "autcomplete" </p>
<p>I would like to know what's the theory behind autocompletion, where to start what are the commonn mistakes etc. </p>
<p>I found fascinating the way products like Enso, Launchy, Google chrome and even tcsh perform their auto complete, I started my self just for curiosity some sample code and I got to the conclusion this must be a field widely explored before.</p>
<p>I would appreciate if someone shares any good technical resource on how to implement this.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/621117/how-do-i-fix-this-java-generics-wildcard-error2How do I fix this Java generics wildcard error?Oscar Reyes2009-03-07T01:35:15Z2009-08-04T18:50:12Z
<p>In this <a href="http://stackoverflow.com/questions/620934/wildcards-and-generics-error">question</a>, TofuBeer was having problems creating a genericized <code>IterableEnumeration</code>.</p>
<p>The answer came from jcrossley3 pointing to this link <a href="http://www.javaspecialists.eu/archive/Issue107.html" rel="nofollow">http://www.javaspecialists.eu/archive/Issue107.html</a> which pretty much solved the problem. </p>
<p>There is still one thing I don't get. The real problem, as effectively pointed out by erickson, was that:</p>
<blockquote>
<p><em>You cannot specify a wildcard when constructing a parameterized type</em></p>
</blockquote>
<p>But removing the wildcard in the declaration didn't work either:</p>
<pre><code>final IterableEnumeration<ZipEntry> iteratable
= new IterableEnumeration<ZipEntry>(zipFile.entries());
</code></pre>
<p>Results in the following error: </p>
<pre><code>Main.java:19: cannot find symbol
symbol : constructor IterableEnumeration(java.util.Enumeration<capture#469 of ? extends java.util.zip.ZipEntry>)
location: class IterableEnumeration<java.util.zip.ZipEntry>
final IterableEnumeration<ZipEntry> iteratable = new IterableEnumeration<ZipEntry>( zipFile.entries());
^
1 error
</code></pre>
<p>But the samples in the JavaSpecialist do work:</p>
<pre><code> IterableEnumeration<String> ie =
new IterableEnumeration<String>(sv.elements());
</code></pre>
<p>The only difference I can spot is that in the JavaSpecialists blog, the <code>Enumeration</code> comes from a <code>Vector</code> whose signature is: </p>
<pre><code>public Enumeration<E> elements()
</code></pre>
<p>while the one that fails comes from <code>ZipFile</code> whose signature is:</p>
<pre><code>public Enumeration<? extends ZipEntry> entries()
</code></pre>
<p>Finally, all of this is absorbed by the for-each construct and the static make method suggested in the link</p>
<pre><code>for(final ZipEntry entry : IterableEnumeration.make( zipFile.entries() )) {
if(!(entry.isDirectory())) {
names.add(entry.getName());
}
}
</code></pre>
<p>But!! the point in that newsletter was not to solve this problem, but to avoid the need to specify a generic type, just because the syntax looks ugly!!</p>
<p>So.. my questions is:</p>
<h1>What is happening?</h1>
<p>Why doesn't creating an instance of <code>IterableEnumeration</code> work when the parameter is an <code>Enumeration</code> whose type is <code><? extends SomeClass></code> ? And why does the make for-each construct swallow the problem?!!!</p>
<p>Why does this work:</p>
<pre><code>for(final ZipEntry entry : IterableEnumeration.make( zipFile.entries() )) {
</code></pre>
<p>but this not work?</p>
<pre><code>final IterableEnumeration<ZipEntry> iteratable
= IterableEnumeration.make( zipFile.entries() );
</code></pre>
<p>Below is a (slightly) modified version of TofuBeer's original code:</p>
<pre><code>import java.util.Enumeration;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.Vector;
public class Main {
private ZipFile zipFile;
public Set<String> entries() {
final Vector<ZipEntry> vector = new Vector<ZipEntry>();
// why this works.
//final IterableEnumeration<ZipEntry> iteratable = new IterableEnumeration<ZipEntry>( vector.elements() );
// but this do not.
//final IterableEnumeration<ZipEntry> iteratable = new IterableEnumeration<ZipEntry>( zipFile.entries() );
// nor this
final IterableEnumeration<ZipEntry> iteratable = IterableEnumeration.make( zipFile.entries() );
// And what's with the for-each that doesn't care about
http://stackoverflow.com/questions/227928/whats-win32con-module-in-python-where-can-i-find-it4What's win32con module in python? Where can I find it? Oscar Reyes2008-10-22T23:38:30Z2009-07-14T23:02:45Z
<p>I'm building an open source project that uses python and c++ in Windows.
I came to the following error message:</p>
<pre><code> ImportError: No module named win32con
</code></pre>
<p>The same happened in a "prebuilt" code that it's working ( except in my computer :P ) </p>
<p>I think this is kind of "popular" module in python because I've saw several messages in other forums but none that could help me.</p>
<p>I have Python2.6, should I have that module already installed?
Is that something of VC++?</p>
<p>Thank you for the help.</p>
<p>I got this url <a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">http://sourceforge.net/projects/pywin32/</a> but I'm not sure what to do with the executable :S</p>
http://stackoverflow.com/questions/334518/java-strings-string-s-new-stringsilly/336291#3362911Answer by Oscar Reyes for Java Strings: "String s = new String("silly");"Oscar Reyes2008-12-03T05:24:46Z2009-07-14T20:57:11Z<blockquote>
<p><em>- How do i make CaseInsensitiveString behave like String so the above statement is ok (with and w/out extending String)? What is it about String that makes it ok to just be able to pass it a literal like that? From my understanding there is no "copy constructor" concept in Java right?</em></p>
</blockquote>
<p>Enough has been said from the first point. "Polish" is an string literal and cannot be assigned to the CaseInsentiviveString class.</p>
<p>Now about the <strong>second point</strong></p>
<p>Although you can't create new literals, you can follow the first item of that book for a "similar" approach so the following statements are true:</p>
<pre><code> // Lets test the insensitiveness
CaseInsensitiveString cis5 = CaseInsensitiveString.valueOf("sOmEtHiNg");
CaseInsensitiveString cis6 = CaseInsensitiveString.valueOf("SoMeThInG");
assert cis5 == cis6;
assert cis5.equals(cis6);
</code></pre>
<p>Here's the code.</p>
<pre><code>C:\oreyes\samples\java\insensitive>type CaseInsensitiveString.java
import java.util.Map;
import java.util.HashMap;
public final class CaseInsensitiveString {
private static final Map<String,CaseInsensitiveString> innerPool
= new HashMap<String,CaseInsensitiveString>();
private final String s;
// Effective Java Item 1: Consider providing static factory methods instead of constructors
public static CaseInsensitiveString valueOf( String s ) {
if ( s == null ) {
return null;
}
String value = s.toLowerCase();
if ( !CaseInsensitiveString.innerPool.containsKey( value ) ) {
CaseInsensitiveString.innerPool.put( value , new CaseInsensitiveString( value ) );
}
return CaseInsensitiveString.innerPool.get( value );
}
// Class constructor: This creates a new instance each time it is invoked.
public CaseInsensitiveString(String s){
if (s == null) {
throw new NullPointerException();
}
this.s = s.toLowerCase();
}
public boolean equals( Object other ) {
if ( other instanceof CaseInsensitiveString ) {
CaseInsensitiveString otherInstance = ( CaseInsensitiveString ) other;
return this.s.equals( otherInstance.s );
}
return false;
}
public int hashCode(){
return this.s.hashCode();
}
</code></pre>
<p>// Test the class using the "assert" keyword</p>
<pre><code> public static void main( String [] args ) {
// Creating two different objects as in new String("Polish") == new String("Polish") is false
CaseInsensitiveString cis1 = new CaseInsensitiveString("Polish");
CaseInsensitiveString cis2 = new CaseInsensitiveString("Polish");
// references cis1 and cis2 points to differents objects.
// so the following is true
assert cis1 != cis2; // Yes they're different
assert cis1.equals(cis2); // Yes they're equals thanks to the equals method
// Now let's try the valueOf idiom
CaseInsensitiveString cis3 = CaseInsensitiveString.valueOf("Polish");
CaseInsensitiveString cis4 = CaseInsensitiveString.valueOf("Polish");
// References cis3 and cis4 points to same object.
// so the following is true
assert cis3 == cis4; // Yes they point to the same object
assert cis3.equals(cis4); // and still equals.
// Lets test the insensitiveness
CaseInsensitiveString cis5 = CaseInsensitiveString.valueOf("sOmEtHiNg");
CaseInsensitiveString cis6 = CaseInsensitiveString.valueOf("SoMeThInG");
assert cis5 == cis6;
assert cis5.equals(cis6);
// Futhermore
CaseInsensitiveString cis7 = CaseInsensitiveString.valueOf("SomethinG");
CaseInsensitiveString cis8 = CaseInsensitiveString.valueOf("someThing");
assert cis8 == cis5 && cis7 == cis6;
assert cis7.equals(cis5) && cis6.equals(cis8);
}
}
C:\oreyes\samples\java\insensitive>javac CaseInsensitiveString.java
C:\oreyes\samples\java\insensitive>java -ea CaseInsensitiveString
C:\oreyes\samples\java\insensitive>
</code></pre>
<p>That is, create an internal pool of CaseInsensitiveString objects, and return the corrensponding instance from there.</p>
<p>This way the "==" operator returns <strong>true</strong> for two objects references representing the <strong>same value</strong>. </p>
<p>This is useful when similar objects are used very frequently and creating cost is expensive.</p>
<p>The string class documentation states that the class uses <a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html#intern()" rel="nofollow">an internal pool</a></p>
<p>The class is not complete, some interesting issues arises when we try to walk the contents of the object at implementing the CharSequence interface, but this code is good enough to show how that item in the Book could be applied. </p>
<p>It is important to notice that by using the <em>internalPool</em> object, the references are not released and thus not garbage collectible, and that may become an issue if a lot of objects are created. </p>
<p>It works for the String class because it is used intensively and the pool is constituted of "interned" object only.</p>
<p>It works well for the Boolean class too, because there are only two possible values.</p>
<p>And finally that's also the reason why <em><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Integer.html#valueOf%28int%29" rel="nofollow">valueOf(int)</a></em> in class Integer is limited to -128 to 127 int values.</p>
http://stackoverflow.com/questions/322440/api-to-determine-cell-carrier/322530#3225300Answer by Oscar Reyes for API to determine cell carrier?Oscar Reyes2008-11-26T23:31:23Z2009-06-26T02:12:06Z<p><a href="http://forums.wirelessadvisor.com/general-wireless-discussion/5974-how-can-you-determine-carrier-phone.html" rel="nofollow">http://forums.wirelessadvisor.com/general-wireless-discussion/5974-how-can-you-determine-carrier-phone.html</a></p>
http://stackoverflow.com/questions/236737/language-showdown-how-do-you-make-a-system-call-that-returns-the-stdout-output-a/373223#373223-1Answer by Oscar Reyes for Language showdown: how do you make a system call that returns the stdout output as a string?Oscar Reyes2008-12-16T23:57:57Z2009-06-25T16:42:58Z<p>Granted, it is not the smaller ( from all the languages available ) but it shouldn't be that verbose.</p>
<p>This version is dirty. Exceptions should be handled, reading may be improved. This is just to show how a java version could start.</p>
<pre><code>Process p = Runtime.getRuntime().exec( "cmd /c " + command );
InputStream i = p.getInputStream();
StringBuilder sb = new StringBuilder();
for( int c = 0 ; ( c = i.read() ) > -1 ; ) {
sb.append( ( char ) c );
}
</code></pre>
<p>Complete program below. </p>
<pre><code>import java.io.*;
public class Test {
public static void main ( String [] args ) throws IOException {
String result = execute( args[0] );
System.out.println( result );
}
private static String execute( String command ) throws IOException {
Process p = Runtime.getRuntime().exec( "cmd /c " + command );
InputStream i = p.getInputStream();
StringBuilder sb = new StringBuilder();
for( int c = 0 ; ( c = i.read() ) > -1 ; ) {
sb.append( ( char ) c );
}
i.close();
return sb.toString();
}
}
</code></pre>
<p>Sample ouput ( using the type command ) </p>
<pre><code>C:\oreyes\samples\java\readinput>java Test "type hello.txt"
This is a sample file
with some
lines
</code></pre>
<p>Sample output ( dir ) </p>
<pre><code> C:\oreyes\samples\java\readinput>java Test "dir"
El volumen de la unidad C no tiene etiqueta.
El número de serie del volumen es:
Directorio de C:\oreyes\samples\java\readinput
12/16/2008 05:51 PM <DIR> .
12/16/2008 05:51 PM <DIR> ..
12/16/2008 05:50 PM 42 hello.txt
12/16/2008 05:38 PM 1,209 Test.class
12/16/2008 05:47 PM 682 Test.java
3 archivos 1,933 bytes
2 dirs 840 bytes libres
</code></pre>
<p>Try any</p>
<pre><code>java Test netstat
java Test tasklist
java Test "taskkill /pid 416"
</code></pre>
<p><strong>EDIT</strong></p>
<p>I must admit I'm not 100% sure this is the "best" way to do it. Feel free to post references and/or code to show how can it be improved or what's wrong with this.</p>
http://stackoverflow.com/questions/214122/what-is-the-value-of-bpm-business-process-management-is-it-worth-using-in-w6What is the value of BPM? (Business Process management) Is it worth using? In which cases?Oscar Reyes2008-10-17T23:01:08Z2009-06-08T21:28:43Z
<p>And I'm not meaning Bits Per Minute, but Business Process Management. </p>
<p>At first though BPM was overestimated, because the technology is somehow easy to address, but I've learned the value of BPM suites is in involving the non-technical, the business experts into the software design. </p>
<p>I know, the user is always with us during analysis, but the artifacts we use are always very unfamiliar to them. No matter how friendly the UML diagram looks like, or how many Agile iterations we go into, there is always a gap between the final user and the final developer ( usually covered by the user manager and the IT manager :-S ) </p>
<p>How do you ( as software developers ) see BPM? Does it looks interesting? Would you consider to learn one of them? Do your think in 5 yrs it will be dead? </p>
<p>I know BPM is not silver bullet at all, but unless you have a very smart customer who knows how to express their requirements for us to get it right, the analysis and requirements will always be the area where the projects will fail.</p>
http://stackoverflow.com/questions/307291/how-does-the-google-did-you-mean-algorithm-work/307344#30734453Answer by Oscar Reyes for How does the Google "Did you mean?" Algorithm work?Oscar Reyes2008-11-20T23:58:45Z2009-06-08T20:22:27Z<p>Here's the explanation directly from the source ( almost ) </p>
<h2><strong><a href="http://www.youtube.com/watch?v=syKY8CrHkck#t=22m03s" rel="nofollow">Search 101!</a></strong></h2>
<p>at min 22:03</p>
<p>Worth watching!</p>
<p>Basically and according to Douglas Merrill former CTO of Google it is like this:</p>
<p>1) You write a ( misspelled ) word in google </p>
<p>2) You don't find what you wanted ( don't click on any results )</p>
<p>3) You realize you misspelled the word so you rewrite the word in the search box.</p>
<p>4) You find what you want ( you click in the first links ) </p>
<p>This pattern multiplied millions of times, shows what are the most common misspells and what are the most "common" corrections. </p>
<p>This way Google can almost instantaneously, offer spell correction in every language.</p>
<p>Also this means if overnight everyone start to spell night as "nigth" google would suggest that word instead. </p>
<p><strong>EDIT</strong></p>
<p>@ThomarRutter: Douglas describe it as "statistical machine learning". </p>
<p>They know who correct the query, because they know which query comes from which user ( using cookies ) </p>
<p>If the users perform a query, and only 10% of the users click on a result and 90% goes back and type another query ( with the corrected word ) and this time that 90% clicks on a result, then they know they have found a correction. </p>
<p>They can also know if those are "related" queries of two different, because they have information of all the links they show. </p>
<p>Furthermore, they are now including the context into the spell check, so they can even suggest different word depending on the context. </p>
<p>See this <a href="http://www.youtube.com/watch?v=v%5FUyVmITiYQ#t=44m06s" rel="nofollow">demo of google wave</a> ( @ 44m 06s ) that shows how the context is taken into account to automatically correct the spelling.</p>
<p><a href="http://www.youtube.com/watch?v=Sx3Fpw0XCXk" rel="nofollow">Here</a> it is explained how that natural language processing works.</p>
<p>And finally here is an awesome demo of what can be done adding automatic <a href="http://www.youtube.com/watch?v=v%5FUyVmITiYQ#t=1h12m47s" rel="nofollow">machine translation</a> ( @ 1h 12m 47s ) to the mix. </p>
<p><sub>
I've added anchors of minute and seconds to the videos to skip directly to the content, if they don't work, try reloading the page or scrolling by hand to the mark.
</sub></p>
http://stackoverflow.com/questions/281855/what-is-the-rationale-of-swingworker6What is the rationale of SwingWorker?Oscar Reyes2008-11-11T19:10:21Z2009-06-03T15:30:41Z
<p>For what I can read, it is used to dispatch a new thread in a swing app to perform some "background" work, but what's the benefit from using this rather than a "normal" thread?</p>
<p>Is not the same using a new Thread and when it finish invoke some GUI method using SwingUtilities.invokeLater?... </p>
<p>What am I missing here?</p>
<p><a href="http://en.wikipedia.org/wiki/SwingWorker" rel="nofollow">http://en.wikipedia.org/wiki/SwingWorker</a></p>
<p><a href="http://java.sun.com/products/jfc/tsc/articles/threads/threads2.html" rel="nofollow">http://java.sun.com/products/jfc/tsc/articles/threads/threads2.html</a></p>
http://stackoverflow.com/questions/325504/well-written-java-open-source-projects-for-learning/326633#3266330Answer by Oscar Reyes for well written java open source projects (for learning)?Oscar Reyes2008-11-28T20:41:42Z2009-05-12T17:54:11Z<p><a href="http://www.mucommander.com/" rel="nofollow">muCommander</a> Since it is a desktop manager, the domain it pretty intuitive ( we all know file manager pretty well ) , you can add code and see the results immediately because you already know what to expect.</p>
http://stackoverflow.com/questions/588056/interface-default-declaration-usage-in-java1@interface default declaration usage in JavaOscar Reyes2009-02-25T21:48:44Z2009-04-29T21:57:44Z
<p>I have just discovered this feature. </p>
<p>Declaring an interface using the "@interface" syntax allows you to put a default value.</p>
<pre><code>public @interface HelloWorld {
public String sayHello() default "hello world";
}
</code></pre>
<p>This is something new for me. How is that default value suppose to be used.</p>
<p>I cannot find references to that, because the www is full of java interface documents prior to "@" addition in Java 1.5 ( was it on .5 or in .4? ) </p>
<p>Thanks for the answers in advance. </p>
<p><hr></p>
<p><strong>EDIT</strong></p>
<p>Thanks for the answers <sub>( I was somehow close to "annotation", for I use the tag already ) :P </sub></p>
<p>I knew I should've read that document years ago!!!... let's see... </p>
<blockquote>
<p><em>Many APIs require a fair amount of boilerplate code. For....</em></p>
</blockquote>
<p>... and oh, look, there's a pig flying round a rhubarb tree! </p>
<p><a href="http://stackoverflow.com/questions/226963/autocomplete-algorithms-papers-strategies-etc">:)</a> </p>
http://stackoverflow.com/questions/532521/which-data-structure-uses-more-memory/532569#53256912Answer by Oscar Reyes for Which data structure uses more memory? Oscar Reyes2009-02-10T14:35:00Z2009-04-28T23:05:00Z<blockquote>
<p><em>...which one to use for avoiding the memory leakage</em></p>
</blockquote>
<p>The answer is <strong>all</strong> of them and <strong>none</strong> of them.</p>
<p>Memory leakage is not related to the data structure, but the way you use them.</p>
<p>The amount of memory used by each one is irrelevant when you aim to avoid "memory leakage".</p>
<p>The best thing you can do is: When you detect an object <strong>won't be used any longer</strong> in the application, you <strong>must</strong> remove it from the collection ( not only those you've listed, but any other you might use; List, Map, Set or even arrays ). </p>
<p>That way the garbage collector will be able to release the memory used by that object.</p>
<p>You can take a look at this article <a href="http://chaoticjava.com/posts/how-does-garbage-collection-work/" rel="nofollow">"How does garbage collector works"</a> for further explanation on how Java release memory from the objects it uses.</p>
<p><strong>Edit:</strong></p>
<p>There are others data structures in Java which help for the references management such as <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/WeakHashMap.html" rel="nofollow">WeakHashMap</a>, but this may be considered as "advanced topics".</p>
http://stackoverflow.com/questions/213757/why-do-people-use-java/214053#2140535Answer by Oscar Reyes for Why do people use Java?Oscar Reyes2008-10-17T22:29:53Z2009-04-27T12:46:58Z<p>Well I think it was a language that allows enterprise applications be developed very easily. </p>
<p>Back in 1997 - 2000 only UNIX servers were very very reliable and at the same time flexible. We had mainframes but the programming language was hard to upgrade. And windows OS well... everybody knows what was the state of Windows 10 yrs ago in the server ( today they are very competitive ) </p>
<p>When a solution ( perhaps C++ or Objective-C ) was created, it was first programmed on a PC and then recompiled on the server for the specific architecture ( AIX, Solaris , etc ) That process was very very risky, since the build may fail, or a lot of flags has to be configured in the build file ( make ) </p>
<p>With Java all this change, now the binaries built on the CPU may run <strong>unchanged!!</strong> And this is true. No recompilation, no nothing. You just upload the jar ( or later the war or ear etc ) A lot of pc's may be used for the developers and a 10 CPU's server monster with up to ... ( heard this ) 8 gb or RAM ( he he ) was used to production. </p>
<p>Java was popularized for applets, that's correct, but never did it well. The fact that everyone created it's own JVM implementation was the main reason of the failure, thus "Write once debug everywhere" raised and applets never came very far as was initially though. But he conquered the server-side.</p>
<p>Of course, .NET appear years later, with the CLI and a new language C# came into play, but it was only after Sun sue MS that they came to this great idea. Nowadays .NET is a very good platform to enterprise systems, and Windows Server is as reliable as most UNIX servers, but IMHO C# & .NET is like a MS evolution to the Java environment it self.</p>
<p>Everything you said of java may sound strange nowadays, when languages like ruby, python, C# and other are much more flexible. But at those days, java was like a oasis for C++ developers, very dynamic, very easy to work with and with to promise ( now concreted ) of run very fast, that was the reason types as , int, char, double etc where primitives and not objects.</p>
<p>Years have passed and java is in very good shape. Its slowness ( mainly attributed to client side applications ) is not longer a problem ( but the bad reputation still exists). New technologies arose , and now a 10 CPU's machines with 8 gb or RAM is very very reachable for any of us ( Actually kids game consoles have this much power ) But java was already popular and I think this will be true for at least another 10 yrs. That doesn't mean .net platform won't be better in the same time.</p>
http://stackoverflow.com/questions/297938/always-on-top-windows-with-java/297948#297948Comment by Oscar Reyes on "Always on Top" Windows with JavaOscar Reyes2009-10-15T00:07:33Z2009-10-15T00:07:33ZGuess what. Now it does!! :) It brings you here! <a href="http://www.google.com/search?&q=java+application+always+on+top" rel="nofollow">google.com/search?&q=java+application+always+…</a>http://stackoverflow.com/questions/538886/java-lang-unsatisfiedlinkerror-in-linux/1487251#1487251Comment by Oscar Reyes on java.lang.UnsatisfiedLinkError in Linux.Oscar Reyes2009-09-29T16:28:31Z2009-09-29T16:28:31ZIt works just great with Ubuntu 9.0.4. The problem was I was using an old version of linux http://stackoverflow.com/questions/1460002/how-to-pass-a-session-between-tomcat-and-phpComment by Oscar Reyes on How to pass a session between tomcat and php.Oscar Reyes2009-09-22T14:51:18Z2009-09-22T14:51:18Z:-o Just out of curiosity, who ask you for this? Your project leader? Or your manager? :) http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/568142#568142Comment by Oscar Reyes on Worst UI You've Ever UsedOscar Reyes2009-09-22T04:18:52Z2009-09-22T04:18:52Z@Jason: Yeap, probably that's a bit unfair, I accept it. But it is just to make a point. It is a good IDE yes, but the user interface get's in the way too many times!!...http://stackoverflow.com/questions/1445283/if-you-could-be-a-c-keyword-which-would-you-beComment by Oscar Reyes on If you could be a C# keyword which would you be?Oscar Reyes2009-09-18T18:03:14Z2009-09-18T18:03:14ZFunny nobody feels "super" today http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238205#238205Comment by Oscar Reyes on What is the best UI you've ever used?Oscar Reyes2009-09-08T17:57:24Z2009-09-08T17:57:24ZIt seems to be good, but is not. If you are doing something else than simply launching ( let's say selecting a path to a file ) and for some reason you have a typo, forget it! you have to start all over again. I really hate that. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/696449#696449Comment by Oscar Reyes on Worst UI You've Ever UsedOscar Reyes2009-09-08T17:50:42Z2009-09-08T17:50:42ZDon't mess up with vim, here's an stone for you.. !.. but wait, I must admit it. It took me like forever to learn the basic commands. Since I really needed to learn them I spend a week or so practicing. Since then I have never forgotten those commands ( or what is worst , learned new ones!!! ) I don't even think about them, they just flow out of my fingers. I can split the window with the content of a buffer and switch the position of the split and even swap the buffers, but I just don't know how to do it, nor what are the keyboard combinations ( except for split with is :sp )http://stackoverflow.com/questions/272660/do-i-have-to-learn-objective-c-for-professional-mac-development/272683#272683Comment by Oscar Reyes on Do I have to learn Objective-C for professional Mac Development?Oscar Reyes2009-09-07T18:23:10Z2009-09-07T18:23:10ZAs for the square brackets, this might be helpful: <a href="http://stackoverflow.com/questions/142476/do-i-have-a-shot-at-learning-objective-c/142636#142636" rel="nofollow" title="do i have a shot at learning objective c">stackoverflow.com/questions/142476/…</a> http://stackoverflow.com/questions/1301583/programatically-closing-currently-displayed-java-swing-jdialog-boxComment by Oscar Reyes on Programatically closing currently displayed Java Swing JDialog boxOscar Reyes2009-08-19T18:07:02Z2009-08-19T18:07:02ZDo you have the source code? Can you spot where the dialog is being displayed? If so, prior to display the second dialog invoke the "dispose" method on the first. Just like "nos" have answeredhttp://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/568142#568142Comment by Oscar Reyes on Worst UI You've Ever UsedOscar Reyes2009-08-18T18:56:03Z2009-08-18T18:56:03Z@amischiefr: Wow!! Did you take your breakfast today?!!! .. Relaax, be happy. Take your breakfast every day. Sleep well. Now, once you're relaxed, READ again the post. Read the picture caption. Eclipse UI is very counterintuitive, the fact all windows are treated the same doesn't help. For instance, editing windows IS the most important while coding. Output windows IS the most important when running the code. Eclipse doesn't care about that. You always have to intervene to make the UI flow. If you think calling me retard makes the GUI any better well... I think there's a perception problem.http://stackoverflow.com/questions/1279439/your-views-about-the-gap-between-naming-convention-of-field-names-in-java-bean-an/1279706#1279706Comment by Oscar Reyes on Your views about the gap between naming convention of field names in Java bean and databaseOscar Reyes2009-08-14T19:28:52Z2009-08-14T19:28:52ZThe sad face of this is when mapping tools interpret your column name USERFIRSTNAME as setUserfirstname() getUserfirstname() I HATE IT!http://stackoverflow.com/questions/394662/best-way-to-use-svn-for-web-developmentComment by Oscar Reyes on Best way to use svn for web developmentOscar Reyes2009-06-26T02:05:42Z2009-06-26T02:05:42ZAgain Rich B? :-/ http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314589#314589Comment by Oscar Reyes on What are five things you hate about your favorite language?Oscar Reyes2009-06-25T20:24:27Z2009-06-25T20:24:27Z@both: The NPE is shown in the first line of the stack trance. It contains ( most of the time ) class,java file name, and line number like: "at your.faulty.code.Instance( Intance.java:1234 )" Then you just open that file, go to that line and there it is, a variable which has nothing assigned to it. http://stackoverflow.com/questions/1045462/next-generation-poker-siteComment by Oscar Reyes on next generation poker siteOscar Reyes2009-06-25T18:29:34Z2009-06-25T18:29:34Z@frank: If your question is genuine try re-formulating it. It is too broad and generic.http://stackoverflow.com/questions/236737/language-showdown-how-do-you-make-a-system-call-that-returns-the-stdout-output-a/373223#373223Comment by Oscar Reyes on Language showdown: how do you make a system call that returns the stdout output as a string?Oscar Reyes2009-06-25T16:40:33Z2009-06-25T16:40:33Z@hlovdal: The posted article dates 2000, when Java 1.2 was the main installation and Java 1.3 had a few months released ( and everyone complain java being very slow - and it was indeed - ) 9 yrs have passed, I hope that situation doesn't show up anymore. Still your point is valid, I can't guarantee this is 100% safe. I guess we should stress it for a while :)