Search Results

0
votes

Which programming language to learn now?

I'd recommend Python. Both do well on multiple platforms, and Python has a few tools like Psyco and Shedskin that can increase speed dramatically. Python's also very closely coupled with C, which c …
0
votes

What’s the first program you wrote that you were proud of?

I wrote a simple slot-machine in Python. It started out with selecting 3 random numbers and checking to see if they matched, and went all the way to up to 5-way checking on 9 numbers with a bankrol …
2
votes

I’ve heard of DRY and KISS, what other maxims do I need?

"Do the simplest thing that can possibly work." It gives you a good place to start, and has the side effect of encouraging an end product that is both effective and simple to explain, which …
0
votes

Which is better apply two conditions in nested If or using single with And ?

In my opinion, you should use the style that makes the most sense for what you're testing for. If the two are closely coupled, you could test for both on the same line without a loss of clarity. Pa …
1
vote

Which language should students start with?

I suggest Python. It's quick, presents crucial ideas in simple ways, and is fairly good at being multi-paradigm. Multi-paradigm in particular could be important, as it gives a good platform …
0
votes

What is the single hardest programming skill or concept you have learned?

Python tuples. I kid you not. There's been a long running holy war, with fanatical jerks on both sides, as to whether tuples are read-only lists. Well, they are. But that is …
0
votes

What was the biggest lesson you learned in your career as an IT professional?

Communicate to the person who is in front of you at the moment. If you don't know their level of knowledge and preferred communication style, find out and take notes. …
1
vote

What do you consider the 1st principle(s) of programming?

There are only three things in the universe: data, containers for data, and tools that either put data in a container, take data out of a container, or change the data in a container, and they over …
2
votes

Which programming language requires the most different mindset from C++?

If you're looking for something practical, you may want to go with a functional language (Scheme) or a more dynamic environment (Python.) On the other hand, if you're out for pure enrichmen …
1
vote

“Programming” for a 9 year old

A fairly fun "virtual robot" language is Guido van Robot, available at http://gvr.sourceforge.net/ . It's syntax is Python-inspired, but it …
1
vote

What kind of programming method do you prefer? Success vs. Freedom

"Freedom" in this case just seems like an emotionally positive word tied to an unpleasant concept. It could just as easily be replaced by "stubbornness" or "carelessness." Even the question itself …
2
votes

Do programmers read books? Or is the book industry dead?

Good programmers read good books. O'Reilly's "In a Nutshell" series sells very well, as do their "Learning XXXXX" series and the "Head First" books. Geared more towards beginners, Sams' "Teach Your …
2
votes

How do you program differently in dynamic languages?

Fast iterations make happier programmers, and they don't come any faster than an interactive interpreter. Good interpreter exploitation gives you sandbox, testing, and prototyping at the same time. …