Editor’s Note Welcome to the inaugural issue of my newsletter! Launching this newsletter has been a long time coming. While my blog has been the primary platform for sharing my thoughts and polished work, I’ve held off on creating a newsletter until now. In this space, I aim to offer you a closer look behind the scenes, sharing the journey of how certain projects and transitions came to life. For instance, the process of building the interactive jq guide was both exhilarating and challeng...| Ishan Das Sharma
Every system has a hidden, "natural" structure of how data flows through it. Learn how to find it.| Ishan Das Sharma
This is a legacy script from when I was 13 years old. Please don’t give me a hard time 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 #!/bin/bash function speedTest { # ripped off from http://freevps.us/downloads/bench.sh local the_speed=$( wget -O /dev/null "http://$1" 2>&1 | awk '/\/dev\/null/ {speed = $3 $4} END {gsub(/\(|\)/,"",speed); print speed}') echo $the_speed } echo "jsTest.| Ishan Das Sharma
Learn how to search, query, and modify JSON data with 25 interactive jq examples and explanations| Ishan Das Sharma