Skip to content

Instantly share code, notes, and snippets.

View zigmoo's full-sized avatar

Jason Ziegler zigmoo

  • Memphis, Tennessee USA
  • 10:27 (UTC -05:00)
View GitHub Profile

Screen Quick Reference

Wait a minute, why would anyone use 'screen', and what is it anyway?

Well, because it's both AWESOME and FUN!!

It lets you keep your own session running on all the servers you already use, and chances are, it's probably already installed and waiting for you! (since 1987!)

Basic

| Description | Command |

@zigmoo
zigmoo / git-log-to-tsv.sh
Last active December 8, 2022 15:51 — forked from pwenzel/git-log-to-tsv.sh
Git Log to Tab-Delimited CSV File
# Local Dates:
git log --date=local --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.local.tsv.txt
# ISO Dates:
git log --date=iso --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.iso.tsv.txt
@zigmoo
zigmoo / .gitignore
Last active December 23, 2022 16:12 — forked from LeeHanYeong/.gitignore
.gitignore(macOS, Python, Pycharm, Django, Linux)
# Created by https://www.toptal.com/developers/gitignore/api/macos,linux,django,python,pycharm,windows,nova,xcode,visualstudio,vim
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,linux,django,python,pycharm,windows,nova,xcode,visualstudio,vim
### Django ###
*.log
*.pot
*.pyc
__pycache__/
local_settings.py
db.sqlite3