Anna wrote:
hybrid wrote:
So, is anyone here a coder? I assume there are lots of them here. If so what kind of stuff do you program?
I mainly program games and 3D engines in C++ using SDL and OpenGL (my stuff compiles both for Linux and Windows). Too bad I rarely actually finish a game.
I code in Python. It's really easy to learn and use! I mostly do little scripts as utilities for things I'm interested in...
I'm learning C programming in school now... It seems so primitive.
Don't knock C.
My current suite of languages includes Awk, Python, and C.
Awk is for me the most natural language for me to use. I use it when I'm doing relatively simple things with streamed data.
Python is extremely powerful, and I use it for research programming. It's much faster to program than something like C. However, it is sooooooo sssssllllllloooooowwww to run, especially when you're working in very high numbers of algorithmic passes. That's where...
C shines. I actually do things that get into the trillions of algorithmic passes. In my applications, C runs 70 to 80 times faster for the same functionality. If you're talking about something that runs in seconds, it doesn't make much difference. Some of my programs can run for days, and those are the times when C can make a big difference.