-
Set Email Address per project:
git config user.email "[email protected]"
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 python | |
from __future__ import print_function | |
from jinja2 import Template | |
import zipfile | |
htmlTemplate = ''' | |
<html> | |
<body> | |
<table border="1"> |
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
[16-04-04 19:43:14:413 CEST] Starting execution | |
[16-04-04 19:43:14:687 CEST] DocumentApp.getActiveDocument() [0.138 seconds] | |
[16-04-04 19:43:14:688 CEST] Document.getSelection() [0 seconds] | |
[16-04-04 19:43:14:688 CEST] DocumentApp.getActiveDocument() [0 seconds] | |
[16-04-04 19:43:14:689 CEST] Document.getBody() [0 seconds] | |
[16-04-04 19:43:14:689 CEST] Body.getNumChildren() [0 seconds] | |
[16-04-04 19:43:14:690 CEST] Body.getChild([0]) [0 seconds] | |
[16-04-04 19:43:14:690 CEST] Body.getNumChildren() [0 seconds] | |
[16-04-04 19:43:14:690 CEST] Body.getChild([1]) [0 seconds] | |
[16-04-04 19:43:14:691 CEST] Body.getNumChildren() [0 seconds] |
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
sudo /usr/lib/virtualbox/vboxdrv.sh setup |
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/bash | |
set -o nounset | |
set -o errexit | |
set -o xtrace | |
# Tested using a default Fedora Workstation 23 with Gnome Shell | |
# Set Compose-Key to CapsLock, see: | |
# https://help.gnome.org/users/gnome-help/stable/tips-specialchars.html.en | |
gsettings set org.gnome.desktop.input-sources xkb-options "['compose:caps']" |
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
= GitLab | |
GitLab ist eine webbasierte Software, die kollaboratives Arbeiten in Entwicklungsprojekten vereinfacht. | |
== Warum GitLab | |
* Es steht (in der Community Edition) unter einer freien Lizenz und kann daher selbst gehostet werden. | |
* Es orientiert sich stark an GitHub und ist daher einfach anzuwenden, wenn man GitHub kennt. | |
* Aktive weiterentwicklung, neue Versionen fast im Wochentakt |
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
def cli = new CliBuilder().with { | |
usage = 'program [options] <arguments>' | |
header = 'Options:' | |
footer = '-' * width | |
s 'simplest boolean option' | |
b longOpt: 'both', 'boolean option with both longop and shortop' | |
_ longOpt: 'no-shortop-1', 'boolean option without short version 1' |
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
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.2' | |
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.8' | |
} | |
} |