Skip to content

Instantly share code, notes, and snippets.

View ABcDexter's full-sized avatar
💭
reSearching...

AnubhavB ABcDexter

💭
reSearching...
View GitHub Profile
@ABcDexter
ABcDexter / tmux-cheatsheet.markdown
Created August 3, 2017 09:47 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@ABcDexter
ABcDexter / principal_component_analysis.ipynb
Created August 19, 2017 10:21 — forked from infinite-Joy/principal_component_analysis.ipynb
description for principal component analysis
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ABcDexter
ABcDexter / puzzle.py
Created May 16, 2021 10:00 — forked from rep-movsd/puzzle.py
Word puzzle checker
#/usr/bin/python
import sys
import json
# open grid file
with open(sys.argv[1]) as f:
lines = [line.rstrip('\n') for line in f]
# make the grid but padded on left right and bottom sides with a sentinel like this (makes it easy to grab diagonals)