Vscode Integrated Terminal closes immediately upon opening
I started facing this issue suddenly after vscode upgrades and resolved the issue by following approach. Follow these instruction one by one until it resolves the issue. You may have to restart your vscode multiple times during the process. Upgrade vscode Point $SHELL to correct shell pathFind which shell you have, echo $SHELL mine is … Continue reading “Vscode Integrated Terminal closes immediately upon opening” →
How I upgraded antd from antd@4.19.0 to antd@4.20.0
A walkthrough on how we can upgrade from antd from 4.19.0 to 4.20.0 version
Creating a field type to store amount using Typeorm and NestJS
A guide on how to resolve TypeORM error working with Postgres database and NestJS Framework
Visual studio code inlay hints for Rust development
Open Settings.json and enter the following. I am using Darcula theme so I am wrapping colorCustomizations inside that key. “workbench.colorCustomizations”: { [Darcula]: { “editorInlayHint.typeForeground”: “#525252”, “editorInlayHint.typeBackground”: “#2D2D2D” }, } “[rust]”: { “editor.defaultFormatter”: “rust-lang.rust-analyzer” // “editor.inlayHints.enabled”: “offUnlessPressed” }, “rust-analyzer.inlayHints.bindingModeHints.enable”: false, “rust-analyzer.inlayHints.closureReturnTypeHints.enable”: “never”, “rust-analyzer.inlayHints.typeHints.enable”: false, “rust-analyzer.inlayHints.parameterHints.enable”: false, This is how it looks after inlay hints setting change. … Continue reading “Visual studio code inlay hints for Rust development” →
Switch to visual studio code settings editor mode
A guide on how to switch to visual studio code settings editor mode for fine granular level customization on VSC settings.
[Solved] Next.js and next-i18next translation not working
After deploying to Vercel, next.js and next-i18next translation not working as expected. Solved it by update localePath to static locale files. Please see the article to see code snippet.