Skip to content

Instantly share code, notes, and snippets.

View mherman22's full-sized avatar
:octocat:
Try again and again and again

Herman Muhereza mherman22

:octocat:
Try again and again and again
View GitHub Profile
@yaswanth1701
yaswanth1701 / Project_summary.md
Last active February 15, 2025 20:30
Benchmarking physics engines
@mherman22
mherman22 / initializer.txt
Created August 20, 2023 17:07
Run "mvn clean install" on openmrs module initializer
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]
@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);
}
}
/**
* Java implementation of the Bisection method for solving equations.
*
* @author samuel
*/
public class Bisection {
private static final float TOLORANCE = (float) 0.01;
/**
/**
* Java implementation of the Bisection method for solving equations.
*
* @author samuel
*/
public class Bisection {
private static final float TOLORANCE = (float) 0.001;
/**
@abimaelmartell
abimaelmartell / gh-pages.yml
Created February 13, 2020 19:08
Deploy Slate Documentation to Github Pages using Github Actions
name: Github Pages Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
@starlinq
starlinq / java-setup.md
Last active January 27, 2024 19:11
How to install Java JDK8 in Ubuntu 16.04

How to install Java JDK8 in Ubuntu 16.04

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.

Installing the default JDK