This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When terminal opens up: | |
- Process creation | |
- Intiialization scripts (.zshrc, .bashrc, Powershell profile) | |
- conda init (activating base by default) | |
- Shell integration script | |
- Fails silently | |
- Powershell execution is disabled for windows | |
- Automatic shell integration may not be working | |
- Disables this script (based on shell config) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import json | |
from collections import Counter | |
from nltk.corpus import stopwords | |
from nltk import pos_tag | |
from spellchecker import SpellChecker | |
# List of triagers whose comments will be included in the analysis | |
TRIAGERS = ["karrtikr","karthiknadig","paulacamargo25","eleanorjboyd", "brettcannon", "ericsnowcurrently", "DonJayamanne"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "karrtikr-web-sample", | |
"displayName": "karrtikr-web-sample", | |
"description": "Kartiks HelloWorld example for VS Code in the browser", | |
"version": "0.0.2", | |
"publisher": "karrtikr", | |
"private": true, | |
"license": "MIT", | |
"repository": "https://github.com/microsoft/vscode-extension-samples/helloworld-web-sample", | |
"engines": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "popopo" | |
version = "0.1.0" | |
description = "" | |
authors = [""] | |
[tool.poetry.dependencies] | |
python = "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "poetry@2-tutorial-project" | |
version = "0.1.0" | |
description = "" | |
authors = ["Kartik Raj <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.5" | |
[tool.poetry.dev-dependencies] |