Skip to content

Instantly share code, notes, and snippets.

@eds-satish
eds-satish / oop_python.ipynb
Created May 19, 2023 04:21 — forked from kanmaytacker/oop_python.ipynb
Objected-oriented programming with Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
HANDY ONE-LINE SCRIPTS FOR AWK 30 April 2008
Compiled by Eric Pement - eric [at] pement.org version 0.27
Latest version of this file (in English) is usually at:
http://www.pement.org/awk/awk1line.txt
This file will also be available in other languages:
Chinese - http://ximix.org/translation/awk1line_zh-CN.txt
USAGE:
@eds-satish
eds-satish / tmux.md
Created September 24, 2018 08:22 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@eds-satish
eds-satish / tmux-cheatsheet.markdown
Created September 24, 2018 08:15 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@eds-satish
eds-satish / 1.md
Created September 24, 2018 07:48 — forked from 8bitDesigner/1.md
tmux Cheat Sheet

Overview

What is a terminal multiplexer? It lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal. And do a lot more. See the manual.

https://tmux.github.io/

Awesome resources

A damned good cheatsheet (remember that the default prefix is 'ctrl-b')
https://tmuxcheatsheet.com/

@eds-satish
eds-satish / final-gsoc-report.md
Created September 19, 2018 19:31 — forked from malloxpb/final-gsoc-report.md
Final Report for GSoC 2018
@eds-satish
eds-satish / Makefile
Created August 6, 2018 05:35 — forked from dutc/Makefile
simple, slow, probably buggy `git init+add+commit` in <167 lines Python
.PHONY: test clean
test:
seq 1 10 > seq1
seq 10 20 > seq2
mkdir -p dir
seq 20 30 > dir/seq3
python git-init+add+commit.py seq1 seq2 dir/seq3 || (git init . ; git add seq1 seq2 dir ; git commit -am 'first commit')
git status
git log
@eds-satish
eds-satish / TensorFlow_Windows.md
Created April 6, 2018 17:04 — forked from ericjang/TensorFlow_Windows.md
Setting up TensorFlow on Windows using Docker.

TensorFlow development environment on Windows using Docker

Here are instructions to set up TensorFlow dev environment on Docker if you are running Windows, and configure it so that you can access Jupyter Notebook from within the VM + edit files in your text editor of choice on your Windows machine.

Installation

First, install https://www.docker.com/docker-toolbox

Since this is Windows, creating the Docker group "docker" is not necessary.