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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleIdentifier</key> | |
<string>com.nphcda.sample.main</string> | |
<key>CFBundleVersion</key> | |
<string>1.0</string> |
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
leksyde-2:testrepo-main lek-syde$ ls | |
README.md libssl.so mvnw.cmd pom.xml | |
libimobiledevice-glue mvnw nbactions.xml src | |
leksyde-2:testrepo-main lek-syde$ GRAALVM_HOME=/Library/Java/JavaVirtualMachines/graalvm-svm-java11-darwin-gluon-22.0.0.2-Final/Contents/Home JAVA_HOME=/Library/Java/JavaVirtualMachines/graalvm-ce-java11-22.1.0/Contents/Home "/Users/lek-syde/Documents/ATTEND APP/testrepo-main/mvnw" gluonfx:build | |
[INFO] Scanning for projects... | |
[INFO] | |
[INFO] -----------------------< com.nphcda.sample:main >----------------------- | |
[INFO] Building NPHCDA ATTEND 1.0.0-SNAPSHOT | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] |
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
leksyde$ \curl -sSL https://get.rvm.io | bash | |
leksyde$ source /home/<user>/.rvm/scripts/rvm | |
leksyde$ rvm -v | |
leksyde$ rvm install ruby | |
leksyde$ ruby -v | |
leksyde$ sudo apt-get install rubygems | |
leksyde$ gem update | |
leksyde$ sudo apt-get install ruby-dev zlib1g-dev liblzma-dev build-essential patch | |
leksyde$ rvm gemset list | |
leksyde$ gem install rails |
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 models; | |
import java.util.HashMap; | |
import javax.faces.context.FacesContext; | |
import javax.xml.parsers.SAXParser; | |
import javax.xml.parsers.SAXParserFactory; | |
import org.xml.sax.Attributes; | |
import org.xml.sax.SAXException; |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package lekanfx; | |
import javafx.beans.property.IntegerProperty; | |
import javafx.beans.property.SimpleIntegerProperty; | |
import javafx.beans.property.SimpleStringProperty; |