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 python | |
# encoding: utf-8 | |
import os | |
import re | |
import argparse | |
import sys | |
class AudiobookCueSheet(): |
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
#!/bin/bash | |
# This script has a few pre-requisites: | |
# | |
# 1. The audible-cli must be installed and available in the $PATH. | |
# https://github.com/mkb79/audible-cli | |
# e.g. export PATH=$PATH:/home/$(whoami)/.local/bin | |
# | |
# 2. The update_chapter_titles.py must also be present in the same | |
# directory as this file. This also relies on python3 being in the $PATH |
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
version: "2" | |
services: | |
letsencrypt: | |
image: linuxserver/letsencrypt | |
container_name: letsencrypt | |
restart: always | |
cap_add: | |
- NET_ADMIN | |
depends_on: |
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 example; | |
import javax.persistence.Column; | |
import javax.persistence.Entity; | |
import javax.persistence.GeneratedValue; | |
import javax.persistence.Id; | |
@Entity(name = "employee") | |
public class Employee { | |