How I built a post recommendation feature for my blog using text embeddings, GPT-4 and ChromaDB with LangChain| Ishan Das Sharma
Every system has a hidden, "natural" structure of how data flows through it. Learn how to find it.| Ishan Das Sharma
Many people who know me ask me why I haven’t got a personal website or blog. I often don’t know what to tell them. It’s certainly not for a lack of trying. Here’s one of the very first blogs I started to help my 7th grade classmates learn programming which they weren’t able to understand in school: I fumbled around various other blogs, but never managed to be able to post consistently.| 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