元素法师的修习日志-SD/NovelAI Prompt写法总览

总览

image.png

平时写tag超过150就会心慌了,之前的极限是不超过250。
这次元素堆的有点多,堆tag超过400了,也顺便试试看哪些有冲突。目前完整按照我设想的出图率在5%,良品率在20%左右。
其他大部分都是背景设定(虽然效果也不错)。
减少一些元素描述会增加出图稳定性(或者你也可以当成词条包来看待

Read more

GIT:A boon for open-source developers who need to collaborate on code.

Local Git Config

Create the Encrypted connection

  • Generate the SSH key
    1
    ssh-keygen -t rsa -C "[Email on Github]"
  • Put the public key(.pub) to the GitHub settings
  • Verify the connection’s available

Initial the Git configuration

1
2
git config --global user.name  "name" //你的GitHub登陆名
git config --global user.email "123@126.com" //你的GitHub注册邮箱
Read more

使用 Raspberry Pi 搭建 Kodi 家庭影院

下载kodi

1
sudo apt install kodi

配置kodi自启动

  • 配置服务
    1
    sudo vim /lib/systemd/system/kodi.service

并输入以下内容

1
2
3
4
5
6
7
8
9
10
11
12
13
[Unit]
Description = Kodi Media Center
After = remote-fs.target network-online.target
Wants = network-online.target

[Service]
Type = simple
ExecStart = /usr/bin/kodi-standalone
Restart = on-abort
RestartSec = 5

[Install]
WantedBy = multi-user.target
Read more

使用 Raspberry Pi 自建 MinIO 图床

在服务器/树莓派搭建MinIO

我使用的图床为MinIO,可以使用docker一键搭建
其中账号和密码均在其中

1
2
3
4
5
6
7
8
9
10
11
docker run \
-p 9000:9000 \
-p 9001:9001 \
--name minio1 \
-v /data/minio/data:/data \
-v /data/minio/config:/root/.minio \
-e "MINIO_ROOT_USER=IHCVodsfa23jsksssv12" \
-e "MINIO_ROOT_PASSWORD=IUH2ioh23xxIid33" \
-e MINIO_SERVER_URL=http://localhost:9000 \
quay.io/minio/minio server /data \
--address ":9000" --console-address ":9001" \

设置启动docker便自启动容器

1
docker update --restart=always minio1
Read more

Arch Linux 全流程安装纪实

Tips:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
chsh -s /bin/zsh
rdesktop 192.144.238.188 -u administrator -p 0Xiao4Sheng2Ye6
prime-run vboxmanage startvm "Win10" --type gui
archlinux-java status
proxychains systemsettings5
radeontop
nvidia-smi
lspci | grep -E 'VGA|3D'
HTTP_PROXY=127.0.0.1:1089
HTTPS_PROXY=127.0.0.1:1089
sudo balooctl disable

ctrl+z
# 将当前进程放到后台挂起
bg
# 将挂起进程放到后台执行
fg
#将后台执行进程放到前台执行

2021 Archlinux双系统安装教程(超详细) - 知乎
以官方Wiki的方式安装ArchLinux | viseator’s blog

Read more