Beska
|
Registered User
|
none
|
|
Dec 2 |
comment |
Software development crash course Best answer here (IMNSHO) for that first sentence. Get that stuff working, and working well, and you've definitely started off on the right foot. Without it, you're making your life much more difficult in the long run (and probably even in the medium to short run.) |
|
Dec 2 |
comment |
Software development crash course Assuming, of course, he ends up using agile development. |
|
Nov 16 |
comment |
Server side CustomValidator happening too late in .Net Wizard "I'll update...if I ever figure out what is actually going on." Please do! |
|
Nov 12 |
comment |
Singletons or non-singletons wrapped by a Singleton I'm not clear on why you want to do this redesign. If you feel that the subsidiary classes are best represented as singletons, why do you want to design them as though they are not? |
|
Nov 12 |
revised |
Explain this obscure ASP.NET bug deleted 2 characters in body |
|
Nov 6 |
revised |
What is the funniest question asked to you by an interviewer? Fix grammar |
|
Nov 6 |
revised |
\n newline character won’t work with Javascript edited title |
|
Nov 6 |
revised |
\n newline character won’t work with Javascript Text clarity |
|
Nov 6 |
revised |
\n newline character won’t work with Javascript added 252 characters in body; deleted 1 characters in body |
|
Nov 6 |
comment |
\n newline character won’t work with Javascript Well, they've voted it up because it's the usual solution, and it seemed likely to work. Unfortunately, it looks like your system, whatever it is, is specifically looking for tags and encoding them so they are displayed, rather than interpreted. If that is the case, then you may well be out of luck...there may not be a solution short of somehow changing the system you're working with. |
|
Nov 6 |
comment |
\n newline character won’t work with Javascript Just checked how you edited it...now I know something new, too. Win-win. :) |
|
Nov 6 |
answered | \n newline character won’t work with Javascript |
|
Nov 4 |
comment |
Should entry level programmers be able to answer FizzBuzz? @BenAlabaster: "Mathematics is plural" Really? You would say "Mathematics are hard" rather than "Mathematics is hard"? |
|
Nov 4 |
awarded | ● Pundit |
|
Nov 3 |
comment |
What is a Ghost Reference? It's like this: "Remember that movie with Patrick Swazye and Whoopie Goldberg?" |
|
Nov 3 |
comment |
What does =+ mean in (T)SQL? It's a char(20)...but it is holding, in every case I can see, an integer value...so maybe it's just auto-casting it, and allowing the unary plus. |
|
Nov 3 |
asked | What does =+ mean in (T)SQL? |
|
Nov 3 |
comment |
What was the biggest mental leap/hurdle you had to overcome in your career? criticalthinking.net.au/cartoons/PC/… |
|
Oct 30 |
answered | How-To Deal with Multi-Criteria Queries in 3-Tier Architecture |
|
Oct 30 |
comment |
How can a page in IE render differently between Cassini and IIS7? This pretty much nails it, because something has to be different. It's got to be the content or the header. |
|
Oct 30 |
answered | The best approach for multilingual user interface |
|
Oct 28 |
comment |
Should I use comments in code, liberally? @Manav: Not sure what you mean exactly. You'll definitely get a lot of agreement with your "comment the why, not the how" philosophy...but I'm thinking that most of this has been covered quite well in the dup I mentioned above. |
|
Oct 28 |
comment |
Should I use comments in code, liberally? Another dupe: stackoverflow.com/questions/20922/do-you-comment-your-code |
|
Oct 28 |
comment |
Should I use comments in code, liberally? Hmm. It's good to write code that is clear enough in what it does that it doesn't need comments to explain what it's doing. But I find that comments can often be critical in explaining why the code is doing what it is. |
|
Oct 28 |
comment |
Should I use comments in code, liberally? Not exactly as I'd put it: I generally refer to what you call the "WHAT" as the "WHY"...it's usually easy to trace through exactly what the code is doing, but it can be more difficult to figure out why they're doing it. Nevertheless, an easy +1 for the notion. |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? @David Thornley: yep...sometimes overly simple questions can look like trick questions...I try to get a feel for what the candidate is thinking and if they look like they're wondering what the catch is, then I just reassure them that it's supposed to be as simple as they are thinking. |
|
Oct 28 |
comment |
Are Git or SVN coming with a memory footprint? @Ether: Just because other questions are in the wrong spot, doesn't mean this one should be. I agree that having all the questions in the same spot would be ideal...but I think the other ones should go, too. However, the underlying point is well taken...that the existence of the majority of these questions on SO, rather than SF, implies that I may well be in the minority in my opinion about which site is better suited to these questions. |
|
Oct 28 |
comment |
Are Git or SVN coming with a memory footprint? @Adergaard: not trying to be hard on you...nor make make SO an elitist place. Rather I'm trying to improve both SO and SF. The question itself is a good one...one that I'm guessing will probably be useful to several people. But, despite being answerable by several people here, it isn't actually directly related to the problems of programming...while it is very directly related to the issues that are handled by ServerFault. If I were searching for this type of thing in general, SF is where I would go...so I think that's where the question should be. |
|
Oct 28 |
comment |
Are Git or SVN coming with a memory footprint? I don't know of any programmers who don't breathe. That doesn't mean that air-related questions should be considered relevant. This belongs on serverfault. |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? @David: exactly so. It's essentially a preface to the interview, to see if the person is worth actually speaking to at all. If they do it easily, great...2 minutes gone. If they can't do it, there's no sense in spending any further effort. |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? Come on! I'm all for trying to make an interview low pressure, and can understand if someone freezes up on some things...but if a candidate can't do FizzBuzz in his/her sleep, they're not worth spending time on. |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? And how is FizzBuzz theoretical nonsense? It's just a simple application, with very clear parameters. If they can't write FizzBuzz, there is simply no hope that they will be able to write anything of value. |
|
Oct 28 |
comment |
Should entry level programmers be able to answer FizzBuzz? "Many programmers are self-taught and have no idea what this FizzBuzz stuff is, but they can write applications that work." What kind of useful application could they possibly write that is more simple than FizzBuzz? You're not thinking that the person is being asked to "Write FizzBuzz" without being told what it is, are you? |
|
Oct 26 |
comment |
PHP what is wrong with the syntax of this code? Can't say that I like the "if(x) return false else return true" type construction, when you could just use "return !x". Nevertheless, this gets +1 for actually answering the original question of what was wrong with query (rather than just explaining a different way to do it.) |
|
Oct 26 |
revised |
PHP what is wrong with the syntax of this code? edited body |
|
Oct 22 |
revised |
Is it possible for my image watermark to be read, altered or removed? Question clarity. |
|
Oct 21 |
comment |
Is it possible for my image watermark to be read, altered or removed? You're gaining downvotes on this question because it looks as though you are trying to get around copyright protections. If that's not the case you should explain the situation. Otherwise, you're likely to continue garnering downvotes until the question is closed. |
|
Oct 15 |
revised |
What is wrong with this auto-generated t-sql query? added 265 characters in body; deleted 22 characters in body |
|
Oct 15 |
comment |
What is wrong with this auto-generated t-sql query? @Josh: nope...that's not it...I can replace 'MyStoredProc' with any random string of characters (non-existing stored proc) and I'll still get the error...it's really a syntax error in the call. |
|
Oct 15 |
revised |
What is wrong with this auto-generated t-sql query? edited body |
|
Oct 15 |
comment |
What is wrong with this auto-generated t-sql query? Oh my goodness...that was a very silly thing for me to have missed... |
|
Oct 15 |
asked | What is wrong with this auto-generated t-sql query? |
|
Oct 15 |
comment |
Where Can I Suggest an Idea for others to Implement? @Gary: close. Fritos, Tab, and Mountain Dew. |
|
Oct 15 |
comment |
Where Can I Suggest an Idea for others to Implement? What's with all the right parens? |
|
Oct 14 |
comment |
Worst UI You’ve Ever Used @Alex: I did too. I kept thinking, "well, once I get used to it..." But between that, constant crashes, counterintuitive naming schemes (layers are not what you would think, but are similar enough to confuse you mightily), it just wasn't worth it. And I tried, oh god, did I try, to be productive with it. |
|
Oct 14 |
answered | Is it possible to add an interface to a strongly typed DataSet in .NET? |
|
Oct 14 |
asked | Is it possible to add an interface to a strongly typed DataSet in .NET? |
|
Oct 9 |
revised |
Is it possible to coalesce string and DBNull in C#? added 1 characters in body |
|
Oct 9 |
revised |
Is it possible to coalesce string and DBNull in C#? added 198 characters in body |
|
Oct 9 |
asked | Is it possible to coalesce string and DBNull in C#? |
