Skip to content

Instantly share code, notes, and snippets.

View 3c7's full-sized avatar
🦊

Nils Kuhnert 3c7

🦊
View GitHub Profile
@3c7
3c7 / Frau.java
Created April 11, 2015 09:24
Praktomat Aufgabe 3
/**
* 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++;
@3c7
3c7 / seafile-backup.sh
Last active June 6, 2017 07:39
Seafile backup script
#!/bin/bash
###############################
# Seafile server backup script (cold sqlite backup)
# Author: Nils Kuhnert
# Last change: 2014-07-27
# Website: 3c7.me
###############################
# Variables
DATE=`date +%F`