Posts

Showing posts from March, 2025

Underwhelming VS Code Tips Video of Potential Use to You

Image
Thank you Mayur font ligiatures editor formatting multiple cursors rainbow csv live preview (see your HTML/CSS rendered quickly) httpyac (API - do GET/PUT stuff within VS Code for quick debug/dev) bookmarks pdf diagrams code runner

A Critique of Jason Fedin's Course on Udemy

Image
It's a survey of everything. That may be okay. It's a lot of work and difficult to convey the concepts for sure. But, if it were me, with his store of knowledge, I'd approach it as : here is a complex project I accomplished and these are the advanced C concepts that were needed to make it successful. Thoughts?

You Want VS Code to Collapse *ALL* (Comments and Functions)

Then, this is what your keybindings.json needs to contain (highlighted bit): [     {         "key" : "ctrl+alt+/" ,         "command" : "workbench.action.editorLayoutSingle"     },     {         "key": "ctrl+alt+shift+f",         "command": "editor.foldAll",         "when": "editorTextFocus"     } ]