$ uname -r
This file contains hidden or 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 os | |
from collections.abc import Iterator | |
from reportlab.pdfgen import canvas | |
from reportlab.lib.pagesizes import LETTER, landscape | |
from reportlab.lib.units import inch | |
from reportlab.pdfbase import pdfmetrics | |
from reportlab.pdfbase.ttfonts import TTFont | |
# Usage: | |
# label = AveryLabels.AveryLabel(5160) |
This file contains hidden or 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 tempfile | |
import glob | |
import argparse | |
# import xlrd | |
import pandas | |
from os.path import join, basename | |
from shutil import copyfile | |
from pdf2image import convert_from_path # , convert_from_bytes | |
from pyzbar.pyzbar import decode | |
# from PIL import Image |
This file contains hidden or 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
@echo off | |
chcp 65001 > nul | |
set E1C_RAS=localhost:3545 | |
set E1C_RAC=C:\Program Files\1cv8\current\bin\rac.exe | |
set DB_SERVER=localhost:3541 | |
set DB_NAME=1C_DATABASE | |
set DB_USER=1C_ADMINISTRATOR | |
set DB_PWD=1C_PASSWORD | |
set PGUSER=PG_ADMINISTRATOR |
This file contains hidden or 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
### Hetzner Online AG - installimage | |
# Loopback device: | |
auto lo | |
iface lo inet loopback | |
# device: eth0 | |
auto eth0 ##Hetzner Interface | |
iface eth0 inet static | |
address <Main IP> | |
broadcast <Broadcast IP> |