start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/bin/python2 | |
#!/usr/bin/env python2 | |
# | |
# This script puts the bladeRF into an RF loopback mode, transmitting | |
# a vector at an offset from the RX frequency. The resulting image may be used | |
# to manually dial in RX-side IQ imbalance correction. Sliders to minimize the RX | |
# DC offset are also included. | |
# | |
# License: GPLv3 | |
# |
#!/usr/bin/env python | |
import cgi | |
import subprocess | |
import cgitb | |
cgitb.enable() | |
def run(command): | |
if not command: |
#!/bin/sh -e | |
# Usage: license | |
# Prints an MIT license appropriate for totin' around. | |
# | |
# $ license > COPYING | |
#!/bin/sh | |
echo "Copyright (c) `date +%Y` Chris Wanstrath | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the |