Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- TU Berlin Audio Analyzer v1.0: http://www.nue.tu-berlin.de/forschung/projekte/mpeg7/ -->
<Mpeg7 xmlns="urn:mpeg:mpeg7:schema:2001"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mpeg7="urn:mpeg:mpeg7:schema:2001"
xsi:schemaLocation="urn:mpeg:mpeg7:schema:2001 Mpeg7-2001.xsd">
<Description xsi:type="ContentEntityType">
<MultimediaContent xsi:type="AudioType">
<Audio xsi:type="AudioSegmentType">
==29076==
==29076== HEAP SUMMARY:
==29076== in use at exit: 96,253 bytes in 3,118 blocks
==29076== total heap usage: 25,411 allocs, 22,293 frees, 893,565,548 bytes allocated
==29076==
==29076== 21 bytes in 1 blocks are definitely lost in loss record 3 of 590
==29076== at 0x4C2B6CD: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==29076== by 0x617AAB1: strdup (strdup.c:43)
==29076== by 0x9A2DB6A: p11_kit_registered_module_to_name (in /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.0.0)
==29076== by 0x81A7754: gnutls_pkcs11_init (in /usr/lib/x86_64-linux-gnu/libgnutls.so.26.21.8)
@cinemast
cinemast / gist:35a7362d9bcbd4c92f7f
Created January 28, 2015 02:05
libjsoncpp-abi-compliance
<!-- kind:binary;verdict:incompatible;affected:62.3;added:16;removed:0;type_problems_high:2;type_problems_medium:1;type_problems_low:6;interface_problems_high:0;interface_problems_medium:3;interface_problems_low:1;changed_constants:0;tool_version:1.99.9 -->
<!-- kind:source;verdict:incompatible;affected:0.1;added:34;removed:0;type_problems_high:0;type_problems_medium:0;type_problems_low:6;interface_problems_high:0;interface_problems_medium:2;interface_problems_low:1;changed_constants:0;tool_version:1.99.9 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="libjsoncpp, compatibility, API, report" />
<meta name="description" content="Compatibility report for the libjsoncpp module between 0.6.0~rc2 and 0.7.0 versions" />
<title>
libjso
<!-- kind:binary;verdict:incompatible;affected:4.5;added:66;removed:5;type_problems_high:0;type_problems_medium:1;type_problems_low:1;interface_problems_high:1;interface_problems_medium:0;interface_problems_low:0;changed_constants:0;tool_version:1.99.9 -->
<!-- kind:source;verdict:incompatible;affected:1.7;added:61;removed:8;type_problems_high:0;type_problems_medium:0;type_problems_low:1;interface_problems_high:0;interface_problems_medium:1;interface_problems_low:0;changed_constants:0;tool_version:1.99.9 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="jsoncpp, compatibility, API, report" />
<meta name="description" content="Compatibility report for the jsoncpp module between 0.6.0~rc2 and 0.8.0 versions" />
<title>
jsoncpp: 0.6.
Using worker: worker-linux-5590757e-2.bb.travis-ci.org:travis-linux-13
travis_fold:start:system_info
Build system information
Build language: cpp
Build image provisioning date and time
Wed Feb 4 18:22:50 UTC 2015
Operating System Details
Distributor ID: Ubuntu
Description: Ubuntu 12.04 LTS
rm -rf /opt/mxe/tmp-* /opt/mxe/usr \
./*-*.list ./mxe-*.tar.xz ./mxe-*.deb* ./wheezy ./jessie
[check requirements]
[download] cmake
[build nonetwork lib]
[git-log] 27facf1c Merge pull request #1659 from tonytheodore/gcc5-fix
[build] mxe-conf x86_64-unknown-linux-gnu
[done] mxe-conf x86_64-unknown-linux-gnu 328 KiB 0m3.932s
[build] cmake x86_64-unknown-linux-gnu
[done] cmake x86_64-unknown-linux-gnu 292228 KiB 2m52.132s
@cinemast
cinemast / home.sh
Created May 16, 2020 15:57
home.sh
#!/bin/bash
# curl blabla bash
set -euxo pipefail
PACKAGES="fish tmux git tig fzf"
if [ -f "/etc/arch-release" ]; then
sudo pacman -Sy $PACKAGES
else
export DEBIAN_FRONTEND=noninteractive
sudo apt-get install -y $PACKAGES
fi
@cinemast
cinemast / bootboot.zig
Last active August 2, 2020 19:59
bootboot.zig
const ExportOptions = @import("std").builtin.ExportOptions;
const FrameBufferType = enum(u8) {
ARGB = 0,
RGBA = 1,
ABGR = 2,
BGRA = 3
};
const ProtocolLevel = enum(u2) {
@cinemast
cinemast / LANG.md
Last active April 4, 2023 06:38
List of programming languages I've been in touch with

Programming languages

this is a brain dump of programming languages I've been in touch with and don't want to forget about

Using regularly

@cinemast
cinemast / README.md
Last active March 8, 2024 13:03
PostgreSQL based fail-safe Task scheduler in Golang

PostgreSQL based fail-safe task scheduler for Golang

  • Bachelor thesis
  • Master thesis

Background

We have already implemented a quite successful version of such a failsafe-executor in Java. It supports PostgreSQL, MySQL and Oracle as RDBMS backend. It is used in production as part of various critical infrastructure such as payment gateways or provisioning systems.