https://github.com/nodesource/distributions
可以参考上面的项目,哪个版本都能装
以Ubuntu安装18.X为例:
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - &&\
sudo apt-get install -y nodejs
[......]
https://github.com/nodesource/distributions
可以参考上面的项目,哪个版本都能装
以Ubuntu安装18.X为例:
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - &&\
sudo apt-get install -y nodejs
[......]
www.md5-checksum.com md5-checksum.com {
reverse_proxy 127.0.0.1:3000 {
header_up -Origin
}
}
[......]
https://www.dyxmq.cn/program/draw-an-array-or-linked-list-node-by-graphviz.html
例如链表等,很方便[......]
我的是T14,每次冷开机时触摸板都好用,休眠恢复后就各种失灵。
试了很多办法,目前这个管用:
sudo vim /lib/systemd/system-sleep/touchpad
#!/bin/bash
if [[ $1 == post ]]; then
modprobe -r psmouse
modprobe psmouse
fi
然后添加权限
chmod a+x /lib/systemd/system-sleep/touchpad
然后重启试试效果吧[......]
聚宽没有提供恒生的数据,但是可以通过获取腾讯股票的接口来取。
import json
import requests
import pandas as pd
# 下载恒生指数
html = requests.get('http://web.ifzq.gtimg.cn/appstock/app/hkfqkline/get?param=hkHSI,day,,,250,qfq').content
obj = json.loads(html)
hk=pd[......]