Category: implementation
We all know that we can have tag target=”_blank” to explicitly open a document in new window: <a href="document.html" target="_blank">Open in New Window</a> This is OK in HTML4.01 but …
I have created a link shortener which can be found at this URL: https://rot47.net/_url/ and to create a link, use the form in this URL: https://rot47.net/_url/add.php To help users …
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 …
The numpy package is a powerful toolkit for Python. With numpy you can easily do matrix (like Matlab), plot and do other data/numbers/statistics. Suppose you have a two dimensional …
In software engineering, the version number usually comprises of 4 integers separated by dots. For example, 1.0.0.2. Version comparison is usually carried out from left most to the right …