Skip to content

Instantly share code, notes, and snippets.

@jjcf89
jjcf89 / snippet-oracle.js
Last active December 17, 2021 16:20
Javascript to draw lines in Yucata's Oracle of Delphi
// 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
@niklv
niklv / docker-compose.yml
Last active August 11, 2021 07:12
docker redmine postgresql
services:
web:
image: 'redmine:passenger'
container_name: 'redmine_web'
restart: always
ports:
- '3000:3000'
links:
- postgres
environment: