This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<table> | |
<tr style="vertical-align:top"> | |
<td> | |
<textarea id="input" name="input" rows="400" cols="100"></textarea> | |
</td> |
This file contains 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
# what you need to run this: | |
# tensorflow 2.0.0 | |
from __future__ import absolute_import, division, print_function, unicode_literals | |
# TensorFlow and tf.keras | |
import tensorflow as tf | |
from tensorflow import keras | |
# Helper libraries | |
import numpy as np |
This file contains 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
#!/usr/bin/env python3 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
see: https://gist.github.com/UniIsland/3346170 | |
EDIT by cpdef: | |
needs now an certificate |
This file contains 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
julian@horst ~/Dokumente/Programme/unknown-horizons $ mkdir install_dir | |
julian@horst ~/Dokumente/Programme/unknown-horizons $ cd fifechan | |
julian@horst ~/Dokumente/Programme/unknown-horizons/fifechan $ mkdir _build && cd _build | |
julian@horst ~/Dokumente/Programme/unknown-horizons/fifechan/_build $ cmake -DCMAKE_INSTALL_PREFIX:PATH=/home/julian/Dokumente/Programme/unknown-horizons/install_dir .. | |
-- The C compiler identification is GNU 5.4.0 | |
-- The CXX compiler identification is GNU 5.4.0 | |
-- Check for working C compiler: /usr/bin/cc | |
-- Check for working C compiler: /usr/bin/cc -- works | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done |