| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years |
| seen | Apr 13 '12 at 17:31 | |
| stats | profile views | 34 |
|
Jun 20 |
awarded | Yearling |
|
Apr 7 |
revised |
Java - multirow array deleted 7 characters in body |
|
Apr 7 |
comment |
Standard way of allowing general XML data This is interesting, but I'd like to avoid having to write custom validation for this scale of a project. |
|
Apr 7 |
revised |
Java - multirow array added 111 characters in body |
|
Apr 7 |
answered | Java - multirow array |
|
Apr 7 |
asked | Standard way of allowing general XML data |
|
Apr 6 |
revised |
What's an easy way to remember what the term 'memoization' means edited body |
|
Apr 6 |
answered | What's an easy way to remember what the term 'memoization' means |
|
Apr 6 |
comment |
How do you maintain focus when a particular aspect of programming takes 10+ seconds to complete? I've had the same issues in the past, and I've found that getting into work at a reasonable hour (8:30) combined with exercise in the morning gives me the best chance of staying focused throughout the day. |
|
Apr 6 |
comment |
Strategies for avoiding SQL in your Controllers… or how many methods should I have in my Models? I'm going through this same problem right now in a non-MVC project. The question keeps coming up of should the data access layer abstract out every stored procedure, and leave the business logic layer database agnostic, or should the data access layer be generic, at the cost of the business layer knowing something about the underlying database? Perhaps an intermediate solution is to have something like ExecuteSP(string spName, params object[] parameters), then include all of the SP names in a config file for the business layer to read. I don't really have a very good answer to this, though. |
|
Apr 5 |
revised |
Is it more advantageous to write a program to test your code (ie a client) or just use the main portion of your program? added 2 characters in body |
|
Apr 5 |
answered | Is it more advantageous to write a program to test your code (ie a client) or just use the main portion of your program? |
|
Jan 28 |
awarded | Good Answer |
|
Sep 8 |
answered | Can you write an unambiguous specification in a natural language like English? |
|
Aug 9 |
awarded | Nice Answer |
|
Jul 19 |
comment |
Are there any valid reasons for disallowing characters and limiting the length of passwords? @Lie: I do, all the time. I generally choose my passwords in a way that they're relatively easy to type. Anyway, that might be a good reason for you not to use such a long password, but it's not a good reason to enforce passwords being under a certain number of characters. |
|
Jul 1 |
awarded | Nice Answer |
|
Jul 1 |
comment |
Why aren't more desktop apps written with Qt? #6 is the biggest reason I avoid it. I mean, I don't want a big, clunky program, and I don't like being bound to a specific license, but it's really the lack of a good, native look-and-feel that's a deal-breaker for me. Recent versions of OSX and Windows specifically have done a fantastic job of making their native interfaces pretty, fast, and functional, and I'd rather leverage all the work they've already done for me; I find that many programs without a native look feel cheap and hacky to me (not always, but it wierds me out a bit). |
|
Jul 1 |
awarded | Nice Answer |
|
Jun 29 |
comment |
What is the best way to keep track of the median? Total complexity for each element is O(log n) -- inserting n elements has a complexity of O(n log n) |