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.
There is also the irrational/sloppy reductionism where you mistakenly believe that something irreducible is reducible rather than illusionary. E.g. you can believe in some absolute truth, because you feel that there is absolute truth, and you are 'reductionist' as in ideology, and so have to believe that absolute truth is reducible (belief in a verbal statement). Whereas a reductionist may think whenever absolute truth can be reduced to something more basic, and see no way of doing that, and thus declare truth relative and illusionary (so that the only the feeling of absolute truth is reducible to interactions between neurons). edit: and an anti-reductionist would take the feeling that there is absolute truth, proclaim that there really is absolute truth, see no way to reduce absolute truth to anything more basic, and then proclaim that reductionism is false.
Ultimately two latter things are the only internally sound approaches, while first is not coherent.
edit: actually, it's best reworded with soul example. Reductionist feels that he has soul, doesn't see a way to reduce soul to e.g. elementary math (and sees impossibility of such reduction), and claims that feeling of soul is some sort of illusion (and seeks a way to reduce the feeling of soul). That is internally consistent.
The anti-reductionist feels that he has soul, proclaims that soul really exists, doesn't see a way to reduce soul to e.g. elementary math, doesn't buy into the feeling being an illusion, proclaims that reductionism is false and the soul is out of this world or something. This is also internally consistent.
The incoherent reductionist feels that he has soul, proclaims that soul really exists, proclaims that soul absolutely must be reducible to elementary math (while not really having reduced it to elementary math or even seen any way to), and doesn't notice that it would suffice to reduce the feeling of soul. That is just sloppy.