Skip to content

Instantly share code, notes, and snippets.

View squizduos's full-sized avatar
💭
Senior Bitard Developer

Semyon Bochkaryov squizduos

💭
Senior Bitard Developer
View GitHub Profile
<!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/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
@squizduos
squizduos / book_ru_downloader.md
Last active February 11, 2024 10:03
Скачивание книг, доступных только для просмотра, с book.ru

Скачиваем книги, закрытые для скачивания, с book.ru

WARNING: книги доступны только в виде набора изображений.

Токен доступа к книге извлекается из режима чтения на сайте book.ru, и имеет вид https://reader.new.book.ru/?t=&amp;v=0

@squizduos
squizduos / .pylintrc
Created July 21, 2020 09:19
My .pylintrc
[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
@squizduos
squizduos / Dockerfile
Last active February 25, 2020 14:53
code-server with Python, Go & Docker client
FROM ubuntu:18.04
LABEL ru.squizduos.image squizduos/dev-server
LABEL ru.squizduos.maintainer squizduos <squizduos@gmail.com>
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'
@squizduos
squizduos / simple-admin.css
Last active December 5, 2019 14:59
Bootstrap 3 Simple Admin Template || https://bootsnipp.com/user/snippets/BxPb9
h1.page-header {
margin-top: -5px;
}
.sidebar {
padding-left: 0;
}
.main-container {
background: #FFF;
@squizduos
squizduos / multiTelegram.sh
Last active November 25, 2019 18:46 — forked from David256/multiTelegram.sh
A bash script to multiple accounts with Telegram GNU/Linux
#!/bin/bash
# Usage:
# $ ./multiTelegram myUSERNAME
TELEGRAM_BIN="/usr/bin/telegram-desktop"
TELEGRAM_DIR_RAW=$HOME"/.multiTelegram"
if [ ! -z $1 ]
then
@squizduos
squizduos / install-ffmpeg-static.sh
Created November 5, 2019 14:59
Installs static ffmpeg libraries
#!/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/
@squizduos
squizduos / README.md
Created October 31, 2019 15:48
traefik with Docker Registry and VS Code

traefik

Env:

CONFIGS=/srv/config
EMAIL=squizduos@gmail.com
DOMAIN=sqds.me
RESTARTS=unless-stopped
@squizduos
squizduos / README.md
Last active April 24, 2022 20:10
VPN99 HTTP Proxy Servers List

VPN99 HTTP Proxy Servers List

List

Connection params

  • Type: HTTPS
@squizduos
squizduos / Dockerfile
Created October 15, 2019 13:28
Hugo in Docker image, packed with Alpine Lunux
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)