ascot

Text

Data Temp Channel
101111 111001 000101 110000 100110 010100 23.2 3
101111 111001 111001 110000 100110 011100 23.1 3
101111 111001 101101 110000 100110 011011 23.7 3
101111 111011 110111 110000 100110 010101 25.1 3
101111 111011 100111 110000 100110 010011 24.9 3

openwrt

Text

base-files - 157-r46767
busybox - 1.23.2-1
dnsmasq - 2.73-1
dropbear - 2015.67-1
firewall - 2015-07-27
fstools - 2015-05-24-09027fc86babc3986027a0e677aca1b6999a9e14
hostapd-common - 2015-03-25-1
ip - 4.0.0-1
ip6tables - 1.4.21-1
iptables - 1.4.21-1

<!-- Type1 -->
<player>
<login>..</login>
</player>
<player>
<login>..</login>
</player>
<!-- Type2 -->
<login0>..</login0>

wireshark

Text

$ make -C plugins
[...]
Making all in mate
make[1]: Entering directory '/src/wireshark-2.0.2/plugins/mate'
gcc -Wall -W -Wextra -Wendif-labels -Wpointer-arith -Warray-bounds -Wformat-security -fwrapv -fno-strict-overflow -fno-delete-null-pointer-checks -Wvla -Waddress -Wattributes -Wdiv-by-zero -Wignored-qualifiers -Wpragmas -Wno-overlength-strings -Wwrite-strings -Wno-long-long -Wc++-compat -Wdeclaration-after-statement -Wshadow -Wno-pointer-sign -Wold-style-definition -Wstrict-prototypes -Wlogical-op -Wjump-misses-init -fexcess-precision=fast -fvisibility=hidden -g -O2 -I/usr/include/libnl3 -I/usr/include/qt/QtCore -I/usr/include/qt -I/usr/include/qt/QtGui -I/usr/include/qt -I/usr/include/qt/QtCore -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt -I/usr/include/qt/QtGui -I/usr/include/qt -I/usr/include/qt/QtCore -I/usr/include/qt -I/usr/include/qt/QtPrintSupport -I/usr/include/qt -I/usr/include/qt/QtWidgets -I/usr/include/qt -I/usr/include/qt/QtGui -I/usr/include/qt -I/usr/include/qt/QtCore -I/usr/include/qt -fPIC -pthread -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libdrm -I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DG_DISABLE_DEPRECATED -DG_DISABLE_SINGLE_INCLUDES -DGSEAL_ENABLE -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATION_WARNINGS -DGDK_DISABLE_DEPRECATED -D_FORTIFY_SOURCE=2 -I/usr/local/include -I/usr/include '-DPLUGIN_INSTALL_DIR="/usr/local/lib/wireshark/plugins/2.0.2"' -Wl,--as-needed -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib ../../tools/lemon/lemon.c -o ../../tools/lemon/lemon
../../tools/lemon/lemon.c:10:20: fatal error: config.h: No such file or directory
compilation terminated.
<builtin>: recipe for target '../../tools/lemon/lemon' failed

#!/usr/bin/awk -f
BEGIN {
x = 0
}
{
if ($3 - x >= 25000 || x == 0 && $3 != 0) {
print $1 " " $3
x = $3
}
}

#!/usr/bin/awk -f
BEGIN {
x = 0
}
{
if ($3 - x >= 25000 || x == 0 && $3 != 0) {
print $1 " " $3
x = $3
}
}

#!/usr/bin/awk -f
BEGIN {
x = 0
}
{
if ($3 - x >= 25000 || x == 0 && $3 != 0) {
print $1 " " $3
x = $3
}
}

BEGIN {
x = 0
}
{
if ($3 - x >= 25000 || x == 0 && $3 != 0) {
print $1 " " $3
x = $3
}
}
END {

scores

Text

Row: 77 - 1300
Row: 10 - 27172
Row: 6 - 54308
Row: 3 - 91098
Row: 2 - 143193
Row: 1 - 276346

<?php
$ranks = array(
array(1210, 7990832),
array(1150, 8016778)
);
$ranks_in = $ranks[0][0] - $ranks[1][0];
$points_in = $ranks[1][1] - $ranks[0][1];
$points_per_rank = $points_in / $ranks_in;