Skip to content

Instantly share code, notes, and snippets.

open("/home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/../../../Engine/Binaries/Linux/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/../../../Engine/Binaries/Linux/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/home/KD2-32/server/148.251.184
==32131== Memcheck, a memory error detector
==32131== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==32131== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info
==32131== Command: /home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/SquadServer Port=7787 QueryPort=27165 FIXEDMAXPLAYERS=80 RANDOM=NONE -log
==32131== Parent PID: 31605
==32131==
--32131--
--32131-- Valgrind options:
--32131-- -v
--32131-- --leak-check=full
This file has been truncated, but you can view the full file.
Starting program: /home/KD2-32/server/148.251.184.12_7787/SQ/Squad/Binaries/Linux/SquadServer Port=7787 QueryPort=27165 FIXEDMAXPLAYERS=80 RANDOM=NONE -log
Dwarf Error: wrong version in compilation unit header (is 0, should be 2, 3, or 4) [in module /usr/lib/debug/.build-id/09/5935d2da92389e2991f2b56d14dab9e6978696.debug]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Dwarf Error: wrong version in compilation unit header (is 0, should be 2, 3, or 4) [in module /usr/lib/debug/.build-id/e4/8bb27b88670405041a12eefef9ef586f6e1533.debug]
Dwarf Error: wrong version in compilation unit header (is 0, should be 2, 3, or 4) [in module /usr/lib/debug/.build-id/93/5f7cac8894edac152c05cf83b2decf1097920e.debug]
Dwarf Error: wrong version in compilation unit header (is 0, should be 2, 3, or 4) [in module /usr/lib/debug/.build-id/d0/4c68ec51462ba3088cf1b19d54e1706463f723.debug]
Dwarf Error: wrong version in compilation unit header (is 0, should be 2, 3
@santisteban
santisteban / secstodur.js
Created November 19, 2016 00:02
Seconds-to-Duration Template Tag ported to JavaScript
/**
* Seconds-to-Duration Template Tag ported to JavaScript
* @author Dan Ward 2009 (http://d-w.me)
* @author Nicolás Santisteban (https://ibk.rocks)
**/
function secstodur(value, long=false) {
// Place seconds in to integer
var secs = parseInt(value);
@santisteban
santisteban / hiscore.py
Created February 28, 2016 01:08
Modified hiscore.py from /u/Tompazi
# -*- coding: utf-8 -*-
import sys, requests, csv, io
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s