WARNING: книги доступны только в виде набора изображений.
Токен доступа к книге извлекается из режима чтения на сайте book.ru, и имеет вид https://reader.new.book.ru/?t=&v=0
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Bootstrap demo</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | |
<style> |
WARNING: книги доступны только в виде набора изображений.
Токен доступа к книге извлекается из режима чтения на сайте book.ru, и имеет вид https://reader.new.book.ru/?t=&v=0
[MASTER] | |
# A comma-separated list of package or module names from where C extensions may | |
# be loaded. Extensions are loading into the active Python interpreter and may | |
# run arbitrary code. | |
extension-pkg-whitelist= | |
# Add files or directories to the blacklist. They should be base names, not | |
# paths. | |
ignore=CVS |
FROM ubuntu:18.04 | |
LABEL ru.squizduos.image squizduos/dev-server | |
LABEL ru.squizduos.maintainer squizduos <[email protected]> | |
LABEL ru.squizduos.url https://squizduos.ru | |
LABEL ru.squizduos.github https://github.com/squizduos | |
LABEL ru.squizduos.registry https://registry.squizduos.ru | |
ARG VERSION='2.1692-vsc1.39.2' |
h1.page-header { | |
margin-top: -5px; | |
} | |
.sidebar { | |
padding-left: 0; | |
} | |
.main-container { | |
background: #FFF; |
#!/bin/bash | |
# Usage: | |
# $ ./multiTelegram myUSERNAME | |
TELEGRAM_BIN="/usr/bin/telegram-desktop" | |
TELEGRAM_DIR_RAW=$HOME"/.multiTelegram" | |
if [ ! -z $1 ] | |
then |
#!/bin/bash | |
# $ARCH=$(dpkg --print-architecture) | |
$ARCH="amd64" | |
mkdir -p /tmp/ffmpeg | |
wget "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-"$ARCH"-static.tar.xz" -O /tmp/ffmpeg/ffmpeg.tar.xz | |
tar -xf /tmp/ffmpeg/ffmpeg.tar.xz -C /tmp/ffmpeg/ --strip-components 1 | |
cp /tmp/ffmpeg/ffmpeg /tmp/ffmpeg/ffprobe /tmp/ffmpeg/qt-faststart /usr/bin | |
rm -rf /tmp/ffmpeg/ |
Env:
CONFIGS=/srv/config
[email protected]
DOMAIN=sqds.me
RESTARTS=unless-stopped
HTTPS
FROM alpine:latest | |
# ARG PACKAGE="hugo_extended" | |
ARG PACKAGE="hugo" | |
ARG REPOSITORY="gohugoio/hugo" | |
ARG VERSION="0.58.2" | |
WORKDIR /opt | |
# Install dependencies (bash, curl and jq for parsing Github) |