Skip to content

Instantly share code, notes, and snippets.

View josix's full-sized avatar
🐍

Josix josix

🐍
View GitHub Profile
@josix
josix / tmux_cheatsheet.markdown
Last active November 29, 2017 12:03 — forked from henrik/tmux_cheatsheet.markdown
tmux cheatsheet

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@josix
josix / pep8_cheatsheet.py
Created April 18, 2018 17:43 — forked from RichardBronosky/pep8_cheatsheet.py
PEP-8 cheatsheet
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""This module's docstring summary line.
This is a multi-line docstring. Paragraphs are separated with blank lines.
Lines conform to 79-column limit.
Module and packages names should be short, lower_case_with_underscores.
Notice that this in not PEP8-cheatsheet.py
@josix
josix / gist:81f6c21381faa9710233aab9f317c605
Created February 12, 2019 16:21 — forked from entaroadun/gist:1653794
Recommendation and Ratings Public Data Sets For Machine Learning

Movies Recommendation:

Music Recommendation:

@josix
josix / Makefile
Created March 25, 2019 10:59 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.