Skip to content

Instantly share code, notes, and snippets.

View mhubig's full-sized avatar

Markus Hubig mhubig

View GitHub Profile
@mhubig
mhubig / gist:4110491
Created November 19, 2012 12:54
SQL Statement
SELECT [HZVTLN pro Arzt].KVNR,
[HZVTLN pro Arzt].Anrede,
[HZVTLN pro Arzt].Vorname,
[HZVTLN pro Arzt].Name,
[HZVTLN pro Arzt].Strasse,
[HZVTLN pro Arzt].PLZ,
[HZVTLN pro Arzt].Ort,
[HZVTLN pro Arzt].Geburtstag,
[HZVTLN pro Arzt].Praxisart,
[HZVTLN pro Arzt].Praxisanrede,
@mhubig
mhubig / .config
Created June 29, 2012 10:45
Kernel config file created by "make ARCH=arm stamp9g20_defconfig"
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 3.2.2 Kernel Configuration
#
CONFIG_ARM=y
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
CONFIG_GENERIC_GPIO=y
# CONFIG_ARCH_USES_GETTIMEOFFSET is not set
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_KTIME_SCALAR=y
@mhubig
mhubig / shiboken.txt
Created June 5, 2012 13:39
Homebrew, Shiboken 1.1.0 compile error on Mac OSX
brew install -v shiboken
==> Downloading http://pyside.org/files/shiboken-1.1.0.tar.bz2
Already downloaded: /Users/mhubig/Library/Caches/Homebrew/shiboken-1.1.0.tar.bz2
/usr/bin/tar xf /Users/mhubig/Library/Caches/Homebrew/shiboken-1.1.0.tar.bz2
==> cmake . -DBUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=/usr/local/Cellar/shiboken/1.1.0 -DCMAKE_BUILD_TYPE=None -DCMAKE_FIND_FRAMEWORK=LAST -Wno-dev
cmake . -DBUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=/usr/local/Cellar/shiboken/1.1.0 -DCMAKE_BUILD_TYPE=None -DCMAKE_FIND_FRAMEWORK=LAST -Wno-dev
-- The C compiler identification is Clang 3.1.0
-- The CXX compiler identification is Clang 3.1.0
-- Check for working C compiler: /usr/bin/clang
-- Check for working C compiler: /usr/bin/clang -- works
@mhubig
mhubig / .gitignore
Created May 31, 2012 22:27
My global .gitignore file (Mac version)
## My Global .gitignore file [https://gist.github.com/2846766]
##
# Ugly Stuff
Icon
.DS_Store
.dropbox
# Mac IDE files
*.swp
@mhubig
mhubig / sendeliste.xml
Created May 10, 2012 12:36
XML-Example with a matching XML-Schema-Definition and a simple XSLT.
<?xml version="1.0" encoding="UTF-8"?>
<sendeliste xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.github.com/gist/2652789/sendeliste.xsd">
<beitrag>
<title>Baby One More Time</title>
<interpret>Britney Spears</interpret>
<dauer minuten="2" sekunden="30" />
<produktionsjahr>1999</produktionsjahr>
<sendedatum>2012-03-03 20:32:10</sendedatum>
</beitrag>
@mhubig
mhubig / right.txt
Created May 3, 2012 11:54
eMail Foo
Delivered-To: [email protected]
Received: by 10.180.89.130 with SMTP id bo2csp143143wib;
Tue, 1 May 2012 15:09:18 -0700 (PDT)
Received: by 10.180.95.4 with SMTP id dg4mr4555496wib.2.1335910158930;
Tue, 01 May 2012 15:09:18 -0700 (PDT)
Return-Path: <[email protected]>
Received: from mail-wg0-f54.google.com (mail-wg0-f54.google.com [74.125.82.54])
by mx.google.com with ESMTPS id bt8si19245107wib.40.2012.05.01.15.09.18
(version=TLSv1/SSLv3 cipher=OTHER);
@mhubig
mhubig / stegdetect-0.6.patch
Created December 12, 2011 13:32
Patch to get stegdetect v0.6 compile on Mac OS X (got from macports.org).
diff --git a/Makefile.in b/Makefile.in
index 4bfbb1e..0a61813 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -70,7 +70,7 @@ AUTOMAKE_OPTIONS = foreign no-dependencies
JPEGDIR = ./jpeg-6b
JPEGINC = -I$(JPEGDIR)
-JPEGLIB = -L$(JPEGDIR) -ljpeg
+JPEGLIB = $(JPEGDIR)/libjpeg.a
@mhubig
mhubig / glusterfs.rb
Created November 23, 2011 19:35
Homebrew formular for Glusterfs 3.2git
require 'formula'
class Glusterfs < Formula
homepage 'http://www.gluster.org'
url 'https://github.com/mhubig/glusterfs.git',
:tag => '838224369845e7566bbbac24ffd70d166a3df422',
:using => :git
version '3.2git'
head 'https://github.com/mhubig/glusterfs.git',
@mhubig
mhubig / configure.log
Created November 22, 2011 16:16
Problems building glusterfs-3.2.5 on Max OS X Lion
mhubig@mh:/private/tmp/homebrew-glusterfs-3.2.5-Gkxp/glusterfs-3.2.5$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking build system type... i686-apple-darwin11.2.0
checking host system type... i686-apple-darwin11.2.0
@mhubig
mhubig / version_1.py
Created October 17, 2011 14:28
No Getter & Setter ...
class Background(object):
def __init__(self):
self.color = "black"
def handle(self, handler):
handle.do(self)
class Handler(object):
def do(self, object):