User - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T01:13:27Z http://stackoverflow.com/feeds/user/54579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/883060/how-can-i-determine-if-a-date-is-between-two-dates-in-java/883154#883154 1 Answer by nickolai for How can I determine if a date is between two dates in Java? nickolai http://stackoverflow.com/users/54579 2009-05-19T14:33:31Z 2009-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#878617 2 Answer by nickolai for Java multiline string nickolai http://stackoverflow.com/users/54579 2009-05-18T16:40:53Z 2009-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#878061 0 Answer by nickolai for A Multithreading Question?? nickolai http://stackoverflow.com/users/54579 2009-05-18T14:32:01Z 2009-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-linux 4 an htop-like tool to display disk activity in linux nickolai http://stackoverflow.com/users/54579 2009-01-22T13:41:31Z 2009-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-difference 4 Sorted list difference nickolai http://stackoverflow.com/users/54579 2009-05-13T18:19:52Z 2009-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-postgresql 1 group-by question in postgresql nickolai http://stackoverflow.com/users/54579 2009-03-23T21:38:26Z 2009-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-java 2 RAR archives with java nickolai http://stackoverflow.com/users/54579 2009-02-18T13:50:39Z 2009-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#482112 1 Answer by nickolai for Whats a good age to get your children into programming? nickolai http://stackoverflow.com/users/54579 2009-01-27T02:09:15Z 2009-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#480826 1 Answer by nickolai for Programmatically obtaining Big-O efficiency of code nickolai http://stackoverflow.com/users/54579 2009-01-26T18:19:20Z 2009-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#480746 1 Answer by nickolai for What is the best way to sort a partially ordered list? nickolai http://stackoverflow.com/users/54579 2009-01-26T18:02:56Z 2009-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#479582 3 Answer by nickolai for How do you define a class of constants in Java? nickolai http://stackoverflow.com/users/54579 2009-01-26T12:06:51Z 2009-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#479540 3 Answer by nickolai for Java: Swing --> Maximize window nickolai http://stackoverflow.com/users/54579 2009-01-26T11:54:03Z 2009-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#474499 3 Answer by nickolai for How to exercise and feel well when you are programming nickolai http://stackoverflow.com/users/54579 2009-01-23T21:00:36Z 2009-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#474470 2 Answer by nickolai for Java int[][] array - iterating and finding value nickolai http://stackoverflow.com/users/54579 2009-01-23T20:52:39Z 2009-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#473678 0 Answer by nickolai for Problem capturing Enter key with getch() in C console application nickolai http://stackoverflow.com/users/54579 2009-01-23T17:00:08Z 2009-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#471390 0 Answer by nickolai for Do I always have to think about performance? nickolai http://stackoverflow.com/users/54579 2009-01-23T00:11:16Z 2009-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#471223 3 Answer by nickolai for What is the difference between Θ(n) and O(n)? nickolai http://stackoverflow.com/users/54579 2009-01-22T23:04:04Z 2009-01-22T23:04:04Z <p>f(n) belongs to O(n) if exists positive k as f(n)&lt;=k*n</p> <p>f(n) belongs to Θ(n) if exists positive k1, k2 as k1*n&lt;=f(n)&lt;=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#470449 0 Answer by nickolai for Can I encrypt PHP source or compile it so others can't see it? and how? nickolai http://stackoverflow.com/users/54579 2009-01-22T19:19:05Z 2009-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#470295 1 Answer by nickolai for Java generics and array initialization nickolai http://stackoverflow.com/users/54579 2009-01-22T18:24:39Z 2009-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#469947 3 Answer by nickolai for Regular Expressions: Is there an AND operator? nickolai http://stackoverflow.com/users/54579 2009-01-22T16:57:52Z 2009-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) &amp;&amp; regexp_match(pattern2, data) &amp;&amp; ... </code></pre> http://stackoverflow.com/questions/469059/button-vs-input-typebutton-which-to-use/469073#469073 6 Answer by nickolai for <button> vs. <input type="button" />. Which to use? nickolai http://stackoverflow.com/users/54579 2009-01-22T13:18:19Z 2009-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>&lt;button&gt;</code> and <code>&lt;/button&gt;</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#466580 0 Answer by nickolai for How many files in a directory is too many? nickolai http://stackoverflow.com/users/54579 2009-01-21T19:13:05Z 2009-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#461284 1 Answer by nickolai for Is there a maximum number you can set Xmx to when trying to increase jvm memory? nickolai http://stackoverflow.com/users/54579 2009-01-20T13:27:26Z 2009-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 -1 Answer by nickolai for How do you know you are professional in a specific programming language? nickolai http://stackoverflow.com/users/54579 2009-01-20T13:00:39Z 2009-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#863541 Comment by on From Computer Scientist to Software Engineer http://stackoverflow.com/users/54579 2009-05-14T18:32:13Z 2009-05-14T18:32:13Z RTFM 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#859902 Comment by on Sorted list difference http://stackoverflow.com/users/54579 2009-05-14T14:00:33Z 2009-05-14T14:00:33Z Yes This looks very much like the thing I was looking for, Thanks! http://stackoverflow.com/questions/675342/group-by-question-in-postgresql/675511#675511 Comment by on group-by question in postgresql http://stackoverflow.com/users/54579 2009-03-24T15:48:06Z 2009-03-24T15:48:06Z looked 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#472770 Comment by on As a programmer, how to regain the ability to get along with people? http://stackoverflow.com/users/54579 2009-01-28T14:23:22Z 2009-01-28T14:23:22Z that 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#484018 Comment by on What language has the longest "Hello world" program? http://stackoverflow.com/users/54579 2009-01-27T16:24:28Z 2009-01-27T16:24:28Z do tabs count as two? http://stackoverflow.com/questions/483997/what-language-has-the-longest-hello-world-program/484007#484007 Comment by on What language has the longest "Hello world" program? http://stackoverflow.com/users/54579 2009-01-27T16:22:03Z 2009-01-27T16:22:03Z @Jinx teaching monkeys to code http://stackoverflow.com/questions/482058/whats-a-good-age-to-get-your-children-into-programming/482116#482116 Comment by on Whats a good age to get your children into programming? http://stackoverflow.com/users/54579 2009-01-27T03:43:56Z 2009-01-27T03:43:56Z Exactly, 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#482116 Comment by on Whats a good age to get your children into programming? http://stackoverflow.com/users/54579 2009-01-27T02:12:42Z 2009-01-27T02:12:42Z I 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#480826 Comment by on Programmatically obtaining Big-O efficiency of code http://stackoverflow.com/users/54579 2009-01-26T19:17:03Z 2009-01-26T19:17:03Z indeed. My mistake. http://stackoverflow.com/questions/480640/what-is-the-best-way-to-sort-a-partially-ordered-list/480746#480746 Comment by on What is the best way to sort a partially ordered list? http://stackoverflow.com/users/54579 2009-01-26T18:06:21Z 2009-01-26T18:06:21Z I 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#479582 Comment by on How do you define a class of constants in Java? http://stackoverflow.com/users/54579 2009-01-26T13:55:34Z 2009-01-26T13:55:34Z the 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-programming Comment by on How to exercise and feel well when you are programming http://stackoverflow.com/users/54579 2009-01-23T20:58:45Z 2009-01-23T20:58:45Z nice reformulation. so who is it who took the previous one personally? http://stackoverflow.com/questions/474451/java-int-array-iterating-and-finding-value/474470#474470 Comment by on Java int[][] array - iterating and finding value http://stackoverflow.com/users/54579 2009-01-23T20:56:54Z 2009-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 doable http://stackoverflow.com/questions/473282/left-padding-integers-with-zeros-in-java/473302#473302 Comment by on Left padding integers with zeros in Java http://stackoverflow.com/users/54579 2009-01-23T16:20:47Z 2009-01-23T16:20:47Z oh! a Microsoft coder ! http://stackoverflow.com/questions/472746/as-a-programmer-how-to-regain-the-ability-to-get-along-with-people/472769#472769 Comment by on As a programmer, how to regain the ability to get along with people? http://stackoverflow.com/users/54579 2009-01-23T13:02:19Z 2009-01-23T13:02:19Z I 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