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
mherman22@kuntakinte:~/Pictures/gsoc2023/openmrs-module-initializer$ mvn clean install | |
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Build Order: | |
[INFO] | |
[INFO] Initializer [pom] | |
[INFO] Initializer API [jar] | |
[INFO] Initializer API with Bahmni [jar] | |
[INFO] Initializer API 2.2 [jar] | |
[INFO] Initializer API 2.3 [jar] |
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
@Test | |
public void generateUUIDsForTests() { | |
int count = 10; | |
for (int i = 0; i < count; i++) { | |
UUID uuid = UUID.randomUUID(); | |
String uuidString = uuid.toString(); | |
System.out.println("Generated UUID: " + uuidString); | |
} | |
} |
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
/** | |
* Java implementation of the Bisection method for solving equations. | |
* | |
* @author samuel | |
*/ | |
public class Bisection { | |
private static final float TOLORANCE = (float) 0.01; | |
/** |
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
/** | |
* Java implementation of the Bisection method for solving equations. | |
* | |
* @author samuel | |
*/ | |
public class Bisection { | |
private static final float TOLORANCE = (float) 0.001; | |
/** |
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
name: Github Pages Build | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: |
Let's consider a JDK8 installation using 2 different versions: default and Oracle. The default version is easiest because it is packaged with Ubuntu.
There is default Java installation called the JDK (Java Development Kit). The JDK is usually only needed if you are going to to do some software developmwent using Java or if some software requires it. The JDK does contain the JRE.