Sumit Mazumdarsumitmazumdar.in·Jun 21, 2024SPA Deployment on Vercel: Troubleshooting 404 ErrorsRecently I decided to deploy my portfolio on Vercel, the deployment was smooth and the website was live within minutes. However, there was a catch, whenever I try to refresh the the page on the portfolio other than the homepage it shows a 404 error. ...179 reads#refresh
Alexandr Gakhovmumr-home.hashnode.dev·Nov 26, 2022Blender Python addon devMy first project is making addon in Blender. Qiuck review. There are tree major Blender custom classes: Property / Operation / UI. Blender Properties => reg as Class and save in Scene object UI panel( Blender class), read /write context scene proper...58 readsBlender
Ubuntu Tangubuntumeta.hashnode.dev·Aug 13, 2022how to hot reload for golang web applicationThere are tons of ways to hot reload a golang web application or golang program. I choose gin to do the hot reload. Firstly install the gin in GOPATH/bin: go get github.com/codegangsta/gin Basic usage If we run a gin( the same name, but it is the we...golang