Skip to content

Instantly share code, notes, and snippets.

View mensinda's full-sized avatar

Daniel Mensinger mensinda

  • Karlsruhe, Germany
View GitHub Profile
@mensinda
mensinda / Arbeit5.org
Created March 13, 2015 08:06
Zusammenfassung - Org
#+LATEX_CLASS: default-art
#+LATEX_CLASS_OPTIONS: [12pt,titlepage,abstracton]
#+LANGUAGE: de
# Aus, damit mein Abstract vor die toc commt
#+OPTIONS: toc:nil
# Zeilenabstand
#+LATEX_HEADER: \usepackage[onehalfspacing]{setspace}
@mensinda
mensinda / Arbeit5.tex
Created March 13, 2015 08:07
Zusammenfassung - LaTeX
% Created 2015-03-13 Fri 09:01
\documentclass[12pt,titlepage,abstracton]{scrartcl}
% Org mode (DEFAULT-PACKAGES)
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
@mensinda
mensinda / .Xmodmap
Last active December 23, 2015 10:06
clear Lock
clear Control
clear Mod2
clear Mod3
clear Mod4
keycode 37 = Hyper_L
keycode 66 = Control_L
add Control = Control_L Control_R
XTerm*faceName: Bitstream Vera Serif Mono
xterm*faceSize: 13
xterm*saveLines: 16384
xterm*loginShell: true
xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
xterm*termName: xterm-color
xterm*eightBitInput: false
! vim: set filetype=xdefaults :
*foreground: #D7D0C7
/* Copyright (c) 2017, EPL-Vizards
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
@mensinda
mensinda / InputHandler.cpp
Last active February 18, 2017 15:22
EPL_DataCollect/tets/InputHandler.cpp
/* Copyright (c) 2017, EPL-Vizards
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
(gdb) thread apply all bt 10
Thread 9 (Thread 0x7fffbd07f700 (LWP 20374)):
#0 0x00007fffeb779ca6 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /usr/lib/libpthread.so.0
#1 0x00007fffec70c5a8 in __gthread_cond_timedwait (__cond=0x162d478, __mutex=0x162d2f8, __abs_timeout=0x7fffbd07eaf0) at /usr/include/c++/6.3.1/x86_64-pc-linux-gnu/bits/gthr-default.h:871
#2 0x00007fffec71517d in std::condition_variable::__wait_until_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (this=0x162d478, __lock=..., __atime=...)
at /usr/include/c++/6.3.1/condition_variable:166
#3 0x00007fffec711ee7 in std::condition_variable::wait_until<std::chrono::duration<long, std::ratio<1l, 1000000000l> > > (this=0x162d478, __lock=..., __atime=...)
at /usr/include/c++/6.3.1/condition_variable:106
#4 0x00007fffec712bcb in std::condition_variable::wait_for<long, std::ratio<1l, 1000l> > (this=0x162d478, __lock=..., __rtime=...) at /usr/include/c++/6.3.1/condition_variable:138
@mensinda
mensinda / EPL-Viz__WINDOWS.md
Last active March 16, 2018 11:09
Build EPL-Viz on windows

Folder structure

 /WS_ROOT/
     /wireshark/   # wireshark clone
     /wsbuild64/   # CMake build dir
     /buildWS.bat
 /install
 /qwt-6.1.3
 /EPL_DataCollect
@echo off
set CYGWIN=nodosfilewarning
set WIRESHARK_BASE_DIR=%~dp0
set WIRESHARK_TARGET_PLATFORM=win64
set QT5_BASE_DIR=C:\Qt\5.9\msvc2017_64
cd wsbuild64
cmake -DENABLE_CHM_GUIDES=off -G "Visual Studio 15 2017 Win64" -DCMAKE_INSTALL_PREFIX=%WIRESHARK_BASE_DIR%\..\install ..\wireshark
#!/bin/bash
cd "$(dirname $0)"
WS_INCLUDE_DIR="$PWD/install/include/wireshark"
WS_LIB_DIR="$PWD/install/bin"
[ ! -d "$WS_INCLUDE_DIR" ] && mkdir -p "$WS_INCLUDE_DIR"
cd WS_ROOT/wireshark