diff --git a/20191103/test.html b/20191103/test.html
index 081aad4..7d3887d 100644
--- a/20191103/test.html
+++ b/20191103/test.html
@@ -33,7 +33,7 @@
btn.onclick = function() {
console.log(getStyle(dv,'left'))
console.log(getStyle(dv,'margin-left'))
- console.log(getStyle(dv,'background'))
+ console.log(getStyle(dv,'backgroundColor'))
console.log(getStyle(dv,'width'))
}
}
diff --git a/20191103/test2.html b/20191103/test2.html
new file mode 100644
index 0000000..1197042
--- /dev/null
+++ b/20191103/test2.html
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20191106/20191106.md b/20191106/20191106.md
new file mode 100644
index 0000000..e69de29
diff --git a/Miscellaneous/flask.md b/Miscellaneous/flask.md
new file mode 100644
index 0000000..de630f7
--- /dev/null
+++ b/Miscellaneous/flask.md
@@ -0,0 +1,9 @@
+#flask
+
+* venv
+ * 关闭 `deactivate`
+
+* 在路由中
+ * 同时有user/ 和 user 优先解释 user/
+ * 只有 user 的情况下 访问user/会报404
+ * 只有 user/ 的情况下 访问user会被重定向
\ No newline at end of file
diff --git a/Miscellaneous/linux.md b/Miscellaneous/linux.md
new file mode 100644
index 0000000..f77d944
--- /dev/null
+++ b/Miscellaneous/linux.md
@@ -0,0 +1,7 @@
+# linux
+
+查看所有端口占用情况
+`netstat -ntlp`
+
+创建文件
+`touch`
\ No newline at end of file
diff --git a/Miscellaneous/mongoDB.md b/Miscellaneous/mongoDB.md
new file mode 100644
index 0000000..967e5e7
--- /dev/null
+++ b/Miscellaneous/mongoDB.md
@@ -0,0 +1,309 @@
+# mongoDB
+
+### 创建新用户
+```js
+db.createUser(
+ {
+ user: "yingbo",
+ pwd: "623910ert",
+ roles: [ { role: "dbAdmin", db: "yingbo" },{ role: 'readWrite', db: "yingbo"} ]
+ }
+)
+
+db.createUser(
+ {
+ user: "admin",
+ pwd: "rqRrjTDaq9",
+ roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
+ }
+)
+```
+
+### log目录 `/var/log/mongodb/mongod.log`
+
+### db目录 `/var/lib/mongo`
+
+### 配置文件 `/etc/mongod.conf`
+
+### 端口 12236
+
+### 启动/重启/停止 `sudo service mongod start/restart/stop`
+
+### 开启用户认证 conf 文件加
+```
+security:
+ authorization: enabled
+```
+### 登录
+``` c
+//方法一
+mongo --port 12236 -u "admin" -p "rqRrjTDaq9" --authenticationDatabase "admin"
+//方法二
+db.auth("yingbo", "623910ert")
+db.auth("admin", "rqRrjTDaq9")
+```
+
+### 显示所有数据库
+`show dbs`
+
+### 删库
+```
+use
+db.dropDatabase()
+```
+
+### 显示所有集合
+`show tables` 或者 `show collections`
+
+### 创建集合
+```js
+//正常情况下直接插入数据就可以自动新建一个集合
+
+//创建固定集合 mycol,整个集合空间大小 6142800 KB, 文档最大个数为 10000 个。
+db.createCollection("", { capped : true, autoIndexId : true, size :
+ 6142800, max : 10000 } )
+
+//单纯的新建一个集合
+db.createCollection("")
+```
+
+### 删除集合
+`db..drop()`
+
+### 增
+`db..insert(