This installation is done on a fresh installation of Ubuntu 16.04.
A few other dependencies are needed: virtualenv
sudo apt install virtualenv| // Taken from https://github.com/jeroenheijmans/advent-of-code-charts | |
| (() => { | |
| const loadScript = function() { | |
| let cache = {}; | |
| return function(src) { | |
| return cache[src] || (cache[src] = new Promise((resolve, reject) => { | |
| let s = document.createElement('script'); | |
| s.defer = true; | |
| s.src = src; | |
| s.onload = resolve; |
| @echo off | |
| @REM Save as jar2exe.bat and drop a jar file on it to create a self-contained windows executable for that jar. | |
| SET TEMP_DIR=%temp%\jar2exe | |
| rm -rf %TEMP_DIR% || true | |
| mkdir %TEMP_DIR% |
WSAGENT_DEBUG trueWSAGENT_DEBUG_PORT 8000WSAGENT_DEBUG_SUSPEND yTo quickly figure out the ip of the agent container run docker ps in the console and find the line with eclipse-che/workspace... and in that line the debug port is at 0.0.0.0:xxxxxxx->8000/tcp
| #! /bin/bash | |
| # Copyright 2019 Gerben Oolbekkink | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to | |
| # deal in the Software without restriction, including without limitation the | |
| # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
| # sell copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: |