Wlxyzxyz's Blog

angular相关

2019/3/2

https://angular.io # 安装 ```bash npm install -g @angular/cli ``` # 新建项目 ```bash ng new my-ap

rust相关

2019/2/25

# 安装 https://www.rust-lang.org/learn/get-started ```bash curl https://sh.rustup.rs -sSf | sh

线性回归

2019/2/13

Linear Regression_Intro page 10 生成数据 ```python NumberObservations=100 minVal=1 maxVal=20 X

python相关

2019/2/12

# numpy ```python #正态分布 import numpy as np np.random.normal(0, 1, 100) #μ=0,σ=1 ``` DataFram

修理laserjet_m1005打印机

2019/1/27

## 问题 家里的打印机在打印的时候会两张纸一起进去,然后卡住。在打印的时候会发出很响的“卡塔”的响声。 ## 查看搓纸滚轮 ![](IMG_1183.JPG) ![搓纸滚轮](IMG_118

安装spring boot

2019/1/24

## 下载java 下载地址 https://www.oracle.com/technetwork/java/javase/downloads/index.html ```bash j

mpchc和madvr

2018/10/24

下载并解压madVR http://www.madvr.com ![download](downloadm.png) ![move](move.png) 管理员身份运行install.bat

蓝牙鼠标掉线

2018/9/29

允许蓝牙设备查找这台电脑 ![img](bluetooth1_1.png) ![img](bluetooth1_2.png) 在设备管理器中关闭“允许计算机关闭此设备以节约电源”选项 ![

mysql数据库远程连接

2018/9/9

/etc/mysql/mysql.conf.d/mysqld.cnf 注释掉 ``` bash #bind-address = 127.0.0.1 ``` service mysql

ssh隧道远程端口转发

2018/8/28

设置GatewayPort ```shell sudo vim /etc/ssh/sshd_config GatewayPort yes ``` 重启ssh使其生效 ```shell