2019年2月13日
numpy #正态分布 import numpy as np np.random.normal(0, 1, 100) #μ=0,σ=1 DataFrame增加一列
df['new_column'] = data df.insert(index, 'flag', array) DataFrame选择两列
df[['a','b']] pd.DataFrame(df,columns = ['s','b']) python plot
plt.plot(df['a'], df['b'], 'o') plt.show() 保存文件时索引 https://blog.csdn.net/sinat_29957455/article/details/79059436
fluent python 相关 列表推导和生成器表达式
symbols = '$%x' codes = [ord(symbol) for symbol in symbols] #以下效果相同 beyond_ascii = [ord(s) for s in symbols if ord(s)>127] beyond_ascii = list(filter(lambda c: c>127, map(ord,symbols))) 文件读写 try: f = open('file', 'r') print(f.read()) finally: if f: f.……
阅读全文
2019年1月28日
问题 家里的打印机在打印的时候会两张纸一起进去,然后卡住。在打印的时候会发出很响的“卡塔”的响声。
查看搓纸滚轮 一开始以为是分纸器的搓纸滚轮的问题,于是买了一个换上,但是问题没有解决。
拆打印机 注意卡扣,小心往外侧掰开,然后取下侧面的塑料板 侧面的最下方能看到继电器。这里被挡住了,但是螺丝刀斜着可以伸进去,慢慢地把黑色螺丝拧松,小心不要把螺丝拧滑牙了。 取下继电器后发现原来橡胶的部分被磨没了,而且原来是橡胶的地方已经粘糊糊了,导致画圈的地方不能很好地分开,“卡塔”的响声也是这个原因。最后用电工胶带在这里粘上,再装回去能够解决问题。
HP LaserJet M1005 MFP Service Manual……
阅读全文
2019年1月25日
下载java 下载地址 https://www.oracle.com/technetwork/java/javase/downloads/index.html
java --version java 11.0.2 2019-01-15 LTS Java(TM) SE Runtime Environment 18.9 (build 11.0.2+9-LTS) Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.2+9-LTS, mixed mode) whereis java /usr/bin/java IntelliJ IDEA 新建项目
可以在这里添加框架支持
目录结构
maven中添加
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.2.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.example</groupId> <artifactId>demo</artifactId> <version>0.0.1-SNAPSHOT</version> <name>demo</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.……
阅读全文
2018年10月25日
下载并解压madVR http://www.madvr.com 管理员身份运行install.bat 设置使用madVR
使用mpc hc 播放影片
右下角小图标右键edit……
阅读全文
2018年9月30日
允许蓝牙设备查找这台电脑 在设备管理器中关闭“允许计算机关闭此设备以节约电源”选项 ……
阅读全文
2018年9月10日
/etc/mysql/mysql.conf.d/mysqld.cnf
注释掉
#bind-address = 127.0.0.1 service mysql restart……
阅读全文
2018年8月29日
设置GatewayPort
sudo vim /etc/ssh/sshd_config GatewayPort yes 重启ssh使其生效
/etc/init.d/ssh restart ssh -NfR {localport}:{localhost}:{remoteport} {username}@{remoteip} #举例 ssh -NfR 222:0.0.0.0:22 root@ip地址 -N:不执行远程指令 -f:后台执行ssh指令 -R: 远程端口转发
保持连接
vim ~/.ssh/config ServerAliveInterval 30 关闭
fuser -v -n tcp {端口} kill 9 {进程号} ……
阅读全文
2018年8月12日
安装nginx和php
sudo apt install nginx php-fpm php --version #测试是否安装成功 在目录下下载speedtest speedtest地址 https://github.com/adolfintel/speedtest
cd /var/www/ git clone https://github.com/adolfintel/speedtest 配置nginx的设置,这里我没有动nginx.conf , 而是修改的/etc/nginx/sites-enabled/default 文件
server { listen 80 default_server; listen [::]:80 default_server; # SSL configuration # # listen 443 ssl default_server; # listen [::]:443 ssl default_server; # # Note: You should disable gzip for SSL traffic. # See: https://bugs.debian.org/773332 # # Read up on ssl_ciphers to ensure a secure configuration. # See: https://bugs.debian.org/765782 # # Self signed certs generated by the ssl-cert package # Don't use them in a production server!……
阅读全文
2018年8月11日
下载TGFont.dll https://github.com/ysc3839/TGFont/releases
重命名为winmm.dll并且放入telegram的文件夹下面
重启telegram,会出现TGFont.json文件
{ "fonts": { "SimSun": { "replace": "Microsoft YaHei UI", "size": 40, "#width": 0, "#weight": 0, "#italic": false, "#underLine": false, "#strikeOut": false, "#charSet": 0, "#outPrecision": 0, "#clipPrecision": 0, "#quality": 0, "#pitchAndFamily": 0 } }, "debug": false } 再次重启telegram……
阅读全文
2018年8月1日
Windows quick look https://github.com/QL-Win/QuickLook
cmder http://cmder.net/
cygwin https://www.cygwin.com/
xshell https://www.netsarang.com/en/free-for-home-school/
Universal USB Installer
etcher
ComicRack http://comicrack.cyolito.com/
Linux neofetch https://github.com/dylanaraps/neofetch
diffuse 比较文本 http://diffuse.sourceforge.net/download.html
Mac homebrew https://brew.sh/
macdown https://macdown.uranusjr.com/
iterm2 https://www.iterm2.com/
termius
iStats https://github.com/Chris911/iStats
LuLu https://objective-see.com/index.html
pock https://github.com/pigigaldi/Pock 在bar上显示docker
SwitchKey https://github.com/itsuhane/SwitchKey 不同应用自动切换输入法
cross-platform typora https://typora.io/
snipaste https://zh.snipaste.com/
wireshark https://www.wireshark.org
DeaDBeeF http://deadbeef.sourceforge.net/
MComix https://sourceforge.net/projects/mcomix/
Zettlr https://www.zettlr.com/
mark text https://github.com/marktext/marktext/releases
dupuguru 处理重复软件 https://github.com/arsenetar/dupeguru/releases
终端 autojump ranger https://ranger.github.io/
配置终端PS1工具 http://bashrcgenerator.com/
插件 https://chrome.google.com/webstore/detail/url-render/flhclpkhoiajoikkabbfbinnjapaflog
字体 Dejavu https://dejavu-fonts.github.io……
阅读全文