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 net.ladstatt.javacv | |
import java.net.URL | |
import org.bytedeco.javacpp._ | |
import org.bytedeco.javacpp.indexer.{DoubleRawIndexer, FloatIndexer} | |
import org.bytedeco.javacv._ | |
import org.bytedeco.opencv.global.opencv_calib3d._ | |
import org.bytedeco.opencv.global.opencv_core._ | |
import org.bytedeco.opencv.global.opencv_imgproc._ |
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 fpmax | |
import scala.util.Try | |
import scala.io.StdIn.readLine | |
object App0 { | |
def main: Unit = { | |
println("What is your name?") | |
val name = readLine() |
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 net.ladstatt.fx.tableview | |
import java.net.URL | |
import java.util.ResourceBundle | |
import javafx.application.Application | |
import javafx.beans.property.{SimpleDoubleProperty, SimpleIntegerProperty, SimpleStringProperty} | |
import javafx.beans.value.ObservableValue | |
import javafx.collections.{FXCollections, ObservableList} | |
import javafx.fxml._ | |
import javafx.scene.control.{TableColumn, TableView} |
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
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | |
<id>interface</id> | |
<formats> | |
<format>zip</format> | |
</formats> | |
<baseDirectory>ownstuff</baseDirectory> | |
<fileSets> | |
<fileSet> |
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
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | |
<id>@nxs.build.mode@-artifacts</id> | |
<formats> | |
<format>zip</format> | |
</formats> | |
<baseDirectory>stuff</baseDirectory> | |
<fileSets> | |
<fileSet> | |
<directory>target\rt\@nxs.solution.configuration@/</directory> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>com.example</groupId> | |
<artifactId>super-pom</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
</parent> |
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
-verbose | |
-ignorewarnings | |
-optimizationpasses 5 | |
#When not preverifing in a case-insensitive filing system, such as Windows. Because this tool unpacks your processed jars, you should then use: | |
-dontusemixedcaseclassnames | |
#Specifies not to ignore non-public library classes. As of version 4.5, this is the default setting | |
-dontskipnonpubliclibraryclasses |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>net.ladstatt.apps.sudoku</groupId> | |
<artifactId>sudoku-pom</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
</parent> |
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 net.ladstatt.apps | |
import javafx.scene._ | |
import org.opencv.core._ | |
import org.opencv.imgproc.Imgproc | |
import javafx.application.{Platform, Application} | |
import javafx.scene.control._ | |
import javafx.scene.image.ImageView | |
import javafx.scene.layout.BorderPane |
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
import javax.script.ScriptEngineManager | |
object NashornHelloWorld { | |
def main(args: Array[String]): Unit = { | |
new ScriptEngineManager().getEngineByName("nashorn").eval("print('Hello, World')") | |
} | |
} |
NewerOlder