How to build Clash dashboard inside Docker
https://github.com/Dreamacro/clash-dashboard
Save codes below as Dockerfile.
FROM node:lts-stretch
COPY . .
FROM ubuntu:20.04 | |
RUN apt-get update && apt-get install -y wget | |
ARG url="https://dl-cdn.oray.com/hsk/linux/phddns-5.0.0-amd64.deb" | |
RUN wget "$url" -O phddns.deb && \ | |
dpkg -i phddns.deb && \ | |
rm phddns.deb |
diff --git a/Makefile.flags b/Makefile.flags | |
index cff935ff5..e5818f5db 100644 | |
--- a/Makefile.flags | |
+++ b/Makefile.flags | |
@@ -152,7 +152,7 @@ CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >crypttest.c; $(CC) | |
ifeq ($(CRYPT_AVAILABLE),y) | |
LDLIBS += m rt crypt | |
else | |
-LDLIBS += m rt | |
+LDLIBS += m |
https://github.com/Dreamacro/clash-dashboard
Save codes below as Dockerfile.
FROM node:lts-stretch
COPY . .
Fetch channels from WASU IPTV box web API and generate m3u8 from return data.
#!/bin/sh /etc/rc.common | |
# | |
# Copyright (C) 2016 Jian Chang <aa65535@live.com> | |
# Copyright (C) 2016 Evian Zhow <evianzhow@gmail.com> | |
# | |
# This is free software, licensed under the GNU General Public License v3. | |
# See /LICENSE for more information. | |
# | |
START=90 |
curl -sSL https://gist.githubusercontent.com/ttimasdf/ef739670ac5d627981c5695adf4c8f98/raw/autossh@host1 | \
sudo tee /etc/default/autossh@example
curl -sSL https://gist.githubusercontent.com/ttimasdf/ef739670ac5d627981c5695adf4c8f98/raw/autossh@.service | \
sudo tee /etc/systemd/system/autossh@.service
sudo useradd -g nogroup -s /bin/false -m tunnel
sudo -u tunnel mkdir -p ~tunnel/.ssh # and copy your private key here
Inspired from: https://github.com/vigente/gerardus/wiki/Integrate-git-diffs-with-word-docx-files
Usage:
cd /path/to/your/repo/with/docx
sh -c "$(curl -fsSL https://gist.githubusercontent.com/ttimasdf/7965baab972b901c1f8349ce5fcb5e09/raw/setup-git-hook.sh)"
Done!
STEPS
Click on Help menu
Select Enter License
Then paste given KEY given at bottom
Finally click on Use License
diff --git a/sbin/db_mgmt_cpe_dictionary.py b/sbin/db_mgmt_cpe_dictionary.py | |
index 4c904cf..37cd9c8 100755 | |
--- a/sbin/db_mgmt_cpe_dictionary.py | |
+++ b/sbin/db_mgmt_cpe_dictionary.py | |
@@ -31,6 +31,7 @@ from lib.ProgressBar import progressbar | |
from lib.Toolkit import toStringFormattedCPE | |
from lib.Config import Configuration | |
import lib.DatabaseLayer as db | |
+from time import time | |
#!/usr/bin/env bash | |
ENV_PATH="$(dirname "$(dirname "$(which pip)")")" | |
SYSTEM_VIRTUALENV="$(which -a virtualenv|tail -1)" | |
echo "Ensure the root of current virtualenv:" | |
echo " $ENV_PATH" | |
read -p "‼️ Say no if you are not sure (y/N) " -n 1 -r | |
echo | |
PYEXC_DEF="$(sed -n '1s/^#!//p' $SYSTEM_VIRTUALENV)" | |
read -p "🐍 Choose which python to use? [$PYEXC_DEF] " PYEXC |