使用JAV金鸡儿奖官网附带的工具JAV SQL 查询器,可查询各种类别的JavDB TOP250影片:
及分年数据(存在部分重复影片,原始数据的问题):
使用JAV金鸡儿奖官网附带的工具JAV SQL 查询器,可查询各种类别的JavDB TOP250影片:
及分年数据(存在部分重复影片,原始数据的问题):
| # Tested on an upgraded Ubuntu 20.04 | |
| apt install netplan.io | |
| systemctl unmask systemd-networkd.service | |
| systemctl unmask systemd-resolved.service | |
| ENABLE_TEST_COMMANDS=1 netplan migrate | |
| netplan try | |
| reboot | |
| apt purge ifupdown resolvconf | |
| ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf |
| Information from https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file : | |
| Use any character in the current code page for a name, including Unicode | |
| characters and characters in the extended character set (128–255), except | |
| for the following: | |
| - The following reserved characters: | |
| < (less than) | |
| > (greater than) |
| // +build windows | |
| package screen | |
| import ( | |
| "fmt" | |
| "image" | |
| "reflect" | |
| "syscall" | |
| "unsafe" |
| ############################################################################### | |
| # Helpful Docker commands and code snippets | |
| ############################################################################### | |
| ### CONTAINERS ### | |
| docker stop $(docker ps -a -q) #stop ALL containers | |
| docker rm -f $(docker ps -a -q) # remove ALL containers | |
| docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter | |
| # exec into container |