为了分辨用户,开发者将在获取你的明示同意后,收集你的微信昵称、头像。
为了显示距离,开发者将在获取你的明示同意后,收集你的位置信息。
开发者收集你的地址,用于获取位置信息。
开发者收集你的发票信息,用于维护消费功能。
为了用户互动,开发者将在获取你的明示同意后,收集你的微信运动步数。
为了通过语音与其他用户交流互动,开发者将在获取你的明示同意后,访问你的麦克风。
开发者收集你选中的照片或视频信息,用于提前上传减少上传时间。
为了上传图片或者视频,开发者将在获取你的明示同意后,访问你的摄像头。
为了登录或者注册,开发者将在获取你的明示同意后,收集你的手机号。
开发者使用你的通讯录(仅写入)权限,用于方便用户联系信息。
开发者收集你的设备信息,用于保障你正常使用网络服务。
开发者收集你的身份证号码,用于实名认证后才能继续使用的相关网络服务。
开发者收集你的订单信息,用于方便获取订单信息。
开发者收集你的发布内容,用于用户互动。
开发者收集你的所关注账号,用于用户互动。
开发者收集你的操作日志,用于运营维护。
为了保存图片或者上传图片,开发者将在获取你的明示同意后,使用你的相册(仅写入)权限。
为了用户互动,开发者将在获取你的明示同意后,收集你的车牌号。
开发者访问你的蓝牙,用于设备连接。
开发者使用你的日历(仅写入)权限,用于用户日历日程提醒。
开发者收集你的邮箱,用于在必要时和用户联系。
开发者收集你选中的文件,用于提前上传减少上传时间。
作者: admin
线性代数
http://web.mit.edu/18.06/www/
https://mitmath.github.io/1806/
http://open.163.com/special/opencourse/daishu.html
https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/video-lectures/
FREE SSL, use Let’s Encrypt by acme.sh
https://letsencrypt.org/zh-cn/getting-started/
https://letsencrypt.org/zh-cn/docs/client-options/
https://github.com/acmesh-official/get.acme.sh
https://gh.llkk.cc/https://raw.githubusercontent.com/acmesh-official/acme.sh/master/acme.sh
======在windows 下获取 ssl
1. 安装 GIT , https://www.git-scm.com/download/win
2. 打开 git bash,执行如下命令,注意替换对应域名,apnode.win
mkdir /c/.acme.sh
cd /c/.acme.sh
git clone https://gitee.com/apnode/acme.sh.git
cd acme.sh
#
# 设置默认ca
# acme.sh --set-default-ca --server letsencrypt
./acme.sh --home /c/.acme.sh/home --register-account -m admin@apnode.win
# 执行正常注册
./acme.sh --home /c/.acme.sh/home --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --issue -d 'apnode.win'
./acme.sh --home /c/.acme.sh/home --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --renew -d 'apnode.win'
./acme.sh --home /c/.acme.sh/home --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --issue -d 'apnode.win' -d '*.apnode.win'
./acme.sh --home /c/.acme.sh/home --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --renew -d 'apnode.win' -d '*.apnode.win' --force
./acme.sh --home /c/.acme.sh/home --installcert --ecc --keylength ec-256 -d 'apnode.win' --fullchainpath /c/.acme.sh/install/apnode.win-full.crt --keypath /c/.acme.sh/install/apnode.win-full.key
Linux操作
alias acme.sh='/root/.acme.sh/acme.sh --home /root/.acme.sh '
# acme.sh --set-default-ca --server letsencrypt
# acme.sh --set-default-ca --server buypass
# acme.sh --set-default-ca --server google
# acme.sh --register-account --server zerossl -m admin@apnode.win
# acme.sh --register-account --server buypass -m admin@apnode.win
# acme.sh --register-account --server google -m admin@apnode.win
#
# 通配符证书
export Tencent_SecretId="XXXXXXXXXXXXXXXXX"
export Tencent_SecretKey="VVVVVVVVVVVVVVVVV"
acme.sh --issue --dns dns_tencent -d apnode.win -d *.apnode.win
# acme.sh --update-account
# 执行正常注册
acme.sh --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --issue -d 'apnode.win'
acme.sh --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --renew -d 'apnode.win'
acme.sh --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --issue -d 'apnode.win' -d '*.apnode.win'
acme.sh --ecc --keylength ec-256 --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please --renew -d 'apnode.win' -d '*.apnode.win' --force
acme.sh --installcert --ecc --keylength ec-256 -d 'apnode.win' --fullchainpath ./apnode.win-full.crt --keypath ./apnode.win-full.key
acme.sh --standalone --httpport 8888 --issue -d {domain}
acme.sh --installcert -d {domain} --fullchainpath /root/{domain}.crt --keypath /root/{domain}.key
acme.sh --issue -d {domain} -w /app/vhost/{domain}/webroot/
acme.sh --installcert -d {domain} --fullchainpath /app/vhost/{domain}.crt --keypath /app/vhost/{domain}.key
附录-设置默认使用的CA
参考文档:https://github.com/acmesh-official/acme.sh/wiki/Server
letsencrypt https://acme-v02.api.letsencrypt.org/directory
buypass https://api.buypass.com/acme/directory
zerossl https://acme.zerossl.com/v2/DV90
sslcom https://acme.ssl.com/sslcom-dv-rsa, https://acme.ssl.com/sslcom-dv-ecc
root@localhost:~# acme.sh --set-default-ca --server letsencrypt
===========
参考
https://www.cnblogs.com/network-ren/p/15849756.html
Vue项目,记录,推荐
vue-admin-beautiful
https://gitee.com/chu1204505056/vue-admin-beautiful.git
Avue
https://avuejs.com
Vue管理后台框架
http://element.eleme.io
https://github.com/PanJiaChen/vue-element-admin
Vue Admin
https://admin.vuebulma.com
https://github.com/taylorchen709/vue-admin
iview-admin
https://github.com/iview/iview-admin
vuestic-admin
https://github.com/epicmaxco/vuestic-admin
d2-admin
https://github.com/d2-projects/d2-admin
多重启动USB及PE制作
https://www.pendrivelinux.com/yumi-multiboot-usb-creator/
https://unetbootin.github.io/
https://rufus.ie/en/
https://www.wepe.com.cn
https://www.balena.io/etcher/