Top 10 programming languages

Perhaps not that useful, but I decided to make my personal top 10 favorite programming languages.

1 C

Still my number 1. I don’t think any high level language gives you so much control as C, and it’s super fast. Kind of the Swiss army knife of programming. Dangerous to use, but that’s what keeps you alert. Having started with assembly there’s still a weird attraction to pointers and direct bit manipulation.

2 Python

Using python makes programming so much faster and easier. It’s like working pseudo code. Despite it’s popularity still underrated. Combined with C (in case you need speed or low-level access) there’s no need for any other programming language. Standard Python is surprisingly fast for an interpreted language. For more speed you can always compile (pypy) or combine with C.
Read More