Search Results

1
vote

What are five things you hate about your favorite language?

Another vote for C++ here... still my favorite with a few close followers - C and Python. Here's my current hate list in no particular order: Plethora of integer types inherited from …
0
votes

Favorite (non-esoteric) Programming Language

When I really need to get something done, get it done NOW!, and not do it again any time soon, I will always fall back to shell+awk+sed or Perl. I don't really consider it programming, but it is ho …
3
votes

Why are Vi and Emacs popular ?

FWIW, I'll add another thumbs up for vi or Vim if you wish. Either editor is very powerful and a venerable favorite among seasoned programmers for a number of reasons: Not mous …
2
votes

What would it take for people to move away from C++?

My personal choice to use C++ (when I even have a choice) is because it is one of the only multi-purpose programming languages that is not interpreted and has enough "bells and whistles" to let me …
5
votes

What to do about open source ripoff?

It seems to me that they are violating the MIT License agreement unless they include your copyright statement. You did provide something like the following in your code right? …
1
vote

Do you use articles in your variable names?

I wobble back and forth on using this. I think that it depends on the ratio of C++ to Objective C in my projects at any given time. As for the basis and reasoning, Smalltalk popularized the notion …
0
votes

New Unix Account Shell Setup

get my SSH keys onto the machine and set up $HOME/.ssh/ chsh to either bash, ksh, or /bin/sh in that order of prefere …
1
vote

Measuring the security of code written by software developers

I don't think that access to tools is necessarily the problem. From the looks of your profile we are in a similar position. I am responsible for architecting fairly large client-server solutions. T …
4
votes

Using functional language concepts with OO - is there a language?

If you really want to delve into web application development with Python, then look at Django. You are better off using a MVC architecture …
0
votes

Class Design: Demeter vs. Connection Lifetimes

I would prefer the latter method. It sounds like your classes use the database connection as a conduit to the persistence layer. Making the caller pass in the database connection makes it clear tha …
4
votes

What were the most profound differences in your thought process from learning a new language?

C - pointers made me understand memory management methods and memory in general. I think that I learned more about writing very solid from doing a little soft embedded work than a …
0
votes

Linux stand alone executable generation

You might want to consider Perl as it is installed on most UNIX systems by default these days. It isn't much of a higher-level language IMHO but it is a little easier than writing C. I would grab …