Skip to content

Instantly share code, notes, and snippets.

View Siedlerchr's full-sized avatar

Christoph Siedlerchr

View GitHub Profile
@Siedlerchr
Siedlerchr / Test.java
Created July 20, 2017 16:59
MWE for Linux bug in javafx/swing accents
package application;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
#!/usr/bin/env python3
"""Simple HTTP Server With Upload and basic auth.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
Code is based on:
see: https://gist.github.com/UniIsland/3346170
"""