shrijantripathi.com.npWorking with Different Javascript applications with Docker and NGINXIn web development, you might often find a scenario where you need to work with different Javascript applications together, whether backend frontend services or all frontend services. If you are running backend and frontend service then you can run t...Aug 25, 2023·4 min read
shrijantripathi.com.npFirst Look at Go Context -- (From Draft)Go Context use context to gather additional information about the environment they're being executed in. lets get into it :) package main import "context" import "fmt" func doSomething(ctx context.Context){ fmt.Println("Doing something", ctx)...Jun 14, 2023·7 min read
shrijantripathi.com.npTrying out Shadcn/UI for the first timeI was frustrated when I saw a lot of Tailwind CSS classes in my JSX code. I love Tailwind CSS, but it can be a bit verbose. I recently learned about shadcn/ui, a collection of Tailwind CSS components that can be used to create your own component libr...May 26, 2023·3 min read
shrijantripathi.com.npLearning Python as Javascript Developer [Part 1]This probably will be a series of learning python as a Javascript developer. I can say that I know a few concepts of programming and I have been programming for more than 4 years in different programming languages mostly with JavaScript. I will be p...Mar 10, 2022·3 min read
shrijantripathi.com.npUsing Node CLI and REPLCLI stands for command-line interface and REPL stands for Read Eval Print and Loop. Almost every programming language/environment or even framework provides REPL to play around with the features available. In this article, we will be using NodeJs RE...Feb 27, 2022·4 min read