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
/** | |
* Created by Nils on 08.04.2015. | |
*/ | |
public class Frau extends Person { | |
public String chromosomen = "XX"; | |
public static int anzahl = 0; | |
public Frau(String n, int a, int g, int kg) { | |
super(n, a, g, kg); | |
anzahl++; |
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 | |
############################### | |
# Seafile server backup script (cold sqlite backup) | |
# Author: Nils Kuhnert | |
# Last change: 2014-07-27 | |
# Website: 3c7.me | |
############################### | |
# Variables | |
DATE=`date +%F` |
NewerOlder