Tagged Questions

15
votes
20answers
928 views

What comes next after “Learning Perl”?

I decided to learn Perl after realizing that most of my bash scripts were getting rather unwieldy in their current form and would become a maintenance nightmare if I continued down …
4
votes
5answers
167 views

How do you balance fun feature creep with time constraints?

I enjoy programming, usually. Tedious stuff is easy to get done as quickly and correctly as possible so I can get through it and not have to see it again. But a lot of my coding …
3
votes
5answers
623 views

SQLDataReader dispose?

I'm working with legacy code here and there are many instances of SQLDataReader that are never closed or disposed. The connection is closed but, I am not sure if it is necessary to …
3
votes
4answers
155 views

Can you recommend a MySQL Book for an “intermediate” developer?

I'm a web developer looking to improve my MySQL skillset. Basic CRUD, joins, etc are all pretty par for the course; I'm looking to learn more about efficiency, avoiding bottlenecks …
2
votes
7answers
91 views

way to the intermediate level

Hi guys, I've got a question related to the practical learning of programming skill. I'm acquainted with basic programming stuff, know syntax and some concepts of several languag …
2
votes
4answers
666 views

CodeReview: Tiny Encryption Algorithm for arbitrary sized data

The TEA is a very simple encryption algorithm requiring little time and space - perfect for embedded systems. There are extensions to it, and every version has its flaws (WEP was …
0
votes
5answers
213 views

Projects for C++ Beginner/Intermediate?

Hello everyone! I really want to learn more about C++. I know the basics, and I know the concepts, and I have even been able to create C++ projects myself, but my problem is being …
0
votes
1answer
72 views

Retrieve row order from DataGrid 1.0

I am working a legacy app which is .net 1.1 and I need to retrieve the rows in a datagrid post sort (by clicking on column header). This sounded like an easy task however, the answ …
0
votes
1answer
246 views

gfortran: how to control output directory for .mod files

Is there is a way to put .mod files, generated by gfortran (GCC), into a separate output directory? I know how to place object files or other output with the -o flag as in: gfortr …