This file contains hidden or 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
#!/usr/bin/env ruby | |
if ARGV.first == "--help" | |
puts <<-EOF | |
usage: pdfmerge.rb SUMMARYFILE FILE1 FILE2 ... | |
All Files have to be pdf-Files. Requires GhostScript (gs). | |
Copyright 2009 Robert Riemann - licensed under GPL v2 or higher. | |
EOF | |
exit | |
end |
This file contains hidden or 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
#!/usr/bin/env ruby | |
require 'optparse' | |
require 'pathname' | |
options = {:root => './'} | |
optparse = OptionParser.new do |opts| | |
opts.on('-r', '--root PATH', 'Source Code Root') do |path| | |
options[:root] = path |
This file contains hidden or 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
fig2pdf() { | |
for file in "$@"; do | |
fig2dev -L pstex -s10 $file > ${file%.*}.eps | |
epstopdf ${file%.*}.eps | |
rm ${file%.*}.eps | |
done | |
} |
This file contains hidden or 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
#!/bin/sh | |
zypper ar --check --no-keep-packages --no-gpgcheck --type rpm-md --name fritzbox-12.1-update nfs://fritz.box:/var/media/ftp/uStor02/opensuse/update/12.1?mountoptions=vers=3 fritzbox-12.1-update | |
zypper ar --check --no-keep-packages --no-gpgcheck --type rpm-md --name fritzbox-12.1-kde48 nfs://fritz.box:/var/media/ftp/uStor02/opensuse/repositories/KDE:/Release:/48/openSUSE_12.1?mountoptions=vers=3 fritzbox-12.1-kde48 | |
zypper ar --check --no-keep-packages --no-gpgcheck --type rpm-md --name fritzbox-12.1-packman nfs://fritz.box:/var/media/ftp/uStor02/opensuse/repositories/packman/12.1/Essentials?mountoptions=vers=3 fritzbox-12.1-packman | |
zypper mr -p 90 fritzbox-12.1-update | |
zypper mr -p 90 fritzbox-12.1-kde48 | |
zypper mr -p 90 fritzbox-12.1-packman |
This file contains hidden or 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
## infos | |
zypper in libffmpeg-devel libofa0-devel | |
## build.cfg | |
[directshow] | |
libs = | |
cflags = |
This file contains hidden or 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
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0 |
This file contains hidden or 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/ext/matrix_complex.c b/ext/matrix_complex.c | |
index 8a77ac1..1b1d8af 100644 | |
--- a/ext/matrix_complex.c | |
+++ b/ext/matrix_complex.c | |
@@ -1519,8 +1519,7 @@ static VALUE rb_gsl_matrix_complex_indgen_singleton(int argc, VALUE *argv, VALUE | |
return Data_Wrap_Struct(cgsl_matrix_complex, 0, gsl_matrix_complex_free, mnew); | |
} | |
- | |
-static int gsl_matrix_complex_equal(const gsl_matrix_complex *m1, |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>fancyBox - Fancy jQuery Lightbox Alternative | Demonstration</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<!-- Add jQuery library --> | |
<script type="text/javascript" src="fancyapps-fancyBox-e4836f7/lib/jquery-1.8.2.min.js"></script> | |
<!-- Add mousewheel plugin (this is optional) --> |
This file contains hidden or 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
#!/bin/sh | |
#/usr/lib/pm-utils/sleep.d/20g15daemon | |
. "${PM_FUNCTIONS}" | |
case "$1" in | |
hibernate|suspend) | |
printf 'G15 daemon will be stopped now...' | |
/etc/init.d/g15daemon stop | |
;; | |
thaw|resume) |