What would you need:
- Postgres 9.3, 9.4, 9.5, 9.6 or 10 with cstore_fdw extention (https://github.com/citusdata/cstore_fdw)
- Docker 1.12.6 or higher
- Docker Compose
- Linux machine
Hardware requirements
| global | |
| lua-load /path/to/haproxy_minecraft.lua | |
| [...] | |
| defaults | |
| [...] | |
| frontend mc_listener | |
| bind *:25565 | |
| mode tcp |
| image: an-image-with-docker-and-docker-compose | |
| variables: | |
| DOCKER_TLS_VERIFY: "1" | |
| DOCKER_CERT_PATH: ".docker" | |
| before_script: | |
| - mkdir -p $DOCKER_CERT_PATH | |
| - echo "$DOCKER_CA" > $DOCKER_CERT_PATH/ca.pem | |
| - echo "$DOCKER_CERT" > $DOCKER_CERT_PATH/cert.pem |
What would you need:
Hardware requirements
| # Using edge-git ensures we're always pulling the latest | |
| # You can lock into a specific version using the *-git tags | |
| # on https://hub.docker.com/_/docker/ | |
| image: docker:edge-git | |
| services: | |
| - docker:dind | |
| # If you only need compose in a specific step definitely put this | |
| # only in that step so it's not executed unnecessarily | |
| before_script: |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare git@github.com:usi-systems/easytrace.git
| package client; | |
| import java.io.DataOutputStream; | |
| import java.io.FileInputStream; | |
| import java.io.IOException; | |
| import java.net.Socket; | |
| public class FileClient { | |
| private Socket s; |
| package fr.kwizzy.deathdash.util; | |
| /** | |
| * Par Alexis le 04/05/2016. | |
| */ | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; |
| package fr.hugo4715.crackedskywars.scoreboard; | |
| import java.lang.reflect.Constructor; | |
| import java.lang.reflect.Field; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.util.Collection; | |
| import org.apache.commons.lang.Validate; | |
| import org.bukkit.ChatColor; | |
| import org.bukkit.entity.Player; |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
This class allow you to use a scoreboard as a sign in which you can write any text. It is designed to be used with a CraftBukkit server (or any similar variant). It uses fake teams to allow lines that are longer than usernames.