- 250g Seitan
- 25g - 50g Hefeflocken
- 25g - 50g Haferflocken (grob gemahlen)
- 1 Priese Salz
- 2EL Gewürze oder flüssig Marinade
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
session.screen0.iconbar.iconTextPadding: 10 | |
session.screen0.iconbar.wheelMode: Screen | |
session.screen0.iconbar.iconWidth: 70 | |
session.screen0.iconbar.alignment: Right | |
session.screen0.iconbar.deiconifyMode: Follow | |
session.screen0.iconbar.mode: {static groups} (workspace) | |
session.screen0.iconbar.usePixmap: false | |
session.screen0.window.focus.alpha: 255 | |
session.screen0.window.unfocus.alpha: 255 | |
session.screen0.overlay.lineWidth: 1 |
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
{ | |
"LoRA_type": "LyCORIS/LoKr", | |
"adaptive_noise_scale": 0, | |
"additional_parameters": "", | |
"block_alphas": "", | |
"block_dims": "", | |
"block_lr_zero_threshold": "", | |
"bucket_no_upscale": true, | |
"bucket_reso_steps": 64, | |
"cache_latents": true, |
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 io.metaloom.video4j.lucene; | |
import java.io.File; | |
import java.io.IOException; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import org.apache.commons.io.FileUtils; | |
import org.apache.lucene.document.Document; | |
import org.apache.lucene.document.KnnVectorField; |
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 io.metaloom.video4j.lucene; | |
import static org.apache.lucene.search.DocIdSetIterator.NO_MORE_DOCS; | |
import static org.junit.Assert.assertEquals; | |
import java.io.File; | |
import java.io.IOException; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.util.ArrayList; |
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 io.metaloom.video4j.lucene; | |
import static org.apache.lucene.search.DocIdSetIterator.NO_MORE_DOCS; | |
import static org.junit.Assert.assertEquals; | |
import java.io.File; | |
import java.io.IOException; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.util.ArrayList; |
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
#include <DHT.h> | |
#include <DHT_U.h> | |
#include <ArduinoOTA.h> | |
#include <ESP8266WiFi.h> | |
#include <ESP8266WebServer.h> | |
#include <HampelFilter.h> | |
const char *ssid = "*********"; | |
const char *password = "********"; |
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
#include <ESP8266WiFi.h> | |
#include "HX711.h" | |
#include <ShiftedLCD.h> | |
#include <SPI.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiUdp.h> | |
#include <ArduinoOTA.h> | |
#include <ESP8266HTTPClient.h> | |
#include <WiFiClientSecureBearSSL.h> | |
#include <HampelFilter.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
#include <ESP8266WiFi.h> | |
#include <ESP8266WebServer.h> | |
const char* ssid = "SSID"; | |
const char* password = "PW"; | |
const int BUTTON_PIN = 0; | |
const int FART_PIN = 14; | |
byte mac[6]; |
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
import useWebsocketBridge from '../eventbus'; | |
export default function ScreenView({ match }) { | |
const id = match.params.id; | |
const [screenResponse, setScreenResponse] = useState(); | |
useWebsocketBridge(async () => { setScreenResponse(await getScreen(id)) }); | |
useEffect(() => { | |
getScreen(id).then(setScreenResponse); | |
}, []); |
NewerOlder