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
Following an interesting discussion on programming.dev after the last article, I thought it would be good to add some extra notes regarding Webfinger. Webfinger provides a standard API for discovering the user profile details and avatar from the username, no matter the software running on the node. The standard Webfinger endpoint is /.well-known/webfinger. It must always be queried with at least the resource. Some examples using my account on Lemmy (programming.| Ishan Das Sharma
Quickly and easily generate a key pair for passwordless connection. Also works perfect as git deploy keys! Generate the keys DO NOT DO THIS AS ROOT Run the command to generate the keys 1 $ ssh-keygen -P "" -t rsa -b 4096 -m pem -f my-key-pair -b flag sets the bits, 4096 is recommended -m pem is needed to generate a file in RSA Private Key format, not in OpenSSH Private Key format -f specifies the output key pair replace my-key-pair with the name of your key pair (preferably deploy_key or acce...| Ishan Das Sharma
Invoking jq | jqlang.github.io