How I built a post recommendation feature for my blog using text embeddings, GPT-4 and ChromaDB with LangChain| Ishan Das Sharma
Featured Photo by energepic.com I’ve had a love-hate relationship with Bootstrap for a long time. While I love how fast it lets me get going, I absolutely hate the cookie cutter vibe of most of the stuff that I end up making with it. Bootswatch is awesome, and I know that I could customize my theme with SASS variables, but that adds a build step, which is additional complexity that I want to avoid when I am making business/CRUD applications.| 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
Navigate to Repository > Settings > Secrets > New Repository Secret Set the name as SSH_PRIVATE_KEY Paste the contents of the key file 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 36 37 38 39 40 # .github/workflows/build.yaml name: Build and Deploy PROJECT_NAME on: push: branches: - main jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [14.| Ishan Das Sharma