Skip to content

Instantly share code, notes, and snippets.

@vedantcj
vedantcj / VSCode setup for basic writing
Last active November 22, 2019 00:19
Most basic writing and documentation tasks in VS Code can be pimped up with MD and some PlantUML
Extensions:
1. Paste images straight into Markdown and have VSCode handle the dirty work. https://marketplace.visualstudio.com/items?itemName=mushan.vscode-paste-image
2. PlantUML for drawing out small visuals as you go. Invaluable. (PlantUML reference: http://plantuml.com/) https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml
3. https://marketplace.visualstudio.com/items?itemName=shd101wyy.markdown-preview-enhanced
4. Save as PDF using Puppeteer. The following at the top of the file:
---
puppeteer:
landscape: false
format: "A4"
@vedantcj
vedantcj / config
Last active November 22, 2019 01:35
SSH config to not get timed out in ~/.ssh/config
ServerAliveInterval 60
ServerAliveCountMax 30