Presumably you read Less Wrong because you're interested in thinking better.
If so, you might be interested in another opportunity to improve the quality of your thinking: learn to code.
Like nothing else, coding forces you to identify flaws in your thinking. If your thinking is flawed, your program won't work, except by accident. There's no other discipline quite like this. If you're a mathematician or physicist and you solve a problem wrong, your paper won't tell you. Computer programmers have to measure their thinking against the gold standard of correctness constantly. The process of uncovering and fixing flaws in a program, usually called "debugging", typically takes up the majority of the time spent on software projects.
But this is only the beginning. You've probably heard something like "there are some problems that humans are good at and some problems that computers are good at". This is true. And once you learn to code, you'll be able to exploit computers to solve the problems they are good at. Having a computer to write software with is like having a hi-tech mental exoskeleton that lets your mind run harder and jump higher. Want to know what the second most common letter for an English word to end in is? That's a 15 line script. Tired of balancing chemical equations for your homework? Automate it.
Two more benefits that have less to do with thinking better:
- Employment. You probably don't need a computer science degree. I know of two Less Wrong users who learned to program after college and got jobs at Silicon Valley startups with just a project or two on their resume. (MBlume and FrankAdamek.) See Advice on Getting a Software Job by Tom McCabe for more on this possibility.
- Productivity software. Writing your own is much nicer than using stuff made by other people in my experience. The reason there are so many to-do list applications is because everyone's needs are different. If you use the terminal as your interface, it doesn't take much effort to write this stuff; you'll spend most of your time figuring out what you want it to do. (Terminal + cron on Linux with JSON log files has worked great for my needs.)
Having enough coding knowledge to be dangerous may take persistence. If you tried and failed in the past, you probably either got stuck and gave up because there was no one to help you, or you just didn't keep at it.
I've take two different introductory programming classes now to meet college requirements. The students in both seemed substantially less intelligent to me than Less Wrong users, and most were successful in learning to program. So based on the fact that you are reading this, I am pretty darn sure you have the necessary level of mental ability.
Starting Out
I recommend trying one of these interactive tutorials right now to get a quick feel for what programming is like.
After you do that, here are some freely available materials for studying programming:
- Learn Python the Hard Way. I like Zed's philosophy of having you type a lot of code, and apparently I'm not the only one. (Other books in the Hard Way series.)
- Eloquent JavaScript. No installation needed for this one, and the exercises are nicely interspersed with the text.
- Think Python. More of a computer science focus. ("Computer science" refers to more abstract, less applied aspects of programming.)
- Codecademy (uses JavaScript). Makes use of gamification-type incentives. Just don't lose sight of the fact that programming can be fun without them.
- Hackety Hack (uses Ruby). Might be especially good for younger folks.
- How to Design Programs. This book uses an elegant, quirky, somewhat impractical language called Scheme, and emphasizes a disciplined approach to programming. Maybe that will appeal to you. Structure and Interpretation of Computer Programs is a tougher, more computer science heavy book that also uses Scheme. You should probably have a good understanding of programming with recursive functions before tackling it.
Here's a discussion on Less Wrong about what the best programming language to start with is.
If you're having a hard time getting something up and running, that's a system administration challenge, not a programming one. Everyone hates system administration I think, except maybe system administrators. Keep calm, put your error message into Google, get help on a relevant IRC channel, etc.
Once you've got the basics, a good way to proceed is to decide on something you want to write and try to write it. If you don't know how to get started, start making Google searches. Soon you'll figure out the sort of libraries/frameworks people use to write your kind of program.
At first you may just be aping what others do. For example, if you want to learn something called "bleh", searching on Google for "bleh tutorial" is a great way to start. Finding a working program and modifying it to see out how it changes is another good option. Soon you'll graduate to appropriating sample code from documentation. As you write more code and see more of the software landscape, you'll be better prepared to craft original approaches to writing software.
See also: On the Fence? Major in CS, Teach Yourself Programming in 10 Years, Computer Science and Programming: Links and Resources.
Great post.
Coding doesn't directly improve rational thinking, but it improves logical thinking, because it is basically a generalized approach to problem solving. It is also a skill that will lead to a much better understanding of topics like game theory and Friendly AI, and it seems pretty obvious to me that in the future, more and more interesting and rewarding jobs will require coding skills. There was a time when secretaries had to use pen and paper. Then they had to learn how to use a typewriter. Then they had to learn how to use MS Word and Outlook. Today some of them need to write Excel scripts. Secretaries.
So if you're not a coder yet, and don't have any specific reason not to spend a considerable amount of time and effort to learn how to code, I strongly urge you to do so.
That said, I disagree with the choice of programming languages to start with. In general, for someone with no coding experience and no inherent affinity for working under artificial constraints, I suggest starting with a scripting language like Lua instead of a full-blown programming language. Or if you play PC games, see if maybe for some of your favourite ones there exist modding tools with an own script language, as is often the case with strategy games. You won't learn all that much about actual programming, but the impact on your logical thinking should be similar and you will probably be more motivated as well.
If you insist on learning a real language, don't start with a weakly typed, high level, or interpreter language (Python, Java, Objective C, BASIC, Javascript, C#, etc). I also can't advocate Ruby as a beginner language because of its syntax.
What I can advocate is Ada (more or less an improved version of Pascal), a language that will not only lead to a deeper understanding of programming logic, but also automatically teaches good programming practices. For example, the command "assign the value 0 to the variable x" is written as "x := 0", while in many other languages the same thing is written as "x = 0", which creates the illusion of equivalence with the mathematical expression "x = 0"; something that many people new to coding struggle with.
Do not learn C. I repeat: Do Not Learn C.
If you're absolutely sure your first language has to be one that is currently widely used in the industry, I can reluctantly recommend C++, but only if you're really, really sure about this. Better to start with Ada, then switch to C++.
Why are people down voting this and other comments? They are on topic and are well and persuasively written. People might disagree but surely replying is a better way of doing that than voting down?