[Solved] FFmpeg error while resizing video

I faced this error while trying to resize 2k video to 1080p. Command that gave error: Error received Solution: Explanation At somepoint of homebrew upgrade it updated some dependencies of ffmpeg and left it in unstable state by breaking symlinks. After re-installing tesseract whose symlink was broken got repaired (probably) linked again with proper path. … Continue reading “[Solved] FFmpeg error while resizing video”

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”

VScode shell

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”