start new:
tmux
start new with session name:
tmux new -s myname
| // By Jamie Chapman, @chappers57 | |
| // License: open, do as you wish, just don't blame me if stuff breaks ;-) | |
| public class ParseProxyObject implements Serializable { | |
| private static final long serialVersionUID = 1L; | |
| private HashMap<String, Object> values = new HashMap<String, Object>(); | |
| public HashMap<String, Object> getValues() { | |
| return values; |
| #!/usr/bin/python -O | |
| # Kill a running Android JDWP (debuggable) process without Eclipse. | |
| import sys | |
| import socket | |
| import struct | |
| import uuid | |
| import random | |
| import subprocess |
| # | |
| # Kill a running Android JDWP (debuggable) process without Eclipse | |
| # | |
| import sys | |
| import socket | |
| import struct | |
| import uuid | |
| import random | |
| import subprocess |