Skip to content

Instantly share code, notes, and snippets.

View muhamedoufi's full-sized avatar
🤩

Muhamedou Fi muhamedoufi

🤩
View GitHub Profile
@muhamedoufi
muhamedoufi / CheesePizza.java
Created February 3, 2023 17:17
Pizza Creation Using Factory Method
class CheesePizza implements Pizza {
@Override
public void prepare() {
System.out.println("Préparation de la pizza au fromage");
}
@Override
public void bake() {
System.out.println("Cuisson de la pizza au fromage");
@AlexandraKapp
AlexandraKapp / osrm_docker_windows.md
Last active July 15, 2024 16:16
How to set up your own OSRM backend with Docker on Windows

How to set up your own OSRM backend with Docker on Windows

The OSRM docker quick start provides a great explanation on how to set up the container: https://hub.docker.com/r/osrm/osrm-backend/

Yet - for Docker on Windows minor changes were necessary for me (otherwise I'd get "File not found" or "Permission" errors).

This is how it worked for me:

1. Pull the image

@AmiralBl3ndic
AmiralBl3ndic / A friendly guide to creating JAX-RS Jersey Java EE RESTful web applications in IntelliJ IDEA Ultimate Edition.md
Last active February 25, 2024 17:21
A friendly guide to creating JAX-RS Jersey Java EE RESTful web applications in IntelliJ IDEA Ultimate Edition

A friendly guide to creating JAX-RS Jersey Java EE RESTful web applications in IntelliJ IDEA Ultimate Edition

Before you start

Ensure you have an application server installed and configured in IntelliJ IDEA (tested with Tomcat 9.0.26 and Glassfish 5.0.0)

Project creation

Creating a project in IntelliJ IDEA Ultimate Edition