Pairwise98 is Microsoft PICT in a Docker container along with a web frontend.
Please note: The website design mimics Windows 98 and is only functional on large desktop screens. However, since this project was only intended as a technical demo for a talk, this is perfectly fine for the target audience.
This is a private project and is not affiliated with Microsoft. It simply uses Microsoft PICT, which was published under the MIT License by Microsoft.
This project uses Quarkus, the Supersonic Subatomic Java Framework. To learn more about Quarkus, please visit its website at https://quarkus.io/.
A Docker image is pushed to Docker Hub with each CI build and can be found here: https://hub.docker.com/r/renfis/pict. To build and run the Docker image locally, execute the following commands:
docker build -t pict .
docker run --rm -it -p8080:8080 pict
Then navigate to http://localhost:8080
in your favorite desktop browser.
You can run your application in dev mode that enables live coding using:
mvn compile quarkus:dev
NOTE: Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
The application can be packaged using:
mvn package
It produces the quarkus-run.jar
file in the target/quarkus-app/
directory.
Be aware that it’s not an über-jar as the dependencies are copied into
the target/quarkus-app/lib/
directory.
The application is now runnable
using java -jar target/quarkus-app/quarkus-run.jar
.
You can create a native executable using:
mvn package -Pnative
Or, if you don't have GraalVM installed, you can run the native executable build in a container using:
mvn package -Pnative -Dquarkus.native.container-build=true
You can then execute your native executable
with: ./target/getting-started-1.0.0-SNAPSHOT-runner
If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.
- RESTEasy Reactive (guide): A JAX-RS implementation utilizing build time processing and Vert.x. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.
Easily start your Reactive RESTful Web Services
Used Windows 98 designs from 98.css and Windows 98 CSS Demo on fjolt.com