Search Results

3
votes

How should CS/SE Students supplement their learning?

I agree with the other suggestions about things you can do outside your course. But it's also important to make the most of opportunities in your subjects. Some ideas: Don't just …
0
votes

How do you get non-technical folks to appreciate a non-UI problem?

I like the idea of Technical Debt, because it enables technical issues to be translated (albeit loosely) into money issues - …
28
votes

Is it worth learning BASH when I know Perl?

Bash epitomises the spirit of UNIX -- combining multiple simple tools to solve a more complex problem, usually using pipes to direct the output of one command to the input of the next. This is a s …
5
votes

What is the best book on CSS?

My two recommendations: The Zen of CSS Design; a fantastic demonstration of what's possible. …
1
vote

Developers’ Bill Of Rights

Sorry, it's not one "right", but if companies just did the stuff recommended in Peopleware, their developers wouldn' …
3
votes

Becoming a ninja developer

Find a mentor, or another programmer with a different programming background; meet regularly to review each other's code, discuss new things you've learned recently and projects you've been working …
0
votes

How to deal with an inept and self-centered programmer?

It's rare that a technical solution might help what is fundamentally a "people" problem, but I think it might in this case. It sounds like some (not all) of the concerns you have about him …
0
votes

What should students be taught first when first learning sorting algorithms?

If you want to teach the concept of sorting, then I believe you must teach at least two different ways of sorting -- otherwise the students will think that sorting is just about the one way you tau …
2
votes

What are some other generic http clients available?

cURL (a.k.a. libcurl). libcurl has bindings for about 40 different programming languages. …
5
votes

Linux Programming Book

Although you've specifically asked for an up-to-date book, I think it's worth mentioning Advanced Programming in the UNIX(R) Environment (2nd Edition). It was released in 2005, and is an update o …