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
namespace App\Http\Controllers; | |
use App\Events\RaspLoginReceivedEvent; | |
use App\Models\RaspLog; | |
use App\Models\User; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Log; | |
class ApiController extends Controller | |
{ |
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 python3 | |
# | |
# RFID-COFFEE | |
# Copyright 2019 aseedorf | |
# | |
# | |
# This file uses some parts of MFRC522-Python | |
# MFRC522-Python is a simple Python implementation for | |
# the MFRC522 NFC Card Reader for the Raspberry Pi. | |
# |
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
List<List<List<(int, int)>>> getOrganizedMatchDaysFromTeamList(List<int> teamList, bool secondRound) | |
{ | |
List<List<List<(int, int)>>> resultList = new List<List<List<(int, int)>>>(teamList.Count); | |
//Nur gerade Anzahl Teilnehmer erlaubt | |
int intTeams = teamList.Count(); | |
if ((intTeams % 2) != 0) | |
{ | |
return resultList; | |
} |
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
package kaffeemaschine;/*corat | |
*23.09.2020 | |
*17:16 | |
*KaffeeMaschine | |
*/ | |
/** | |
* abstrakter Behälter als Vorlage für Zutatenbehälter und Abfallbehälter | |
* @author corat | |
*/ |
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
package test.de.gerweckweb.helper; | |
import de.gerweckweb.helper.Keyboard; | |
import org.junit.After; | |
import org.junit.Assert; | |
import org.junit.Before; | |
import org.junit.Test; | |
/** | |
* Keyboard Tester. |
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
/*corat | |
*12.09.2020 | |
*16:22 | |
*JAVA-Helper | |
*/ | |
package de.gerweckweb.helper; | |
import java.sql.*; | |
import java.util.Scanner; |
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
/*corat | |
*01.09.2020 | |
*09:56 | |
*CC_Datenbanken | |
*/ | |
package db; | |
import java.sql.*; |
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 with IntelliJ IDEA, | |
* User: corat | |
* Date: 28.08.2020 | |
* Time: 08:38 | |
*/ | |
public class Marmelade { | |
private final String frucht; | |
private int fuellmenge; | |
private String datum; |
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 with IntelliJ IDEA, | |
* User: corat | |
* Date: 28.08.2020 | |
* Time: 08:38 | |
*/ | |
public class Marmelade { | |
private final String frucht; | |
private double fuellmenge; | |
private String datum; |
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 with IntelliJ IDEA, | |
* User: corat | |
* Date: 26.08.2020 | |
* Time: 14:14 | |
*/ | |
public class Einkauf { | |
public static void main(String[] args) { | |
Ware2 lm = new Lebensmittel("Apfel",1.0, 2); |
NewerOlder