You are here |
gregtatum.com | ||
| | | |
evanhahn.com
|
|
| | | | Show something interactive when possible, but don't require JavaScript. | |
| | | |
blog.nuculabs.de
|
|
| | | | The Silver Searcher is a code searching tool, it searches your entire code base in a very fast and efficient manner and it supports regex. I often use it when my IDE's search capabilities are slow or can't find what I'm looking for. You don't have to use it exclusively, you can combine it with your IDE's search capabilities to do your job faster, and most of the time it is also much easier to search using ag. | |
| | | |
www.aymericlamboley.fr
|
|
| | | | ||
| | | |
nurkiewicz.com
|
|
| | 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. |