Skip to content

Instantly share code, notes, and snippets.

View rajinder-yadav's full-sized avatar

Rajinder Yadav rajinder-yadav

  • DevMentor.org Corp.
  • Toronto, Ontario, Canada
View GitHub Profile
ng set --global packageManager=yarn
@rajinder-yadav
rajinder-yadav / .editorconfig
Created February 14, 2017 05:15
My editorconfig config file
# EditorConfig is awesome: http://EditorConfig.org
# Configuration settings
# http://editorconfig.org/#file-format-details
# top-most EditorConfig file
root = true
indent_style = space
@rajinder-yadav
rajinder-yadav / vscode.config
Last active March 8, 2022 19:41
VSCode User settings
{
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": true,
"workbench.colorTheme": "Plastic",
// Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid'
"editor.cursorBlinking": "blink",
// Controls the cursor style, accepted values are 'block', 'block-outline', 'line', 'line-thin', 'underline' and 'underline-thin'
"editor.cursorStyle": "block",
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
@rajinder-yadav
rajinder-yadav / .astylerc
Created February 9, 2017 03:21
AStyle C++ code formatter configuration
{
"indentSize": 4,
"tabSize": 4,
"newLineCharacter": "\r\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
@rajinder-yadav
rajinder-yadav / .gitconfig
Last active July 28, 2021 05:13
Git configuration
[user]
name = Dev Guy
email = [email protected]
[core]
editor = vim
excludesfile = /Users/yadav/.gitignore_global
[color]
ui = auto
diff = auto
status = auto
@rajinder-yadav
rajinder-yadav / tsfmt.json
Last active September 19, 2018 03:18
TypeScript Formatter configuration
{
"baseIndentSize": 0,
"indentSize": 2,
"tabSize": 2,
"indentStyle": 2,
"newLineCharacter": "\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
@rajinder-yadav
rajinder-yadav / technical-writing.md
Last active June 10, 2024 17:19
Guide to technical writing.

Rules for Technical writing

Identify your audience, speak their level of vocabulary (technical, linguistics).

Identify the purpose of the written material, the objective.

The purpose of written text is to inform and educate. It should focus on two goals:

  1. Readability
  2. Comprehensibility