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
// Draw paths of each ship through out the game | |
// | |
// Need to run code in console and replay the game | |
// Howto for Chrome: | |
// * Open finished game https://www.yucata.de/en/Game/Delphi/10373044#page | |
// * Click on first move in game log | |
// * Right click on page and select "Inspect" | |
// * Select the "Sources" tab and in left pane, change Page to Snippets | |
// * Create "+ New Snippet" and give it a name | |
// * Copy/paste this code into the snippet |
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
services: | |
web: | |
image: 'redmine:passenger' | |
container_name: 'redmine_web' | |
restart: always | |
ports: | |
- '3000:3000' | |
links: | |
- postgres | |
environment: |