Visit my blog or connect with me on Twitter
git init
or
# dify config | |
DIFY_API_KEY= | |
DIFY_BASE_URL= |
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| |
-- | |
-- 表的结构 `area` | |
-- | |
DROP TABLE IF EXISTS `area`; | |
CREATE TABLE IF NOT EXISTS `area` ( | |
`id` int(11) NOT NULL auto_increment, | |
`areaID` int(11) NOT NULL, | |
`area` varchar(20) character set gbk NOT NULL, |
# default.custom.yaml | |
# save it to: | |
# ~/.config/ibus/rime (linux) | |
# ~/Library/Rime (macos) | |
# %APPDATA%\Rime (windows) | |
patch: | |
schema_list: | |
- schema: luna_pinyin # 朙月拼音 | |
- schema: luna_pinyin_simp # 朙月拼音 简化字模式 |
Visit my blog or connect with me on Twitter
git init
or
#后台
#前台
# <类型>: (类型的值见下面描述) <主题> (最多50个字) | |
# 解释为什么要做这些改动 | |
# |<---- 请限制每行最多72个字 ---->| | |
# 提供相关文章和其它资源的链接和关键字 | |
# 例如: Github issue #23 | |
# --- 提交 结束 --- | |
# 类型值包含 |
#include <iostream> | |
#include <cstdlib> | |
#include <cstdio> | |
#ifdef WIN32 | |
#include <windows.h> | |
#else | |
#include <unistd.h> | |
#endif //win32 | |
using namespace std; |