| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 8 months |
| seen | May 14 at 12:11 | |
| stats | profile views | 11 |
|
Apr 29 |
answered | Coding style (do more, then simplify) |
|
Apr 29 |
comment |
Java lacking some convention? Fine answer. I also have to point out that many people (including me) think that JavaBean-like accessors do not belong everywhere and they often hurt readability and design. I absolutely prefer the short name "size" for the method in Collection. |
|
Apr 25 |
comment |
Is it OK to split long functions and methods into smaller ones even though they won't be called by anything else? I wonder what kind of syntax would be suitable for subroutines that will be called from one point only... ;) |
|
Apr 18 |
comment |
How to read large XML files efficiently There's no need to parse the whole tree at once when reading XML. Large XML files can be handled using event based parsing. |
|
Mar 28 |
comment |
what is a efficient way to find repeating decimal This answer seems correct. The method is based on following "rule": 0.123123... = 123/999
0.714258714258... = 714258/999999 (=5/7)
etc. |
|
Mar 1 |
comment |
Why do “data types” in computers exist, if it's really all just bits? +1 for pointing out that without data types and structures we would be stuck in the 50s. |
|
Feb 25 |
awarded | Commentator |
|
Feb 25 |
comment |
Should I try to persuade my manager that code tidying should take priority over meeting deadlines? @jwenting I still fail to any kind of religious behavior here. He's asking a question, not ranting. He has chosen not to bother the manager at this point, but to ask advice from other programmers. That's wise. There's nothing wrong with caring about code quality. |
|
Feb 25 |
comment |
Should I try to persuade my manager that code tidying should take priority over meeting deadlines? I fail to see any religious zeal in the question. |
|
Feb 15 |
awarded | Good Answer |
|
Feb 15 |
awarded | Mortarboard |
|
Feb 15 |
awarded | Nice Answer |
|
Feb 15 |
revised |
How does if/else work internally in all programming languages? added 342 characters in body |
|
Feb 15 |
comment |
How does if/else work internally in all programming languages? +1 This is a fine answer to the question "what if is" in terms of high level programming. My answer is about how if is implemented or how "it works internally" like the title of the question seems to ask. |
|
Feb 15 |
awarded | Editor |
|
Feb 15 |
revised |
How does if/else work internally in all programming languages? added 105 characters in body |
|
Feb 15 |
answered | How does if/else work internally in all programming languages? |
|
Jan 24 |
awarded | Good Answer |
|
Jan 22 |
comment |
Why don't languages include implication as a logical operator? @MaciejPiechotka: True, this depends on definition. Just about everything in mathematics depends on definitions. And sure, (!=) and (==) could be interpreted as xor and xnor (though I wouldn't consider them boolean operators at all). What I wanted to point out is that there are conventions about definitions and specifically about definitions of Boolean algebras. Furthermore, there are reasons and history behind these conventions, and that history goes way beyond the scope of modern programming languages. |
|
Jan 18 |
awarded | Yearling |