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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% Zählerformatierung für griechische Buchstaben | |
% durch neudefiniertes Kommando \greek{<zähler>}. | |
% Informativ: | |
% - https://devtut.github.io/latex/counters-if-statements-and-loops-with-latex.html | |
% - https://www.matthiaspospiech.de/blog/2008/04/13/latex-variablen-if-abfragen-und-schleifen/ | |
% | |
% \greek nutzt „echte“ griechische Buchstaben in UTF-8 und passt sich | |
% daher bestens in die umgebende Schriftformatierung ein; die im | |
% Internet kursierenden Beispiele nutzen den kursiven Mathematik-Font, |
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
#!/usr/bin/ruby | |
LOGFILE = ENV["LOGFILE"] || "/var/log/vsftpd.log" | |
STATEFILE = ENV["STATEFILE"] || "#{ENV["MUNIN_PLUGSTATE"]}/munin-xferlog.state" | |
ROTLOGFILE = "#{LOGFILE}.1" | |
LOGFILE.freeze | |
STATEFILE.freeze | |
ROTLOGFILE.freeze |
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
package main | |
/* | |
#cgo LDFLAGS: -lallegro | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <allegro5/allegro.h> | |
inline ALLEGRO_EVENT_TYPE extract_event(const ALLEGRO_EVENT* p_evt) | |
{ |
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
% npm install --build-from-source mapnik | |
/ | |
> [email protected] preinstall /home/quintus/software/ff/node_modules/mapnik | |
> npm install node-pre-gyp | |
npm WARN package.json [email protected] No license field. | |
[email protected] node_modules/node-pre-gyp | |
├── [email protected] | |
├── [email protected] ([email protected]) | |
├── [email protected] ([email protected]) |
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
/* Super-simple joystick testing program. | |
* Written by Marvin Gülker, on 2016-12-03. | |
* Compile with: | |
* $ g++ joystick.cpp -o joystick -lsfml-graphics -lsfml-window -lsfml-system | |
* Run as: | |
* ./joystick | |
*/ | |
#include <iostream> | |
#include <SFML/Graphics.hpp> |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by ucl configure 1.03, which was | |
generated by GNU Autoconf 2.59. Invocation command line was | |
$ ./configure --host=x86_64-unknown-linux-gnu --build=x86_64-unknown-linux-gnu --prefix=/home/quintus/tsc-mxe/usr/x86_64-unknown-linux-gnu --enable-static --disable-shared ac_cv_prog_HAVE_DOXYGEN=false --disable-doxygen | |
## --------- ## | |
## Platform. ## |
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
/* PRNG demonstration program. | |
* Compile with: | |
* $ gcc -Wall rand.c -o rand | |
* Run as: | |
* ./rand | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> |
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
--- | |
Afghanistan: af | |
Ägypten: eg | |
Åland: ax | |
Albanien: al | |
Algerien: dz | |
Amerikanisch-Samoa: as | |
Amerikanische Jungferninseln: vi | |
Andorra: ad | |
Angola: ao |
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
; Add this function to your .emacs file and add it to the c-mode-common hook: | |
; (add-hook 'c-mode-common-hook 'find-cmake-builddir) | |
; Afterwards the `compile-command' variable will automatically contain a command for | |
; building your entire CMake project by just doing `M-x compile' whenever you | |
; open a C/C++ file inside a CMake-managed project. Sole requirement: | |
; You first have to manually create a directory "build/" next to your | |
; CMakeLists.txt file and run CMake with the appropriate options yourself. | |
(defun find-cmake-builddir () | |
"Finds the build directory of a CMake project" | |
(let ((cmakefile nil) (dirname default-directory)) |
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
#!/usr/bin/env ruby | |
# -*- coding: utf-8 -*- | |
# | |
# prosodyconv.rb -- converts prosody rosters into PIEFXIS format as per XEP-0227. | |
# | |
# Copyright © 2015 Marvin Gülker | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions |
NewerOlder