To-Die List
cores:
- clash 2023.11.3
- Clash.Meta 2023.11.3
GUIs:
- cfw 2023.11.2
// get your public ip of the subnet | |
// base code fetch from <https://nodejs.dev/learn/build-an-http-server> | |
// how to run? : `node ./GetPublicIpAddrServer.js` | |
const http = require('http') | |
const port4 = 12345 | |
const port6 = 12346 | |
const svn_fn = (req, res) => { | |
res.statusCode = 200 |
import java.time.Instant | |
import java.time.LocalDate | |
import java.time.LocalDateTime | |
import java.time.LocalTime | |
import java.time.format.DateTimeFormatter | |
fun main(){ | |
print("local date: ${LocalDate.now()}") // 2022-02-18 | |
print("local time: ${LocalTime.now()}") // 15:46:05.838 | |
print("instant now: ${Instant.now()}"); // 2022-02-18T07:46:05.838Z |
#!/bin/bash | |
set -e | |
fn=sources.list | |
sfn=/etc/apt/$fn | |
ali="mirrors.aliyun.com" | |
ustc="mirrors.ustc.edu.cn" | |
ts="mirrors.tuna.tsinghua.edu.cn" | |
raw="$(awk -F / '{print $3}' /etc/apt/sources.list.raw |grep -v "^$"|head -n 1)" | |
cp $sfn ./$fn | |
sudo mv $sfn $sfn.raw |
alias Docker="sudo docker" | |
# rm <none> images which is generated by error when building | |
Docker rmi $(Docker images|grep none|awk '{print $3}'|xargs) | |
# remove all containers | |
Docker rm $(Docker ps -aq|xargs) |
#!/bin/bash | |
# need parameters check | |
sudo useradd --create-home --groups sudo --shell /bin/bash $1 | |
# useradd -m -G sudo -s /bin/bash $1 | |
echo -e -n "$2\n$2" | passwd $1 |
# Set-ExecutionPolicy RemoteSigned # enable script exec | |
#------------------------ Import BEGIN ---------------------------# | |
Import-Module PSReadLine # Install-Module -Name PSReadLine | |
# to know more: https://github.com/PowerShell/PSReadLine/blob/master/README.md | |
#------------------------------- Set Hot-keys BEGIN ------------------------------- | |
# 设置 Tab 键补全 | |
# Set-PSReadlineKeyHandler -Key Tab -Function Complete | |
# 命令行使用 Emacs 模式 (与Bash一致) | |
Set-PSReadLineOption -EditMode Emacs |
#!/bin/env bash | |
# | |
# lework | |
# Os repo mirror site speed test. | |
###################################################################################################### | |
# environment configuration | |
###################################################################################################### |
import requests as reqs | |
from PIL import Image | |
urls = [ # your images in group | |
[ | |
"", "", "" | |
], | |
[], | |
[] | |
] |
""" | |
for Android Termux images concat vertically usage | |
requirements.txt: | |
pillow | |
typer | |
mannul installation | |
typer: pip | |
pillow: |
To-Die List
cores:
GUIs: