(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
#!/bin/bash | |
# unfortunately debian currently panics in xhyve | |
tmp=$(mktemp -d) | |
pushd "$tmp" | |
iso="$HOME"/Downloads/debian-8.1.0-amd64-netinst.iso | |
#iso="$HOME"/Downloads/debian-8.1.0-i386-netinst.iso | |
echo "fixing disk" | |
dd if=/dev/zero bs=2k count=1 of=tmp.iso |
#!/bin/bash | |
tmp=$(mktemp -d) | |
pushd "$tmp" | |
iso=/Users/lloeki/Downloads/archlinux-2015.08.01-dual.iso | |
echo "fixing disk" | |
dd if=/dev/zero bs=2k count=1 of=tmp.iso | |
dd if=$iso bs=2k skip=1 >> tmp.iso | |
echo "mounting disk" |
<?php | |
//require this to get a database connection | |
$connect = mysql_connect('localhost','test','test'); | |
mysql_select_db('test'); | |
?> |
<?php | |
if(count($_GET) > 0) | |
{ | |
$xmlstr = "<npcspawn> | |
<npcId>{$_GET['npcId']}</npcId> | |
<locationz> | |
<x>{$_GET['x']}</x> | |
<y>{$_GET['y']}</y> | |
<z>{$_GET['z']}</z> | |
</locationz> |
<?php | |
class Highscores { | |
public $skills = array ( | |
'attack','defence','strength','hitpoints','range', | |
'prayer','magic','cooking','woodcutting','fletching', | |
'fishing','firemaking','crafting','smithing','mining', | |
'herblore','agility','thieving','slayer','farming', | |
'runecraft', | |
'overall' | |
); |
<?php | |
/********************************************************************* | |
* Database Abstraction Layer | |
********************************************************************** | |
* Related Files: | |
* -------------------------------------------------------------- | |
********************************************************************** | |
* Revision History: | |
* -------------------------------------------------------------- |