IPv6 only experiment

For long time was wondering whether I can shift to 100% IPv6 stack. Finally decided to give it a try. List of site which were evaluated. Category Name IPv6 Ready AntiVirus Macafee No AntiVirus Norton No AntiVirus QuickHeal No Astronomy IUCAA No Banking Axis Bank (Akamai) Yes Banking Axis Bank Netbanking No Banking HDFC Bank Yes Banking HDFC Bank Netbanking No Banking IDBI Bank Yes Banking IDBI Bank Netbanking No* Banking SBI Yes Banking SBI Netbanking Yes Blog Medium (CloudFlare) Yes Blog Wordpress No CDN CloudFlare Yes Cloud Hosting Amazon AWS No Cloud Hosting DigitalOcean Yes Cloud Hosting Heroku No Cloud Hosting Linode Yes Cloud Hosting Oracle Cloud Yes Cloud Infra Open Stack (CloudFlare) Yes Database DuckDB (CloudFlare) Yes Database MariaDB Yes Database MongoDB (CloudFront) Yes Database PostgreSQL Yes Database Sqlite Yes Development BitBucket Yes Development GitHub No Development GitLab Yes Development MDN a....

मे 31, 2022 · 3 min · 508 words · शंतनू

Random Color for iTerm Tabs

Add following in $HOME/.zshrc function color { case $1 in random) t=$((( RANDOM % 256 ) )) echo -e "\033]6;1;bg;red;brightness;${t}\a" t=$((( RANDOM % 256 ) )) echo -e "\033]6;1;bg;green;brightness;${t}\a" t=$((( RANDOM % 256 ) )) echo -e "\033]6;1;bg;blue;brightness;${t}\a" ;; esac } color random

जुलै 13, 2021 · 1 min · 43 words · शंतनू

Python packaging with cython

cython converts python code to C/C++ and creates compiled extensions. Generally this is used to speed up the execution, but one can also use it for protecting their python source code. Code structure package_tutorial +- setup.py +- README.md +- my_pkg +- __init__.py +- module_one.pyx +- module_two.pyx +- utils.pyx # __init__.py from . import utils from . import module_one from . import module_two # utils.py def add(a, b): return a+b # module_one....

एप्रिल 17, 2021 · 1 min · 170 words · शंतनू

Documentation

Importance of Documentation

ऑक्टोबर 9, 2016 · 1 min · 171 words · शंतनू

Front Door

जुलै 26, 2016 · 0 min · 0 words · शंतनू