User Pyrolistical - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:16:52Zhttp://stackoverflow.com/feeds/user/21838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/130095/most-useful-free-java-libraries126Most useful free Java libraries?Pyrolistical2008-09-24T21:29:01Z2009-12-17T21:47:45Z
<p>I've never seen a good list of free Java libraries.</p>
<p>What are some of your can't-live-without Java libraries?</p>
<p><strong>Note</strong>: to keep this <a href="http://stackoverflow.com/questions/tagged/polls">poll</a> as useful as possible, please remember:</p>
<ul>
<li>Post only <strong>one library per answer</strong></li>
<li>We don't want duplicate answers, so <strong>before posting check if the library has been mentioned already</strong></li>
<li>When adding a new library, provide a short summary of what it does / why you think it's useful</li>
</ul>
http://stackoverflow.com/questions/1675912/how-to-close-a-modal-jdialog-when-user-clicks-outside-of-jdialog1How to close a modal JDialog when user clicks outside of JDialog?Pyrolistical2009-11-04T19:02:21Z2009-11-04T22:06:34Z
<p>I have a Undecorated Modal JDialog which I want to setVisible(false) when the user clicks outside of the modal dialog.</p>
<p>Is this possible in Swing?</p>
<p>What I am doing is popping up a custom editor for a text field like a date selector. Is there an easier way to do what I want?</p>
<p><strong>EDIT</strong></p>
<p>Remember that modal blocks on the call to setVisible(true), so you can't just say "don't use a modal dialog"</p>
<p>And I've tried focus listeners on the dialog, they don't trigger when its modal.</p>
http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/1581007#15810073Answer by Pyrolistical for rounding to an arbitrary number of significant digitsPyrolistical2009-10-17T00:20:15Z2009-10-23T22:25:30Z<p>Here's the same code in Java without the 12.100000000000001 bug that the accepted answer has.</p>
<p>I also removed repeated code, changed <code>power</code> to a type integer to prevent floating issues when <code>n - d</code> is done, and made the long intermediate more clear</p>
<p>The bug was caused by multiplying a large number with a small number. Instead I divide two numbers of similar size.</p>
<p><strong>EDIT</strong><br />
Fixed more bugs. Added check for 0 as it would result in NaN. Made the function actually work with negative numbers (The original code doesn't handle negative numbers because a log of a negative number is a complex number)</p>
<pre><code>public static double roundToSignificantFigures(double num, int n) {
if(num == 0) {
return 0;
}
final double d = Math.ceil(Math.log10(num < 0 ? -num: num));
final int power = n - (int) d;
final double magnitude = Math.pow(10, power);
final long shifted = Math.round(num*magnitude);
return shifted/magnitude;
}
</code></pre>
http://stackoverflow.com/questions/1610068/why-do-floats-having-trailing-0-when-it-is-exactly-an-integer2Why do floats having trailing .0 when it is exactly an integer?Pyrolistical2009-10-22T21:26:52Z2009-10-22T21:54:32Z
<p>Read this question carefully because I am <strong>not asking</strong> how to get rid of trailing zeros, that's easy.</p>
<p>What I am asking is why does 123d become "123.0"?</p>
<p>A IEEE 64-bit float can represent integers from 0 to 2^52 exactly, so this isn't a loss in precision but a decision during the implementation of Double.toString().</p>
<p>My question is why did they make this decision as they did? Why did they not just print 123?</p>
http://stackoverflow.com/questions/988276/am-i-using-histc-wrong-or-is-this-matlabs-fault2Am I using histc wrong, or is this MATLAB's fault?Pyrolistical2009-06-12T18:35:43Z2009-10-12T22:54:47Z
<p>Ok, here's some code in MATLAB:</p>
<pre><code>data = [1 1.5 2 3 4 4.5 5 6 7 7 7 0 0 0];
histc(data, [1:1:5])
histc(data, [1:1:5, inf])
histc(data, [-inf, 1:1:5])
</code></pre>
<p>which outputs the following:</p>
<pre><code>ans = 2 1 1 2 1
ans = 2 1 1 2 5 0
ans = 3 2 1 1 2 1
</code></pre>
<p>My question is, why does MATLAB return a useless 0 when you use inf in the bin size (to mean >= 5 in this case)?</p>
<p>Won't it always be zero? The help says the output will always be the same length as the bin size, but isn't that a bad spec in this case?</p>
http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342599#3425990Answer by Pyrolistical for What "already invented" algorithm did you invent?Pyrolistical2008-12-05T01:06:53Z2009-10-02T20:03:59Z<p>Lazy synchronization with asynchronous method calls, i.e. functional programming.</p>
http://stackoverflow.com/questions/1413277/memory-leaks-always-need-a-long-lived-object/1413316#14133167Answer by Pyrolistical for Memory leaks always need a long-lived object?Pyrolistical2009-09-11T21:15:32Z2009-09-11T21:15:32Z<p>Misleading.</p>
<p>While the statement is technically true, the memory leak is caused by objects that live longer than expected.</p>
http://stackoverflow.com/questions/1302931/derive-integer-factors-of-float-value/1303097#13030971Answer by Pyrolistical for Derive integer factors of float value?Pyrolistical2009-08-19T23:06:44Z2009-08-19T23:52:59Z<p>To maximize the numbers of decimal points stored, you should use a P of 1, or 0.1%. If that overflows M, then increment P.</p>
<p>So for your example of 1400.00555, P is 1 and M is 1400006</p>
<p>Your algorithm would search for the lowest P such that M does not overflow. And you can do a binary search here.</p>
<pre><code>public int binarySearch(int P0, int P1) {
P = (P1 - P0)/2;
if(P == P0) {
if(R/(P0/100f) does not overflows 32-bit int) {
return P0;
} else {
return P1;
}
}
if(R/(P/100f) does not overflows 32-bit int) {
return binarySearch(P0, P);
} else {
return binarSearch(P, P1);
}
}
P = binarySearch(1, 100000);
M = round(R/(P/100f));
</code></pre>
http://stackoverflow.com/questions/1279206/programming-shops-in-certain-cities-does-it-matter/1279232#12792322Answer by Pyrolistical for Programming shops in certain cities: Does it matter?Pyrolistical2009-08-14T17:51:58Z2009-08-14T17:51:58Z<p>Its sort of the post chicken and egg problem. People will move there to do software because there are a lot of companies/jobs there, and more companies will start there because there are a lot of software people there.</p>
<p>There will also be more infrastructure there. For example they'll be more datacenters, faster internets, more foosball stores.</p>
http://stackoverflow.com/questions/703396/how-to-nicely-format-floating-types-to-string0How to nicely format floating types to String?Pyrolistical2009-03-31T22:54:29Z2009-08-14T04:52:45Z
<p>An 64-bit double can represent integer +/- 2<sup>53</sup> exactly</p>
<p>Given this fact I choose to use a double type as a single type for all my types, since my largest integer is unsigned 32-bit.</p>
<p>But now I have to print these pseudo integers, but the problem is they are also mixed in with actual doubles.</p>
<p>So how do I print these doubles nicely in Java?</p>
<p>I have tried <code>String.format("%f", value)</code>, which is close, except I get a lot of trailing zeros for small values.</p>
<p>Here's an example output of of <code>%f</code></p>
<pre>
232.00000000
0.18000000000
1237875192.0
4.5800000000
0.00000000
</pre>
<p>Sure I can write a function to trim those zeros, but that's lot of performance loss due to String manipulation. Can I do better with another format code?</p>
http://stackoverflow.com/questions/1256601/how-to-combine-repaints-in-swing1How to combine repaints in Swing?Pyrolistical2009-08-10T18:58:36Z2009-08-13T23:05:59Z
<p>I am calling repaint a bunch of times from a listeners, but the way I designed my paint function is only one repaint is required. I generate a bunch of repaints, since it hooked into my mouse motion listener.</p>
<p>Is there a way to cancel all pending repaints for a certain component? I can't just start ignoring repaints, since some are valid like when you resize the frame or restore it from minimize.</p>
<p>Why do I care? Because my paint code is very heavy and I can't do full repaints at a very high FPS.</p>
http://stackoverflow.com/questions/1263100/determining-deterministic-thread-execution-of-a-java-program/1263136#12631360Answer by Pyrolistical for Determining deterministic thread execution of a Java programPyrolistical2009-08-11T21:47:44Z2009-08-11T21:47:44Z<p>I would suggest you look in to Java Real Time: <a href="http://en.wikipedia.org/wiki/Real_time_Java" rel="nofollow">http://en.wikipedia.org/wiki/Real_time_Java</a>
And also check out: <a href="http://java.sun.com/j2se/1.5.0/docs/guide/concurrency/overview.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/guide/concurrency/overview.html</a></p>
<p>You shouldn't be writing you own threads after Java 1.5</p>
http://stackoverflow.com/questions/1257844/getting-mouse-position-unbounded-by-screen-size-c-windows/1257880#12578801Answer by Pyrolistical for Getting mouse position unbounded by screen size, c++ & windowsPyrolistical2009-08-11T00:06:22Z2009-08-11T00:06:22Z<p>Just get the position, and move it to the center and return the delta yourself</p>
<p>This is how FPS games do it</p>
http://stackoverflow.com/questions/1257825/tinyurl-style-unique-code-potential-algorithm-to-prevent-collisions/1257838#1257838-3Answer by Pyrolistical for Tinyurl-style unique code: potential algorithm to prevent collisionsPyrolistical2009-08-10T23:51:30Z2009-08-10T23:51:30Z<p>Don't reinvent the wheel:
<a href="http://en.wikipedia.org/wiki/Universally_Unique_Identifier" rel="nofollow">http://en.wikipedia.org/wiki/Universally_Unique_Identifier</a></p>
http://stackoverflow.com/questions/1257415/best-way-to-store-retrieve-millions-of-files-when-their-meta-data-is-in-a-sql-dat/1257524#12575240Answer by Pyrolistical for Best way to store/retrieve millions of files when their meta-data is in a SQL DatabasePyrolistical2009-08-10T22:13:28Z2009-08-10T22:13:28Z<p>My file database contains over 4 million folders, with many files in each folder.</p>
<p>Just just tossed all the folders in one directory. NTFS can handle this without any issue, and advanced tools like robocopy can help when you need to move it.</p>
<p>Just make sure you can index the files without a scan. I did this by tossing my index in a mysql database.</p>
<p>So to get a file I search the mysql database upon some metadata and get an index. Then I use this index to read the file directly. Scaled well for me so far. But do note that you will be turning everything into random access and hence random read/writes. This is poor performance for HDD, but fortunately SSD will help a lot.</p>
<p>Also, I wouldn't toss the files into the mysql database. You won't be able to do network reads without having a client that understand mysql. Right now I can access any file over the network using any program because I can just use its network URL.</p>
http://stackoverflow.com/questions/1245885/project-ideas-on-algorithms-data-structures-and-parallel-programming/1245951#12459511Answer by Pyrolistical for project ideas on algorithms ,data structures and parallel programmingPyrolistical2009-08-07T17:17:03Z2009-08-07T17:17:03Z<p>What are some of your higher level interests? The 4 things you describe are tools to get the job done, but not enough to figure out what you really like. </p>
<p>For one of my final projects I implemented marching cubes on arbitrary isosurfaces in PBRT.</p>
<p>If I had access to +4 core hardware (hopefully in the hundreds), I would write my own parallel ray tracer.</p>
http://stackoverflow.com/questions/1241633/is-there-a-standard-way-to-handle-many-different-options-for-mouse-events-in-java/1241678#12416780Answer by Pyrolistical for Is there a standard way to handle many different options for mouse events in java?Pyrolistical2009-08-06T21:42:56Z2009-08-06T21:42:56Z<p>It sounds like you need to define your game model/state and keep it separate from your mouse actions.</p>
<p>Are you using MVC?</p>
http://stackoverflow.com/questions/1195337/show-us-your-best-obfuscated-identity-function2Show us your best obfuscated identity functionPyrolistical2009-07-28T16:49:54Z2009-08-06T14:29:38Z
<p>Rules are simple. Write an obfuscated function in any language that takes in an integer and returns the same integer. Try to use math tricks and not language tricks. IE. Try to make your function portable.</p>
http://stackoverflow.com/questions/1235179/simple-way-to-repeat-a-string-in-java/1235213#12352134Answer by Pyrolistical for Simple way to repeat a String in javaPyrolistical2009-08-05T19:23:28Z2009-08-05T19:23:28Z<p>This contains less characters than your question</p>
<pre><code>public static String repeat(String s, int n) {
if(s == null) {
return null;
}
final StringBuilder sb = new StringBuilder();
for(int i = 0; i < n; i++) {
sb.append(s);
}
return sb.toString();
}
</code></pre>
http://stackoverflow.com/questions/1214231/using-random-folder-name-on-web-server-to-restrict-access-to-it-bad-idea/1214258#12142583Answer by Pyrolistical for Using random folder name on web server to restrict access to it - bad idea?Pyrolistical2009-07-31T18:59:24Z2009-08-01T00:10:26Z<p>Yes its a bad idea.</p>
<p>If you don't use a password, other systems won't treat it as such.</p>
<p>For example, your browser will now cache that url in its history. It won't do that automatically for passwords (at least not Firefox)</p>
<p>What about the list permission? What about internet hops, they'll see your URL.</p>
<p>If you start going around the security system, the security system won't know you want to be secure.</p>
<p><strong>EDIT</strong></p>
<p>Another way to think about it is, when software sees a password it goes, "This is an security issue and I will treat it as such." But for URLs, it goes "Meh, another piece of data"</p>
http://stackoverflow.com/questions/296297/what-optimizations-today-are-going-to-be-useless-tomorrow24What optimizations today are going to be useless tomorrow?Pyrolistical2008-11-17T17:42:32Z2009-07-31T14:20:34Z
<p>I hope we all know by now that <b>Premature optimization is the root of all evil</b>.</p>
<p>One side of that quote means by optimizing you are increasing complexity and complexity is evil. The other less known side is today's optimization might be meaningless tomorrow.</p>
<p>What I mean is we used to think that, <i>"Floating-point operations are slow, therefore you should use integers since they are 100x faster! You must use integers even if it makes your code more complex!</i></p>
<p>That is completely false today. Today, modern processors actually do floating point operations faster than integer operations. Did you know that? I was surprised as well when I tested it in Java.</p>
<p>Also, what about addition and minus are much faster than multiplications or divide? <b>False today</b> (no difference)</p>
<p>Double is <i>much</i> slower than float! <b>False</b> (only half as slow, which is nothing)</p>
<p>A few other things that I think will be useless soon (if they are not already):</p>
<ol>
<li><b>Threads</b>. Threads aren't commonly thought as an optimization, but it really is. It trades complexity for performance. I imagine a concurrent model of tomorrow where we don't explicitly deal with threads.</li>
<li><b>Inlining functions</b>, the runtime or compiler should be able to figure this out for you</li>
<li>The <b>final keyword</b> in Java. Basically inlining variable references (but we'll still use it for protection, today I use it for both protection and performance)</li>
<li><b>Buffered IO</b>, the operating system or runtime should figure this out for you</li>
<li><b>Object caching</b> (and caching in general at many levels), it's not far fetched for the runtime to handle this</li>
<li><b>Minimizing branch statements</b>, a smarter compiler can remove branches for you</li>
<li><b>Using arrays instead of Lists</b>, a smarter runtime can just use arrays underneath</li>
<li><b>Unraveling/reversing nested loops</b></li>
<li><b>Replacing recursion with a for loop</b></li>
<li><b>Minimizing object size to fit into cache or cache alignment issues</b>. This is a big one. Its a hard problem to crack, but if the runtime could really figure out that really needs to be in cache, then we can finally not care about object size.</li>
<li><b>Selecting the smallest data type that will work</b>. Maybe in the future an integer is rangeless</li>
<li><b>Scalability</b>. This sounds like an odd one, but scalability is a performance issue in the end.</li>
<li><b>newing/deleting memory</b> (looking at you C++), Java already solved some of this, others just need to catch up. It can still be improved even more</li>
<li><b>Using shift instead of * or /</b></li>
<li><b>Avoiding the use of Exceptions</b></li>
<li><b>Tuning Garbage collector</b></li>
<li><b>Double buffering</b>, I think Swing already does this by default</li>
</ol>
<p>My main point in all this is to be careful with your optimizations and you really should code for clarity and not speed.</p>
<p>So my question is, what are some "optimizations" you are doing today that probably will be useless tomorrow?</p>
http://stackoverflow.com/questions/1209574/has-arbitrary-precision-arithmetic-affected-numerical-analysis-software/1209619#12096191Answer by Pyrolistical for Has arbitrary-precision arithmetic affected numerical analysis software?Pyrolistical2009-07-30T21:53:40Z2009-07-30T21:53:40Z<p>Arbitrary precision doesn't work well with irrational values. I think flip everything upside down would help numerical analysis software. Instead of figuring how what precision is needed for the calculation, you should tell the software what you want the final precision to be and it'll figure everything out.</p>
<p>This way it can use a finite precision type just large enough for the calculation.</p>
http://stackoverflow.com/questions/1203099/good-cross-browser-tri-state-checkbox/1203136#12031360Answer by Pyrolistical for Good Cross-browser tri-state checkbox?Pyrolistical2009-07-29T21:23:42Z2009-07-29T21:23:42Z<p>If you need more than two states, then use 3 radio buttons.</p>
<p>Don't assume if the user didn't select anything to mean the third state. What if the user missed the question all together, or hit submit by mistake?</p>
<p>If you want 3 states, then have 3 states!</p>
http://stackoverflow.com/questions/1202128/what-career-can-i-hope-for-if-i-like-algorithms/1202140#120214065Answer by Pyrolistical for What career can I hope for if I like algorithms?Pyrolistical2009-07-29T18:27:09Z2009-07-29T18:27:09Z<p>University Professor</p>
http://stackoverflow.com/questions/1197509/how-do-make-an-infinite-jscrollpane0How do make an infinite jscrollpane?Pyrolistical2009-07-29T00:38:41Z2009-07-29T16:38:50Z
<p>I've implemented drag scroll before, but what's the best way to go about creating an infinite scroll pane? Of course there won't be any scrollbars and I will implement drag scroll.</p>
<p>What I am trying to do is implement dynamic loading on an infinite surface.</p>
<p><strong>EDIT</strong></p>
<p>Of course it wouldn't actually be infinite. I am asking how to fake it.</p>
http://stackoverflow.com/questions/1197535/how-much-do-you-really-work-a-day/1197539#1197539-3Answer by Pyrolistical for How much do you [really] work a dayPyrolistical2009-07-28T21:25:48Z2009-07-29T00:47:29Z<p>What do you mean by coding. I just get paid to surf the internet all day</p>
http://stackoverflow.com/questions/1195337/show-us-your-best-obfuscated-identity-function/1195517#11955171Answer by Pyrolistical for Show us your best obfuscated identity functionPyrolistical2009-07-28T17:21:16Z2009-07-28T17:21:16Z<pre><code>int euler(int x) {
return -x*pow(e, i*pi)
}
</code></pre>
http://stackoverflow.com/questions/361481/when-are-modal-dialogs-truly-necessary4When are modal dialogs truly necessary?Pyrolistical2008-12-12T00:00:52Z2009-07-11T03:22:36Z
<p>Modal dialogs are evil, but I keep reading "You should remove modal dialogs <i>when possible</i>"</p>
<p>When isn't it possible to remove modal dialogs? I mean, what are some truly modal tasks that force us to use evil modal dialogs?</p>
<p>The most common given example is the "Do you want to Save?" I think this is the problem of the concept of having the user hit Save instead of remembering that <b>user input is sacred</b>. If you just saved automatically with the ability to "undo" or have revisions, then you don't ever need ask the user if they want to save.</p>
<ul>
<li>"Are you sure you want to delete?" Undelete</li>
<li>"Are you sure you want to quit?" Why would you ask that? Are you that vain?</li>
</ul>
<p>Why do we ever need modal dialogs?</p>
<p><strong>EDIT</strong></p>
<p>Webs app don't count in my books, unless they write their own UI windowing system within the browser. Web apps don't have the same tools set as desktop apps.</p>
<p><strong>EDIT 2</strong></p>
<p>My question is slightly different than the one labeled as duplicate. I feel that there is no case that modal dialogs are the best solution. The referred question assumes there is such a case.</p>
<h3>Duplicate of: <a href="http://stackoverflow.com/questions/152938/when-is-modal-ui-acceptable">When Is Modal UI acceptable</a>?</h3>
http://stackoverflow.com/questions/1072383/how-to-implement-list-set-and-map-in-null-free-design2How to implement List, Set, and Map in null free design?Pyrolistical2009-07-02T03:51:13Z2009-07-03T16:49:32Z
<p>Its great when you can return a null/empty object in most cases to avoid nulls, but what about Collection like objects?</p>
<p>In Java, <code>Map</code> returns <code>null</code> if <code>key</code> in <code>get(key)</code> is not found in the map.</p>
<p>The best way I can think of to avoid <code>null</code>s in this situation is to return an <code>Entry<T></code> object, which is either the <code>EmptyEntry<T></code>, or contains the value <code>T</code>.</p>
<p>Sure we avoid the <code>null</code>, but now you can have a class cast exception if you don't check if its an <code>EmptyEntry<T></code>.</p>
<p>Is there a better way to avoid <code>null</code>s in <code>Map</code>'s <code>get(K)</code>?</p>
<p>And for argument sake, let's say this language don't even have <code>null</code>, so don't say just use <code>nulls</code>.</p>
http://stackoverflow.com/questions/1072383/how-to-implement-list-set-and-map-in-null-free-design/1080115#10801150Answer by Pyrolistical for How to implement List, Set, and Map in null free design?Pyrolistical2009-07-03T16:49:32Z2009-07-03T16:49:32Z<p>It looks like Maybe and Option is the way to go.</p>
<p>But pattern matching is also required to make it simpler for the user of this class. This way the user does not need to use instanceof and cast with the risk of a real time class cast exception.</p>
http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202336#202336Comment by Pyrolistical on rounding to an arbitrary number of significant digitsPyrolistical2009-10-23T22:28:02Z2009-10-23T22:28:02ZI fixed your code with my own answerhttp://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/1581060#1581060Comment by Pyrolistical on rounding to an arbitrary number of significant digitsPyrolistical2009-10-20T18:06:49Z2009-10-20T18:06:49ZNope. Read the question again. 1239451 with 3 sig figs using your algorithm would incorrectly yield 123951http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202476#202476Comment by Pyrolistical on rounding to an arbitrary number of significant digitsPyrolistical2009-10-17T00:03:07Z2009-10-17T00:03:07Zbut 12.1257 gives 12.126http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202336#202336Comment by Pyrolistical on rounding to an arbitrary number of significant digitsPyrolistical2009-10-17T00:00:27Z2009-10-17T00:00:27ZThis code in Java produces 12.100000000000001 and this is using 64-bit doubles which can present 12.1 exactly.http://stackoverflow.com/questions/144218/significant-figures-in-the-decimal-module/144573#144573Comment by Pyrolistical on Significant figures in the decimal modulePyrolistical2009-10-16T23:33:55Z2009-10-16T23:33:55ZWhat about 300/100? Your code would result incorrectly to 3.000http://stackoverflow.com/questions/1303402/guessing-an-unbounded-integerComment by Pyrolistical on Guessing an unbounded integerPyrolistical2009-08-20T00:59:28Z2009-08-20T00:59:28ZYour solution is the one I would usehttp://stackoverflow.com/questions/1302931/derive-integer-factors-of-float-valueComment by Pyrolistical on Derive integer factors of float value?Pyrolistical2009-08-19T22:55:36Z2009-08-19T22:55:36ZWhat are you trying to do? Why can't you just store the "Range"?http://stackoverflow.com/questions/1257825/tinyurl-style-unique-code-potential-algorithm-to-prevent-collisions/1257838#1257838Comment by Pyrolistical on Tinyurl-style unique code: potential algorithm to prevent collisionsPyrolistical2009-08-11T23:16:58Z2009-08-11T23:16:58ZI didn't say use UUID, I meant learn from UUID.http://stackoverflow.com/questions/502226/best-way-to-write-a-proof-of-concept-poc-appComment by Pyrolistical on Best way to write a Proof of Concept (PoC) app?Pyrolistical2009-08-10T22:31:13Z2009-08-10T22:31:13ZWith a keyboardhttp://stackoverflow.com/questions/1257415/best-way-to-store-retrieve-millions-of-files-when-their-meta-data-is-in-a-sql-datComment by Pyrolistical on Best way to store/retrieve millions of files when their meta-data is in a SQL DatabasePyrolistical2009-08-10T22:20:55Z2009-08-10T22:20:55ZJust generate them on demand. Store the snapshot and call it "generated" to legal. This is why you don't let people understand the details of what you do. Just make sure your result is what they want and handle the details yourself. This way you are free to generate stuff on demand if the result is the same.http://stackoverflow.com/questions/1235179/simple-way-to-repeat-a-string-in-javaComment by Pyrolistical on Simple way to repeat a String in javaPyrolistical2009-08-05T23:40:33Z2009-08-05T23:40:33Z"They add to the number of lines of code even if they are tucked away in another function"...wow, just wow. Big-O, not LoChttp://stackoverflow.com/questions/1235179/simple-way-to-repeat-a-string-in-java/1235213#1235213Comment by Pyrolistical on Simple way to repeat a String in javaPyrolistical2009-08-05T23:34:13Z2009-08-05T23:34:13ZWell, there are three ways to handle if s is null. 1. Pass the error (return null), 2. Hide the error (return ""), 3. Throw an NPE. Hiding the error and throwing an NPE are not cool, so I passed the error.http://stackoverflow.com/questions/296297/what-optimizations-today-are-going-to-be-useless-tomorrow/1212805#1212805Comment by Pyrolistical on What optimizations today are going to be useless tomorrow?Pyrolistical2009-07-31T18:39:30Z2009-07-31T18:39:30ZVery nice. Cache alignment issues was definitely one problem I don't want to care about.http://stackoverflow.com/questions/296297/what-optimizations-today-are-going-to-be-useless-tomorrow/1212522#1212522Comment by Pyrolistical on What optimizations today are going to be useless tomorrow?Pyrolistical2009-07-31T18:37:44Z2009-07-31T18:37:44ZAbout Scalability. You can scale up (faster single computer) or scale out (cloud). Right now to scale out you need to use frameworks like MapReduce. This is an optimization due to the fact that you don't have enough performance in a single computer. What I imagine in the future is concepts like MapReduce would be baked into the language and running on one vs N machines is trivial.http://stackoverflow.com/questions/1068849/how-do-i-determine-the-number-of-decimal-digits-of-an-integer-in-c/1068870#1068870Comment by Pyrolistical on How do I determine the number of decimal digits of an integer in C?Pyrolistical2009-07-24T21:51:23Z2009-07-24T21:51:23Z@stormsoul, are we still doing intensive calculations on a single thread? That was so last year.