Skip to content

Instantly share code, notes, and snippets.

View deepakn97's full-sized avatar

Deepak Nathani deepakn97

View GitHub Profile
@deepakn97
deepakn97 / keybindings.json
Last active December 24, 2024 17:34
VSCode/Cursor Keyboard Shortcuts
// Place your key bindings in this file to override the defaults
[
{
"key": "cmd+alt+shift+ctrl+p",
"command": "workbench.action.nextEditorInGroup",
"when": "neovim.init"
},
{
"key": "cmd+alt+shift+ctrl+o",
"command": "workbench.action.previousEditor",
@deepakn97
deepakn97 / settings.json
Last active December 24, 2024 17:45
VSCode/Cursor Settings
{
"editor.fontSize": 15,
"editor.fontFamily": "FiraCode Nerd Font Mono",
"editor.fontLigatures": true,
"editor.tabSize": 4,
"editor.cursorStyle": "line",
"editor.insertSpaces": true,
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.semanticHighlighting.enabled": true,
"editor.guides.bracketPairs": true,
import hashlib
import json
import csv
import random
import numpy as np
import glob
from collections import Counter, defaultdict
from scipy.stats import binom_test
from utils import process_sentence, load_taskmate_data_with_key
@deepakn97
deepakn97 / hyper.js
Last active December 29, 2021 08:06
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
MaterialTheme: {
theme: 'Darker',
vibrancy: 'ultra-dark'