Explore >> Select a destination


You are here

ntietz.com
| | akaptur.github.com
3.6 parsecs away

Travel
| | Last week at Hacker School I did a quick presentation on python bytecode and the dis module. The disassembler is a very powerful tool with a gentle ...
| | mustafa.page
4.0 parsecs away

Travel
| | Compiler Errors C compiler errors split into two main categories. Syntax Errors: something wrong with the syntax of the language itself. Semantic Errors: something wrong with the logic of the code, giving unexpected results. Syntax Errors Syntax errors are quite common regardless the programmer experience, we all sometimes make typos. For example instead of writing int to declare an integer, one may write it as imt and that will result in a syntax error during the compilation stage.
| | www.e4developer.com
5.0 parsecs away

Travel
| | The first language I used to write a small program was Pascal. Since then I have worked professionally with Java, JavaScript, Groovy and a few more. Currently...
| | nurkiewicz.com
61.2 parsecs away

Travel
| When choosing or learning a new programming language, type system should be your first question. How strict is that language when types don't really match? Will there be a conservative, slow and annoying compiler? Or maybe a fast feedback loop, often resulting in crashes at runtime? And also, is the language runtime trusting you know what you are doing, even if you don't? Or maybe it's babysitting you, making it hard to write fast, low-level code? Believe it or not, I just described static, dynamic, weak and strong typing.