Dilawar's Blog

watch -n 1 /dev/null | moved to https://dilawars.notion.site

22 Nov 2020
20 Nov 2020
18 Nov 2020
12 Nov 2020

argmax in pure Python

Python does not have an inbuilt argmax function. numpy does. Here is one implementation. def argmax(ls : list) -> int: _m, _mi = -math.inf, …
10 Nov 2020
09 Nov 2020
08 Nov 2020
03 Nov 2020
02 Nov 2020

Saving Blob to a file

Create an url from a Blob using createObjectUrl. Create an element with tag a and use the url generated above. Set properties such as …
01 Nov 2020

Awesome Vue : A personal list

To automatically create links from raw url and email links in v-html directive, use vue-linkify. Create a custom directory such as …