This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .tmux.conf | |
# | |
# hit C-a as the special tmux prefix then [ for visual mode. | |
# hit v and use the hjkl keys to select text you want to copy and then hit y to copy the selected text. | |
# The copied text will be available to the system clipboard. | |
# | |
# NOTE for copying to system clipboard xclip must be installed. | |
# | |
set -g status off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <sstream> | |
#include <cstdio> | |
#include <string> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <sys/wait.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from keystone import * | |
import sys | |
import argparse | |
import binascii | |
def main(filename=None, raw=False): | |
if filename is None: |
OlderNewer