Skip to content

Instantly share code, notes, and snippets.

@zakiindra
zakiindra / tmux-cheatsheet.markdown
Created December 31, 2023 00:05 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@zakiindra
zakiindra / avro_to_dataframe.py
Last active November 5, 2019 04:35 — forked from LouisAmon/avro_to_dataframe.py
Read Avro file from Pandas
import pandas
import fastavro
def avro_df(filepath, encoding):
# Open file stream
with open(filepath, encoding) as fp:
# Configure Avro reader
reader = fastavro.reader(fp)
# Load records in memory
records = [r for r in reader]