Search Results

0
votes

Starting CompSci Uni next week, what’s the best advice you can muster?

Assuming you're looking at software development for your future, take some extra time to think about how to represent problems and solutions in code, especially between different languages and para …
6
votes

What is your longest-held programming assumption that turned out to be incorrect?

That I should always optimize my code. That's not to say I shouldn't think through it before I write it, but that I should think hard about how to squeeze every bit of performance out of each stat …
0
votes

Which is preferred: (var==null) or (null==var)

I prefer to use (var==null) myself. It makes more sense to me, since I'm checking "if var is null". The other order comes across when I read it as "if null is var", which never makes sense. I al …
0
votes

MySQL or SQL Server better for an Enterprise application?

It will depend on your application's needs. I'm not especially well researched on the differences between the various SQL engines, but as far as I know, MySQL is faster for SELECT queries (if you …
1
vote

Starting age for a career in software - fresh out of school?

Whether you take the job or not will probably have little impact on your career later. What will likely benefit you either way would be to build up a portfolio of your work in your spare time. Ex …
4
votes

What is the “Quickest” Programming Language (and why)?

It depends on what you're currently most familiar/fluent in. For me, it would currently be C# or VB.NET because that's what I use every day at work and am currently most used to. In a few months, …
3
votes

Should I get Visual Studio 2008 or skip it for 2010 beta?

I would opt for 2008 over 2010 beta. The former has a service pack released, and several other hotfixes, so a lot of the kinks have been worked out. The latter is at beta quality (which means the …