Comment on: What programming language SHOULDN'T you learn?
3 30 Sep 2016 04:43 u/waylon531 in v/programmingComment on: What programming language SHOULDN'T you learn?
Javascript
Comment on: What programming language is good for a beginner?
I would recommend lua. It's a minimalist scripting language so it's easy to grasp and also really fast (compared to other scripting languages like python). It's the first language I learned; I learned it because a game I played let you mod the client with lua scripts. It's not as useful as a language like Java, but a good amount of games have modding systems that use lua and you can embed it really easily in more advanced languages like C.
Edit: If you want some theory about programming languages you can check out some introductory computer science lectures from MIT, like Structure and Interpretation of Computer Programs
Comment on: Places to go learn assembly?
Apparently you're right. However, these changes only crop up when you're writing compilers or operating systems.
Comment on: Places to go learn assembly?
The instruction set is specified in the specification for each architecture so all computers in the same architecture will have the same instruction set. This is why a single binary will work for both AMD and Intel computers.
Comment on: Places to go learn assembly?
The x86 assembly wikibook walks you through basic assembly.
Comment on: Places to go learn assembly?
All x86 computers have the same number of registers. It'd be better to emulate hardware instead of buying it anyways.
Comment on: Ran out of stuff to program.
Make an OS. There's tons of different things you can do in it and it's really easy to get a super barebones one up and running. The osdev wiki makes it really easy to start.
EDIT: The link is wiki.osdev.org
Comment on: Github disables repository for using the word "retard."
Have you heard of gitlab? It's basically an open source clone of github so you can host it yourself and actually have a good web interface.
Anything else that compiles to javascript