This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## My Global .gitignore file [https://gist.github.com/2846766] | |
## | |
# Ugly Stuff | |
Icon | |
.DS_Store | |
.dropbox | |
# Mac IDE files | |
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Background(object): | |
def __init__(self): | |
self.color = "black" | |
def handle(self, handler): | |
handle.do(self) | |
class Handler(object): | |
def do(self, object): |