Skip to content

Instantly share code, notes, and snippets.

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@FooBarQuaxx
FooBarQuaxx / 0_reuse_code.js
Last active August 29, 2015 14:19
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

Python

lxml dependencies on ubuntu/mint: sudo apt-get install libxml2-dev libxslt-dev python-dev lib32z1-dev

Misc

Test if a port is open: nc -zv ADDRESS PORT telnet ADDRESS PORT

Keybase proof

I hereby claim:

  • I am FooBarQuaxx on github.
  • I am mabidi (https://keybase.io/mabidi) on keybase.
  • I have a public key whose fingerprint is 93A8 9CC1 82C0 770F 3FB0 B349 E8D2 5F6D 5BF3 D855

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am FooBarQuaxx on github.
  • I am mabidi (https://keybase.io/mabidi) on keybase.
  • I have a public key whose fingerprint is 93A8 9CC1 82C0 770F 3FB0 B349 E8D2 5F6D 5BF3 D855

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am FooBarQuaxx on github.
  • I am mabidi (https://keybase.io/mabidi) on keybase.
  • I have a public key whose fingerprint is 93A8 9CC1 82C0 770F 3FB0 B349 E8D2 5F6D 5BF3 D855

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am FooBarQuaxx on github.
  • I am mabidi (https://keybase.io/mabidi) on keybase.
  • I have a public key whose fingerprint is 93A8 9CC1 82C0 770F 3FB0 B349 E8D2 5F6D 5BF3 D855

To claim this, I am signing this object:

@FooBarQuaxx
FooBarQuaxx / GitHub-Forking.md
Created March 24, 2017 15:26 — forked from Chaser324/GitHub-Forking.md
GitHub Standard Fork & Pull Request Workflow

Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.

In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j

@FooBarQuaxx
FooBarQuaxx / chroot.py
Created June 19, 2017 14:05 — forked from wcang/chroot.py
Demo code to try out chroot using python context manager
import os
import sys
import shutil
class chroot:
def __init__(self, root_dir):
self.root_dir = root_dir
def __enter__(self):
self.real_root = os.open("/",os.O_RDONLY)
from typing import List, Tuple, TypeVar
X = TypeVar("X")
Z = Tuple[X, int]
# mypy: OK; PyCharm: KO
def f0() -> Z[List[str]]:
return ["a"], 0