Skip to content

Instantly share code, notes, and snippets.

View karrtikr's full-sized avatar

Kartik Raj karrtikr

View GitHub Profile
@karrtikr
karrtikr / notes.txt
Created March 26, 2024 19:44
Terminal activation notes
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)
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"]
@karrtikr
karrtikr / `package.json`
Created September 27, 2022 23:15
karrtikr extension
{
"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": {
[tool.poetry]
name = "popopo"
version = "0.1.0"
description = ""
authors = [""]
[tool.poetry.dependencies]
python = "*"
@karrtikr
karrtikr / pyproject.toml
Created March 24, 2021 18:21
pyproject.toml
[tool.poetry]
name = "poetry@2-tutorial-project"
version = "0.1.0"
description = ""
authors = ["Kartik Raj <karraj@microsoft.com>"]
[tool.poetry.dependencies]
python = "^3.5"
[tool.poetry.dev-dependencies]