Mark Baker

1,397
Reputation
116 views

Registered User

Name Mark Baker
Member for 1 year
Seen 2 days ago
Website
Location Southampton, UK
Age 32
Nov
25
awarded  Nice Answer
Sep
17
awarded  Yearling
Aug
17
comment What’s your most controversial programming opinion?
"What you have he can pick up in an instant" - Not necessarily. The ability to write good code is something that tends to come with experience, though some people pick it up quickly and some never seem to get there. The guy with the CS degree will certainly be able to pick up the languages and APIs you use in an instant, but there's no guarantee he'll ever be a good programmer. And he certainly won't become one overnight if he's not one now.
Aug
14
comment What’s your most controversial programming opinion?
I'd say if something is half as fast, it doesn't matter (in most cases) because you can always buy faster hardware. But a bad algorithm or bad data structure can make things thousands of times slower. If you really think performance doesn't matter you've obviously only ever done noddy programming.
Aug
14
comment What’s your most controversial programming opinion?
I think in a complicated algorithm comments saying things like "If we get here then either X or Y" help a lot with understanding how the code works; this is true however good the code is. Yes, if the code is good then someone reading the code can work out for themselves, but not instantly if it's a complicated algorithm. I also think you shouldn't need to read the code to work out how to use a function. Ideally just the name of the function and its arguments should be enough, but realistically that will often not be true and a comment can be very useful.
Jul
20
comment How does a system’s TCP/IP stack differentiate between multiple programs connecting to the same address and port?
why was this voted down? It's somewhat lacking in detail but it's not wrong and the link to wikipedia would be useful if it wasn't a rather confusing wikipedia page
Jun
11
comment How do you link to a specific version of a shared library in GCC
kastauyra: the versions are not, or at least cannot be assumed to be, binary compatible. So when you link it records the major version linked against in the binary: if you compile on the newer system it will require version 4 and not work on the old system. (Actually what it records is the soname, which is a string stored in the library file which conventionally but not necessarily is something "libcurl.so.3")
Jun
11
answered How do I add an init.d script into a .deb
Jun
7
awarded  Nice Answer