CHEATSHEET

midjourney 提示词汇表,风格和处理

2023-03-02

大部分词汇同样也可以用在 stable diffusion 中。

风格词汇

  • __ style 定义风格
  • pixel style 像素风格

    pixel style,cat pixel_style

    • 8-bit game pixel art
    • 16-bit game pixel art
  • 3d render 3d 渲染

    cat jump, 3d render 3d render cat

  • :blender 3d blender 3d 渲染
  • naive art 童贞艺术
  • design as Sticker of __ 贴纸风格
  • flat icon design 图标制作
  • layered paper 折纸风格
  • isometric art 等轴艺术
  • low poly

PHP Redis cheatsheet

2020-11-25

安装

使用pecl 安装 redis扩展

pecl install redis

安装之后追加 extension="redis.so" 到 php.ini

Mysql Cheatsheet

2019-12-20

创建/删除 数据库

Create / Delete Database

CREATE DATABASE dbNameYouWant -- 创建数据库
CREATE DATABASE dbNameYouWant CHARACTER SET utf8 -- 创建并设定字符
DROP DATABASE dbNameYouWant -- 删除
ALTER DATABASE dbNameYouWant CHARACTER SET utf8 -- 修改
USE dbNameYouWant -- 使用数据库作为默认操作对象,如果要操作数据表

备份数据库到 sql 文件

Backup Database to SQL File

mysqldump -u Username -p dbNameYouWant > databasename_backup.sql

Git 常用命令速查表

2019-12-18

创建版本库

  • git init # 初始化本地版本库
  • git clone <url> # 克隆远程版本库

安装配置

git config --global user.name "Your Name"
git config --global user.email your.email@example.com
git config --global color.ui true  	#  git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto

添加 .gitignore 文件,输入过滤文件以及文件夹

Terminal & iterm2 cheatsheet

2019-12-18
  • terminal
  • iterm2