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
各种Caddyfile实用技巧 | |
目录: | |
- basic_auth | |
- cert_by_dns | |
- cors常用宏 | |
- file_server | |
- hsts | |
- http和https共用一个端口 | |
- redir | |
- reverse_proxy HTTPS |
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 sys | |
import time | |
import traceback | |
# from multiprocessing import Queue, Process | |
from queue import Empty, Queue | |
from threading import Thread | |
import numpy as np | |
import open3d as o3d |
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
version: '3' | |
services: | |
waline: | |
container_name: waline | |
image: lizheming/waline:latest | |
restart: always | |
ports: | |
- 127.0.0.1:8360:8360 | |
volumes: |