分类 Study 下的文章

自建中继使用RustDesk


服务端搭建中继服务器推荐使用linux来搭建中继服务器,且有公网ip使用宝塔面板# Xshell连接服务器…… cd /root mkdir rustdesk cd rustdesk wgethttps://github.com/rustdesk/rustdesk-server/releases/download/1.1.6/rustdesk-server-linux-x64.zip unzip rustdesk-server-linux-x64.zip ls 查看有无hbbr和hbbs两份文件hbbr:通常用于建立连接。它可能是一种服务端应用程序,负责接受客户端的连接请求,验证客户端身份,并建立起双向通信的连接。在某些情况下,hbbr 可能充当中继服务器或者数据交换的中心节点。hbbs:通常用于传输数据。它可能是一种客户端应用程序,负责向 hbbr 或其他服...

Nginx反向代理、负载均衡、防盗链


反向代理proxy_pass http://baidu.com;location / { proxy_pass http://atguigu.com/; }基于反向代理的负载均衡upstream httpd { server 192.168.44.102:80; server 192.168.43.103:80; }负载均衡策略轮询默认情况下使用轮询方式,逐一转发,这种方式适用于无状态请求。weight(权重)指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。upstream httpd { server 127.0.0.1:8050 weight=10 down; server 127.0.0.1:8060 weight=1; server 127.0.0.1:8060 weight=1...

Nginx配置与应用场景


最小配置worker_processesworker_processes 1; 默认为1,表示开启一个业务进程worker_connectionsworker_connections 1024; 单个业务进程可接受连接数include mime.typesinclude mime.types; 引入http mime类型default_type application/octet-streamdefault_type application/octet-stream; 如果mime类型没匹配上,默认使用二进制流的方式传输sendfile onsendfile on; 使用linux的 sendfile(socket, file, len) 高效网络传输,也就是数据0拷贝。 未开启sendfile开启后keepalive_timeout 65;server虚拟主...

Pandas对缺失值的处理


Pandas使用这些函数处理缺失值:isnull和notnull:检测是否是空值,可用于df和seriesdropna:丢弃、删除缺失值axis:删除行还是列,{0 or "'index', 1 or 'columns'}, default o how:如果等于any则任何值为空都删除,如果等于all则所有值都为空才删除inplace :如果为True则修改当前df,否则返回新的dffillna:填充空值value:用于填充的值,可以是单个值,或者字典(key是列名,value是值)method:等于ffill使用前一个不为空的值填充forword fill;等于bfill使用后一个不为空的值填充backword fillaxis:按行还是列填充,{0 or 'index', 1 or 'columns"} inplace :如果为True...

Pandas新增数据列


在进行数据分析时,经常需要按照一定条件创建新的数据列,然后进行进一步分析。直接赋值实例:清理温度列,变成数字类型实例:计算温差df. apply方法Apply a function along an axis of the DataFrame.Objects passed to the function are Series objects whose index is either the DataFrame's index(axis=0) or the DataFrame's columns (axis=1).实例:添加一列温度类型:1.如果最高温度大于33度就是高温2.低于-10度是低温3.否则是常温df.assign方法Assign new columns to a DataFrame.Returns a new object with all ori...

召唤看板娘