mvn clean package
mvn clean install
mvn versions:display-dependency-updates
| https://docs.spring.io/spring-data/jpa/docs/current/reference/html/#jpa.query-methods.query-creation |
| import uibooster.*; | |
| import uibooster.model.*; | |
| FilledForm form; | |
| int counter = 0; | |
| void setup() { | |
| size(800, 400); | |
| rectMode(CENTER); |
| // Library: https://github.com/Milchreis/processing-imageprocessing | |
| import milchreis.imageprocessing.*; | |
| PImage img; | |
| void setup() { | |
| size(550, 800); | |
| img = loadImage("... your image file here ..."); | |
| } |
| import milchreis.imageprocessing.*; | |
| import milchreis.imageprocessing.utils.*; | |
| // Configuration //////////////////////// | |
| String yourPicture = "pic2.jpg"; | |
| int steps = 1000; | |
| int lineLength = 4; | |
| int alpha = 240; | |
| int linesPerPixel = 4; | |
| int gridSize = 3; |
| Durch diese App werden keinerlei nutzerbezogene Daten gespeichert oder weitergegeben. | |
| Datenschutzerklärung für die Nutzung von AdMob/Werbung | |
| Unsere kostenlosen Anwendungen sind werbeunterstützt. Der Werbepartner der Apps ist AdMob Google Inc. Auf die Erhebung personenbezogener Daten durch AdMob Google Inc. haben wir keinerlei Einfluss. Hier gilt die Datenschutzerklärung von AdMob: http://de.admob.com/home/privacy. Für Werbeeinblendungen auf der Webseite nutzen wir den Werbepartner AdSense. |
| public static float lerp(float x, float x1, float x2, float q00, float q01) { | |
| return ((x2 - x) / (x2 - x1)) * q00 + ((x - x1) / (x2 - x1)) * q01; | |
| } | |
| public static float biLerp(float x, float y, float q11, float q12, float q21, float q22, float x1, float x2, float y1, float y2) { | |
| float r1 = lerp(x, x1, x2, q11, q21); | |
| float r2 = lerp(x, x1, x2, q12, q22); | |
| return lerp(y, y1, y2, r1, r2); | |
| } |
| // This sketch is the result of found sketches to request a local wifi http service with the ESP8266. | |
| #include "ESP8266WiFi.h" | |
| // WiFi parameters to be configured | |
| const char* ssid = "YOUR SSID"; | |
| const char* password = "YOUR WIFI PASSWORD"; | |
| const char* host = "HOST-ADDRESS"; // no http:// and no subaddress | |
| const int httpPort = 8000; // port of your service |
| #!/bin/bash | |
| # ======================================================================== | |
| # Author: Milchreis | |
| # Description: Concatenates different pdf files into one single file with GUI | |
| # Date: 2016-05-13 | |
| # Dependencies: zenity, pdftk | |
| # Tested and used on ubuntu and linux mint | |
| # ======================================================================== |