MD. Nazmul Alamalam-nazmul.hashnode.dev·Mar 24, 2023Recover from read-only file systemWe have faced system "read-only" issue after unusual power-off the VM. Issue syndrome. The VM has suddenly gone read-only, all services have crashed and giving errors when pressing tab to complete file name as: "bash: cannot create temp file for her...Linux
Abir Palabirpal.hashnode.dev·Feb 21, 2023Readonly (readonly) property in Typescripttype User = { readonly _id: string; name: string; email: string; isActive: boolean; hobbies: string; }; Here we have declared a User type that has properties like _id (readonly) - readonly _id: string; name - name: string; email - emai...TypeScript