Pyrolistical

4,433
Reputation
400 views

Registered User

Name Pyrolistical
Member for 1 year
Seen 6 hours ago
Website
Location Vancouver, Canada
Age
**Premature optimization is the root of all evil**

**If you are not trying to learn all the time, then you are not a great developer**

**User input is sacred**
Nov
4
revised How to close a modal JDialog when user clicks outside of JDialog?
added 208 characters in body
Nov
4
asked How to close a modal JDialog when user clicks outside of JDialog?
Oct
23
comment rounding to an arbitrary number of significant digits
I fixed your code with my own answer
Oct
23
revised rounding to an arbitrary number of significant digits
added 28 characters in body; added 2 characters in body; edited body
Oct
23
revised rounding to an arbitrary number of significant digits
added 398 characters in body; deleted 181 characters in body; deleted 3 characters in body
Oct
22
asked Why do floats having trailing .0 when it is exactly an integer?
Oct
20
comment rounding to an arbitrary number of significant digits
Nope. Read the question again. 1239451 with 3 sig figs using your algorithm would incorrectly yield 123951
Oct
17
revised rounding to an arbitrary number of significant digits
deleted 31 characters in body; added 3 characters in body
Oct
17
answered rounding to an arbitrary number of significant digits
Oct
17
comment rounding to an arbitrary number of significant digits
but 12.1257 gives 12.126
Oct
17
comment rounding to an arbitrary number of significant digits
This code in Java produces 12.100000000000001 and this is using 64-bit doubles which can present 12.1 exactly.
Oct
16
comment Significant figures in the decimal module
What about 300/100? Your code would result incorrectly to 3.000
Oct
4
awarded  Necromancer
Sep
25
awarded  Nice Answer
Sep
25
awarded  Yearling
Sep
17
awarded  Good Answer
Sep
11
answered Memory leaks always need a long-lived object?
Aug
30
awarded  Nice Answer
Aug
20
accepted Derive integer factors of float value?
Aug
20
comment Guessing an unbounded integer
Your solution is the one I would use
Aug
19
revised Derive integer factors of float value?
added 3 characters in body
Aug
19
revised Derive integer factors of float value?
added 12 characters in body; added 12 characters in body; added 6 characters in body; deleted 2 characters in body; added 1 characters in body
Aug
19
revised Derive integer factors of float value?
deleted 23 characters in body; added 8 characters in body
Aug
19
answered Derive integer factors of float value?
Aug
19
comment Derive integer factors of float value?
What are you trying to do? Why can't you just store the "Range"?
Aug
14
answered Programming shops in certain cities: Does it matter?
Aug
13
awarded  Popular Question
Aug
11
comment Tinyurl-style unique code: potential algorithm to prevent collisions
I didn't say use UUID, I meant learn from UUID.
Aug
11
answered Determining deterministic thread execution of a Java program
Aug
11
answered Getting mouse position unbounded by screen size, c++ & windows
Aug
10
answered Tinyurl-style unique code: potential algorithm to prevent collisions
Aug
10
comment Best way to write a Proof of Concept (PoC) app?
With a keyboard
Aug
10
comment Best way to store/retrieve millions of files when their meta-data is in a SQL Database
Just 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.
Aug
10
answered Best way to store/retrieve millions of files when their meta-data is in a SQL Database
Aug
10
asked How to combine repaints in Swing?
Aug
9
awarded  
Aug
7
answered project ideas on algorithms ,data structures and parallel programming
Aug
6
answered Is there a standard way to handle many different options for mouse events in java?
Aug
5
comment Simple way to repeat a String in java
"They add to the number of lines of code even if they are tucked away in another function"...wow, just wow. Big-O, not LoC
Aug
5
comment Simple way to repeat a String in java
Well, 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.
Aug
5
answered Simple way to repeat a String in java
Aug
1
revised Using random folder name on web server to restrict access to it - bad idea?
added 197 characters in body
Jul
31
answered Using random folder name on web server to restrict access to it - bad idea?
Jul
31
comment What optimizations today are going to be useless tomorrow?
Very nice. Cache alignment issues was definitely one problem I don't want to care about.
Jul
31
comment What optimizations today are going to be useless tomorrow?
About 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.
Jul
30
answered Has arbitrary-precision arithmetic affected numerical analysis software?
Jul
29
awarded  Populist
Jul
29
answered Good Cross-browser tri-state checkbox?
Jul
29
awarded  Good Answer
Jul
29
awarded  Nice Answer