1
vote
As a programmer how much are you expected to know outside of programming?
Well, since a programmer's primary tool is his computer, I think it's fair to assume some expertise with it. Most of those sorts of things you've described are difficult for someone unfamiliar wit …
18
votes
Ethics of using a “fringe” language for your job?
I think that you're responsible to decide on the language that's best suited for the job. That includes an objective evaluation of the merits of the language and framework, it includes your own pe …
0
votes
How can I prevent my web content from being repackaged by another site
You could limit the amount of content that one user (IP address, presumably) is allowed to receive through your web interface, similar to how Google Books restricts the amount of pages you can view …
13
votes
Why would you choose a fixed-width design?
It's already a pain to make a website that renders correctly across all popular browsers; if you also want it to render correctly at all text sizes, it's quite a lot of work. A lot of web develope …
6
votes
Is it bad practice to use LINQ to loop over and perform actions rather than just select data?
List<T> has a ForEach() method that is designed for this.
…
0
votes
What do you think about using the Project Euler website as a candidate profiling tool?
As you know, some of the more difficult Euler problems require some mathematics that not all CS majors will remember. If you are careful to select problems that have a math/programming ratio refle …
1
vote
Next Step for a Self-Taught Developer?
I suggest you find some things to work on that really push your abilities to the limit. Perhaps you can find some open-source projects to work on that are related to your interests, or if more su …
1
vote
Tips on becoming a better Software Engineer
If you play a lot of long, thoughtful chess games (not blitz) against challenging opponents, almost anyone will improve at chess, just from playing.
Likewise, if you write software that pre …
8
votes
Why is there so much assumption towards badly written code?
This question seems to betray a latent frustration on the part of the questioner that probably reflects insecurity over his bad coding standards and practices.
Perhaps he should refactor hi …
0
votes
Do you compile and run code very often or write large code pieces at once?
Every time I write a piece of code I can test, I test it right away, so I compile and run every 5 to 20 minutes depending on how well I can break down the task that I'm doing.
That said, I …
7
votes
Absolutely positioning everything on a website?
Absolute positioning is generally pretty bad. Rarely do you want your website to look the same windowed on someone's 1024x768 laptop and fullscreen on their 1920x1200 desktop. Also, good luck rec …
1
vote
Is there any reason to write terse code in Java/C#/C++?
Barring all other concerns, shorter code is better, since you can see more of it at once.
…
19
votes
1
vote
How do you deal with new features of C# so that they don’t lead to poorly written code?
I think the only really justified issue in your bunch is overuse of extension methods. When important functionality is only accessible through extension methods, sometimes it's hard for everyone …
3
votes
Should C# introduce a syntactic short-hand for IEnumerable<T>?
Obviously C# can't do this now, but if I were starting C# from scratch, I'd be tempted to make T[] the shorthand for IEnumerable<T>.
…
