Category: programming languages
Sometimes you just want to show some links on the home page of blog but not other pages, then the following trick is useful. First of all, you can …
At .NET 4.0 or .NET 4.5, you can write simple Parallel For Loop, which is useful if you have SIMD (Single Instruction Multiple Data). Instead of hard-coded threads, putting …
Code Review is very important, because it will help to get rid of those low quality code, which may not be easily identified. The low quality code may pass …
In wordpress pages/posts, there is a comment form that allows users to post comments. The API for this is comment_form(), which can be found in theme template file comments.php. …
You have a two dimensional data and want to plot it over the X-Y axes so based on the visualisation, you can spot any potential errors. In Python, with …