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
import datetime | |
from decimal import Decimal | |
import six | |
try: | |
from django.utils.encoding import DjangoUnicodeDecodeError | |
except ImportError: | |
class DjangoUnicodeDecodeError(UnicodeDecodeError): |
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
package me.champeau.deck2pdf; | |
import java.lang.reflect.Field; | |
import java.util.Objects; | |
import javafx.application.Application; | |
/** | |
* Adapted from https://gist.github.com/hastebrot/cbca1128dd791966e3a6 | |
*/ | |
public class HeadlessMain { |