This file contains 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/perl | |
$device = "eth0"; | |
#check if device has an expected ip address | |
$ifoutput = `ifconfig $device`; | |
if (!($ifoutput =~ /216.165.108/)) { | |
$device = "eth1"; | |
$ifoutput = `ifconfig $device`; | |
die "neither eth0 nor eth1 have right ip\n" if (!($ifoutput =~ /216.165.108/)); | |
} |
This file contains 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
double[][] rawEstimateData = { | |
// precision 4 | |
{ 11, 11.717, 12.207, 12.7896, 13.2882, 13.8204, 14.3772, 14.9342, 15.5202, 16.161, 16.7722, 17.4636, 18.0396, 18.6766, 19.3566, 20.0454, 20.7936, 21.4856, 22.2666, 22.9946, 23.766, 24.4692, 25.3638, 26.0764, 26.7864, 27.7602, 28.4814, 29.433, 30.2926, 31.0664, 31.9996, 32.7956, 33.5366, 34.5894, 35.5738, 36.2698, 37.3682, 38.0544, 39.2342, 40.0108, 40.7966, 41.9298, 42.8704, 43.6358, 44.5194, 45.773, 46.6772, 47.6174, 48.4888, 49.3304, 50.2506, 51.4996, 52.3824, 53.3078, 54.3984, 55.5838, 56.6618, 57.2174, 58.3514, 59.0802, 60.1482, 61.0376, 62.3598, 62.8078, 63.9744, 64.914, 65.781, 67.1806, 68.0594, 68.8446, 69.7928, 70.8248, 71.8324, 72.8598, 73.6246, 74.7014, 75.393, 76.6708, 77.2394, }, | |
// precision 5 | |
{ 23, 23.1194, 23.8208, 24.2318, 24.77, 25.2436, 25.7774, 26.2848, 26.8224, 27.3742, 27.9336, 28.503, 29.0494, 29.6292, 30.2124, 30.798, 31.367, 31.9728, 32.5944, 33.217, 33.8438, 34.3696, 35.0956, 35.7044, 36.324, 37.0668, 37.6698, 38.3644, 39.049, 39. |
This file contains 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
base00: "323232" | |
base01: "d25252" | |
base02: "7fe173" | |
base03: "ffc66d" | |
base04: "4098ff" | |
base05: "f57fff" | |
base06: "bed6ff" | |
base07: "eeeeec" | |
base08: "535353" | |
base09: "f07070" |
This file contains 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
<?xml version="1.0"?> | |
<gconf> | |
<entry name="bold_color_same_as_fg" mtime="1408752282" type="bool" value="false"/> | |
<entry name="default_show_menubar" mtime="1408751572" type="bool" value="false"/> | |
<entry name="font" mtime="1408749339" type="string"> | |
<stringvalue>Monospace 8</stringvalue> | |
</entry> | |
<entry name="default_size_rows" mtime="1408748855" type="int" value="40"/> | |
<entry name="default_size_columns" mtime="1408748871" type="int" value="128"/> | |
<entry name="use_custom_default_size" mtime="1408748849" type="bool" value="true"/> |
This file contains 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 python | |
# | |
# Python script to compile and install ffmpeg. | |
# | |
# part of ffcluster project. | |
# see full project at github.com/santazhang/ffcluster | |
# | |
# Author: Santa Zhang <[email protected]> | |
import os |