User - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T01:13:27Zhttp://stackoverflow.com/feeds/user/54579http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/883060/how-can-i-determine-if-a-date-is-between-two-dates-in-java/883154#8831541Answer by nickolai for How can I determine if a date is between two dates in Java?nickolaihttp://stackoverflow.com/users/545792009-05-19T14:33:31Z2009-05-19T14:33:31Z<p>you can use getTime() and compare the returned long UTC values.</p>
<p>EDIT if you are sure you'll not have to deal with dates before 1970, not sure how it will behave in that case.</p>
http://stackoverflow.com/questions/878573/java-multiline-string/878617#8786172Answer by nickolai for Java multiline stringnickolaihttp://stackoverflow.com/users/545792009-05-18T16:40:53Z2009-05-18T16:40:53Z<p>you can concatenate your appends in a separate method like</p>
<pre><code>public static String multilineString(String... lines){
StringBuilder sb = new StringBuilder();
for(String s : lines){
sb.append(s);
sb.append ('\n');
}
return sb.toStirng();
}
</code></pre>
<p>either way, prefer StringBuilder to the plus notation.</p>
http://stackoverflow.com/questions/878035/a-multithreading-question/878061#8780610Answer by nickolai for A Multithreading Question??nickolaihttp://stackoverflow.com/users/545792009-05-18T14:32:01Z2009-05-18T14:32:01Z<p>They can all execute it at the same time unless it is declared as synchronized,regardless of the fact that your class is a singleton IIRC.</p>
http://stackoverflow.com/questions/469159/an-htop-like-tool-to-display-disk-activity-in-linux4an htop-like tool to display disk activity in linuxnickolaihttp://stackoverflow.com/users/545792009-01-22T13:41:31Z2009-05-15T01:17:03Z
<p>I am looking for a linux command-line tool that would report the disk IO activity. Something similar to htop would be really cool.Has someone heard of something like that?</p>
<p>Thanks!</p>
<p>EDIT: for the vote down:about not being programming -related. I happen to need to check if my code is actually behaving as I expect which involves looking at the IO activity. Please accept my apologies if it is not related ENOUGH.</p>
http://stackoverflow.com/questions/859536/sorted-list-difference4Sorted list differencenickolaihttp://stackoverflow.com/users/545792009-05-13T18:19:52Z2009-05-14T09:24:48Z
<p>Hello.</p>
<p>I have the following problem.</p>
<p>I have a set of elements that I can sort by a certain algorithm A . The sorting is good, but very expensive.</p>
<p>There is also an algorithm B that can approximate the result of A. It is much faster, but the ordering will not be exactly the same.</p>
<p>Taking the output of A as a 'golden standard' I need to get a meaningful estimate of the error resulting of the use of B on the same data.</p>
<p>Could anyone please suggest any resource I could look at to solve my problem?
Thanks in advance!</p>
<p>EDIT :</p>
<p>As requested : adding an example to illustrate the case :
if the data are the first 10 letters of the alphabet, </p>
<p>A outputs : a,b,c,d,e,f,g,h,i,j</p>
<p>B outputs : a,b,d,c,e,g,h,f,j,i</p>
<p>What are the possible measures of the resulting error, that would allow me to tune the internal parameters of algorithm B to get result closer to the output of A?</p>
http://stackoverflow.com/questions/675342/group-by-question-in-postgresql1group-by question in postgresqlnickolaihttp://stackoverflow.com/users/545792009-03-23T21:38:26Z2009-03-25T01:07:57Z
<p>Say I have a table 'orders' created as:</p>
<pre><code>CREATE TABLE orders (id SERIAL,
customerID INTEGER,
timestamp BIGINT,
PRIMARY KEY(id));
</code></pre>
<p>Timestamp being the UNIX timestamp. Now i want to select the ids of the LATEST orders for every customer. As a view would be nice.</p>
<p>however the following statement</p>
<pre><code>CREATE VIEW lastOrders AS SELECT id,
customerID,
MAX(timestamp)
FROM orders
GROUP BY customerID;
</code></pre>
<p>Causes a postgre error:</p>
<blockquote>
<p>ERROR: column "orders.id" must appear in the GROUP BY
clause or be used in an aggregate function</p>
</blockquote>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/561107/rar-archives-with-java2RAR archives with javanickolaihttp://stackoverflow.com/users/545792009-02-18T13:50:39Z2009-02-18T13:58:56Z
<p>Hello!
Is there a good java API for manipulating RAR archive files someone could recommend? </p>
<p>Googling did not turn up anything overwhelmingly convincing...</p>
<p>Thanks alot!</p>
http://stackoverflow.com/questions/482058/whats-a-good-age-to-get-your-children-into-programming/482112#4821121Answer by nickolai for Whats a good age to get your children into programming?nickolaihttp://stackoverflow.com/users/545792009-01-27T02:09:15Z2009-01-27T02:09:15Z<p>Programming is a tool. If your kids are smart they can learn it at 10 as well as at 25 without any major difficulty. Your goal must be to get them smart, more than to get them to do the coding. If you manage to show them that they can do cool and useful stuff using programming, the sooner - the better. as said 5th grade is a good time to start hackin' around.</p>
<p>The main idea must still be to show them as much different paths as possible so that they can choose their own knowingly. Maybe he's better at theoretical physics than object oriented programming - or maybe he's an artist. </p>
<p>Do not push or influence them to follow your path, even if you feel proud that they want to "be like daddy". You cant imagine how many bad programmers this educational mistake will produce in the coming years.</p>
http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code/480826#4808261Answer by nickolai for Programmatically obtaining Big-O efficiency of codenickolaihttp://stackoverflow.com/users/545792009-01-26T18:19:20Z2009-01-26T19:21:22Z<p>You must also take care when running such benchmarks. Some algorithms will have a behavior heavily dependent on the input type. </p>
<p>Take Quicksort for example. It is a worst-case O(n²), but usually O(nlogn). For two inputs of the same size. </p>
<p>The traveling salesman is (I think, not sure) O(n²) (<em>EDIT: the correct value is 0(n!) for the brute force algotithm</em>) , but most algorithms get rather good approximated solutions much faster. </p>
<p>This means that the the benchmarking structure has to most of the time be adapted on an ad hoc basis. Imagine writing something generic for the two examples mentioned. It would be very complex, probably unusable, and likely will be giving incorrect results anyway.</p>
http://stackoverflow.com/questions/480640/what-is-the-best-way-to-sort-a-partially-ordered-list/480746#4807461Answer by nickolai for What is the best way to sort a partially ordered list?nickolaihttp://stackoverflow.com/users/545792009-01-26T18:02:56Z2009-01-26T18:02:56Z<p>Do several sorts. First sort according to the first rule, then according to the second one and so on. Should work, unless your rules contain contradictions. sure easy enough to implement.</p>
http://stackoverflow.com/questions/479565/how-do-you-define-a-class-of-constants-in-java/479582#4795823Answer by nickolai for How do you define a class of constants in Java?nickolaihttp://stackoverflow.com/users/545792009-01-26T12:06:51Z2009-01-26T12:06:51Z<p>Use a final class.
for simplicity you may then use a static import to reuse your values in another class</p>
<pre><code>public final class MyValues {
public static final String VALUE1 = "foo";
public static final String VALUE2 = "bar";
}
</code></pre>
<p>in another class :</p>
<pre><code>import static MyValues.*
//...
if(variable.equals(VALUE1)){
//...
}
</code></pre>
http://stackoverflow.com/questions/479523/java-swing-maximize-window/479540#4795403Answer by nickolai for Java: Swing --> Maximize windownickolaihttp://stackoverflow.com/users/545792009-01-26T11:54:03Z2009-01-26T11:54:03Z<p>If your using a JFrame, try this</p>
<pre><code>JFrame frame = new JFrame();
//...
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
</code></pre>
http://stackoverflow.com/questions/474483/how-to-exercise-and-feel-well-when-you-are-programming/474499#4744993Answer by nickolai for How to exercise and feel well when you are programmingnickolaihttp://stackoverflow.com/users/545792009-01-23T21:00:36Z2009-01-23T21:07:22Z<p>Walk whenever you can. get a mouse and a keyboard designed to reduce the pain standard versions may cause. Get out of the house on weekends. So what if its raining? Water just makes you wet. Go swimming, play football with friends. You cant have good health with a minute's exercise, whoever says so is a liar.MOVE!</p>
<p>EDIT: found a good example.
<a href="http://bc.tech.coop/blog/images/keyboard.jpg" rel="nofollow">http://bc.tech.coop/blog/images/keyboard.jpg</a> a guy in my office is using it. I don't know if it helps with wrist pain, but it sure looks so :)</p>
http://stackoverflow.com/questions/474451/java-int-array-iterating-and-finding-value/474470#4744702Answer by nickolai for Java int[][] array - iterating and finding valuenickolaihttp://stackoverflow.com/users/545792009-01-23T20:52:39Z2009-01-23T20:52:39Z<p>to iterate over the values use loops:</p>
<pre><code> int[][] matrix
//...
for(int row[] : matrix)
for(int cell : row){
//do something with cell
}
</code></pre>
<p>to access the coordinates based on the value you would need some sort of double hashmap (look a at java.util.HashMap) but i am aware of nothing that does so directly</p>
http://stackoverflow.com/questions/473661/problem-capturing-enter-key-with-getch-in-c-console-application/473678#4736780Answer by nickolai for Problem capturing Enter key with getch() in C console applicationnickolaihttp://stackoverflow.com/users/545792009-01-23T17:00:08Z2009-01-23T17:00:08Z<p>on some system the newline is "\r\n" carriage return (enter) is "\r" </p>
http://stackoverflow.com/questions/471313/do-i-always-have-to-think-about-performance/471390#4713900Answer by nickolai for Do I always have to think about performance?nickolaihttp://stackoverflow.com/users/545792009-01-23T00:11:16Z2009-01-23T00:11:16Z<p>I am working on building a search engine. Optimization is what makes the the difference between a user continuing to search or leaving the website. I think It is true for many applications, and unfortunately many of them do not care enough about it. Sometimes it is much cheaper that throwing more hardware at the problem. Unfortunately the latter is easier. To summarize, I'd say you have to optimize whenever you either have to process a LOT of data and/or process it very quickly.</p>
http://stackoverflow.com/questions/471199/what-is-the-difference-between-n-and-on/471223#4712233Answer by nickolai for What is the difference between Θ(n) and O(n)?nickolaihttp://stackoverflow.com/users/545792009-01-22T23:04:04Z2009-01-22T23:04:04Z<p>f(n) belongs to O(n) if exists positive k as f(n)<=k*n</p>
<p>f(n) belongs to Θ(n) if exists positive k1, k2 as k1*n<=f(n)<=k2*n</p>
<p><a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">http://en.wikipedia.org/wiki/Big_O_notation</a></p>
http://stackoverflow.com/questions/470409/can-i-encrypt-php-source-or-compile-it-so-others-cant-see-it-and-how/470449#4704490Answer by nickolai for Can I encrypt PHP source or compile it so others can't see it? and how?nickolaihttp://stackoverflow.com/users/545792009-01-22T19:19:05Z2009-01-22T19:19:05Z<p>There is some of software available to encrypt PHP sources to protect intellectual property. I do not know any free ones, though. Just google something like "php encrypt source" if you're ok with paying/shareware.</p>
http://stackoverflow.com/questions/470198/java-generics-and-array-initialization/470295#4702951Answer by nickolai for Java generics and array initializationnickolaihttp://stackoverflow.com/users/545792009-01-22T18:24:39Z2009-01-22T18:24:39Z<p>There seems to be obscure cases where you could inadvertently cause a ClassCastException as explained here
<a href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" rel="nofollow">http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf</a> (section 7.3)</p>
<p>an intersting discussion on this topic could be found here
<a href="http://courses.csail.mit.edu/6.170/old-www/2006-Spring/forum/index.php%3Ftopic=324.msg1131.html" rel="nofollow">http://courses.csail.mit.edu/6.170/old-www/2006-Spring/forum/index.php%3Ftopic=324.msg1131.html</a></p>
http://stackoverflow.com/questions/469913/regular-expressions-is-there-an-and-operator/469947#4699473Answer by nickolai for Regular Expressions: Is there an AND operator?nickolaihttp://stackoverflow.com/users/545792009-01-22T16:57:52Z2009-01-22T16:57:52Z<p>Is it not possible in your case to do the AND on several matching results? in pseudocode</p>
<pre><code>regexp_match(pattern1, data) && regexp_match(pattern2, data) && ...
</code></pre>
http://stackoverflow.com/questions/469059/button-vs-input-typebutton-which-to-use/469073#4690736Answer by nickolai for <button> vs. <input type="button" />. Which to use?nickolaihttp://stackoverflow.com/users/545792009-01-22T13:18:19Z2009-01-22T13:54:16Z<p>Quote</p>
<blockquote>
<p>Important: If you use the button element in an HTML form, different browsers will submit different values. Internet Explorer will submit the text between the <code><button></code> and <code></button></code> tags, while other browsers will submit the content of the value attribute. Use the input element to create buttons in an HTML form.</p>
</blockquote>
<p>From : <a href="http://www.w3schools.com/tags/tag_button.asp" rel="nofollow">http://www.w3schools.com/tags/tag_button.asp</a></p>
<p>If I understand correctly, the answer is compatibility and input consistency from browser to browser</p>
http://stackoverflow.com/questions/466521/how-many-files-in-a-directory-is-too-many/466580#4665800Answer by nickolai for How many files in a directory is too many?nickolaihttp://stackoverflow.com/users/545792009-01-21T19:13:05Z2009-01-21T19:13:05Z<p>I recall running a program that was creating a huge amount of files at the output. the files were sorted at 30000 per directory. I do not recall having any read problems when I had to reuse the produced output. It was on an 32bit ubuntu linux laptop, and even nautilus displayed the directory contents, albeit after a few seconds.</p>
<p>EDIT: forgot to mention : ext3 filesystem. a similar code on a 64bit system dealt well with 64000 files per dir</p>
http://stackoverflow.com/questions/461260/is-there-a-maximum-number-you-can-set-xmx-to-when-trying-to-increase-jvm-memory/461284#4612841Answer by nickolai for Is there a maximum number you can set Xmx to when trying to increase jvm memory?nickolaihttp://stackoverflow.com/users/545792009-01-20T13:27:26Z2009-01-20T14:29:02Z<p>I think a 32 bit JVM has a maximum of 2GB memory.This might be out of date though. If I understood correctly, you set the -Xmx on Eclipse launcher. If you want to increase the memory for the program you run from Eclipse, you should define -Xmx in the "Run->Run configurations..."(select your class and open the Arguments tab put it in the VM arguments area) menu, and NOT on Eclipse startup</p>
<p>Edit: details you asked for.
in Eclipse 3.4 </p>
<p>1) Run->Run Configurations...</p>
<p>2) if your class is not listed in the list on the left in the "Java Application" subtree, click on "New Launch configuration" in the upper left corner</p>
<p>2b) on the right, "Main" tab make sure the project and the class are the right ones</p>
<p>3)select the "Arguments" tab on the right.
this one has two text areas. one is for the program arguments that get in to the args[] array supplied to your main method. the other one is for the VM arguments. put into the one with the VM arguments(lower one iirc) the following:<br />
-Xmx2048m</p>
<p>I think that 1024m should more than enough for what you need though!</p>
<p>4)Click Apply, then Click Run</p>
<p>5) Should work :)</p>
http://stackoverflow.com/questions/461154/how-do-you-know-you-are-professional-in-a-specific-programming-language/461211#461211-1Answer by nickolai for How do you know you are professional in a specific programming language?nickolaihttp://stackoverflow.com/users/545792009-01-20T13:00:39Z2009-01-20T13:00:39Z<p>I would say you become a professional when you can look at what you wrote six months before without saying to yourself "did I really REALLY write this???". This assumes that being professional means well qualified, a point some may disagree with.</p>
http://stackoverflow.com/questions/863435/from-computer-scientist-to-software-engineer/863541#863541Comment by on From Computer Scientist to Software Engineer http://stackoverflow.com/users/545792009-05-14T18:32:13Z2009-05-14T18:32:13ZRTFM seems not appropriate here. A lot of the Open Source projects that are production ready have poor(incomplete/nonfriendly) documentation(I'm not meaning anything in particular here). In fact if he is banging his head against the wall, it probably means he has read the docs. http://stackoverflow.com/questions/859536/sorted-list-difference/859902#859902Comment by on Sorted list differencehttp://stackoverflow.com/users/545792009-05-14T14:00:33Z2009-05-14T14:00:33ZYes This looks very much like the thing I was looking for, Thanks!http://stackoverflow.com/questions/675342/group-by-question-in-postgresql/675511#675511Comment by on group-by question in postgresqlhttp://stackoverflow.com/users/545792009-03-24T15:48:06Z2009-03-24T15:48:06Zlooked up DISTINCT ON in postgres doc. Just what I needed. Very Elegant. Thanks!http://stackoverflow.com/questions/472746/as-a-programmer-how-to-regain-the-ability-to-get-along-with-people/472770#472770Comment by on As a programmer, how to regain the ability to get along with people?http://stackoverflow.com/users/545792009-01-28T14:23:22Z2009-01-28T14:23:22Zthat looks more like a way of efficiently drowning in an ocean of introspection. When people have communication problems, it is often due to low self-esteem. In this case imagining how people see you can only make things worse. -1, sorry.http://stackoverflow.com/questions/483997/what-language-has-the-longest-hello-world-program/484018#484018Comment by on What language has the longest "Hello world" program?http://stackoverflow.com/users/545792009-01-27T16:24:28Z2009-01-27T16:24:28Zdo tabs count as two?http://stackoverflow.com/questions/483997/what-language-has-the-longest-hello-world-program/484007#484007Comment by on What language has the longest "Hello world" program?http://stackoverflow.com/users/545792009-01-27T16:22:03Z2009-01-27T16:22:03Z@Jinx teaching monkeys to codehttp://stackoverflow.com/questions/482058/whats-a-good-age-to-get-your-children-into-programming/482116#482116Comment by on Whats a good age to get your children into programming?http://stackoverflow.com/users/545792009-01-27T03:43:56Z2009-01-27T03:43:56ZExactly, and I doubt that Microsoft is the best choice to teach open-mindedness to your children :)http://stackoverflow.com/questions/482058/whats-a-good-age-to-get-your-children-into-programming/482116#482116Comment by on Whats a good age to get your children into programming?http://stackoverflow.com/users/545792009-01-27T02:12:42Z2009-01-27T02:12:42ZI wouldn't let Microsoft educating my kids too much, but I guess that's a matter of opinion...http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code/480826#480826Comment by on Programmatically obtaining Big-O efficiency of codehttp://stackoverflow.com/users/545792009-01-26T19:17:03Z2009-01-26T19:17:03Zindeed. My mistake.http://stackoverflow.com/questions/480640/what-is-the-best-way-to-sort-a-partially-ordered-list/480746#480746Comment by on What is the best way to sort a partially ordered list?http://stackoverflow.com/users/545792009-01-26T18:06:21Z2009-01-26T18:06:21ZI am not sure that the number of rules are an issue. The result will still be correct. a little performance issue maybe.http://stackoverflow.com/questions/479565/how-do-you-define-a-class-of-constants-in-java/479582#479582Comment by on How do you define a class of constants in Java?http://stackoverflow.com/users/545792009-01-26T13:55:34Z2009-01-26T13:55:34Zthe benefit is about not duplicating code, in case you need to reuse constants in more than one class. I guess you can easily see the advantage of this.http://stackoverflow.com/questions/474483/how-to-exercise-and-feel-well-when-you-are-programmingComment by on How to exercise and feel well when you are programminghttp://stackoverflow.com/users/545792009-01-23T20:58:45Z2009-01-23T20:58:45Znice reformulation. so who is it who took the previous one personally?http://stackoverflow.com/questions/474451/java-int-array-iterating-and-finding-value/474470#474470Comment by on Java int[][] array - iterating and finding valuehttp://stackoverflow.com/users/545792009-01-23T20:56:54Z2009-01-23T20:56:54Z@Herms :He wanats to find the coordinates by the value. so the key must be the cell value . things will get more complicated if multiple cells can have the same value, but it is still doablehttp://stackoverflow.com/questions/473282/left-padding-integers-with-zeros-in-java/473302#473302Comment by on Left padding integers with zeros in Javahttp://stackoverflow.com/users/545792009-01-23T16:20:47Z2009-01-23T16:20:47Zoh! a Microsoft coder !http://stackoverflow.com/questions/472746/as-a-programmer-how-to-regain-the-ability-to-get-along-with-people/472769#472769Comment by on As a programmer, how to regain the ability to get along with people?http://stackoverflow.com/users/545792009-01-23T13:02:19Z2009-01-23T13:02:19ZI totally disagree, and I know a lots of examples of people good at both. It is just easier to assume that there's nothing you can change