LiuDongdong

爱好由来落笔难,一诗千改心始安。

CodeReading

1. Connect public void connect(String address, int port, boolean useTLS) throws OctaneSdkException { LLRPIoHandlerAdapterImpl llrpio = new LLRPIoHandlerAdapterImpl(); llrpio.setKeepAliveAck(false); llrpio.setKeepAliveForward(true); if (this.readerConnection == null) { this.readerConnection = new LLRPConnector(this, address, llrpio); } llrpio.setConnection(this.readerConnection); ((LLRPConnector)this.readerConnection).setPort(port); try { ((LLRPConnector)this.readerConnection).connect((long)this.connectTimeout, useTLS); } catch (LLRPConnectionAttemptFailedException var6) { this.readerConnection = null; throw new OctaneSdkException("Error connecting to the reader (" + address + ") : " + var6.getMessage()); } catch (RuntimeIoException var7) { this.readerConnection = null;

KaliRpi

0. img下载地址 登陆用户密码: kali, kali; 1. 镜像源地址 kali@kali:~$ sudo vi /etc/apt/sources.list #阿里云镜像 deb https://mirrors.aliyun.com/kali kali-rolling main non-free contrib deb-src https://mirrors.aliyun.com/kali kali-rolling main non-free contrib #中科大 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib deb-src http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib #浙大 deb http://mirrors.zju.edu.cn/kali kali-rolling main contrib non-free

KaliTutorial

1. nmap 使用原始 IP 报文来发现网络上有哪些主机,那些 主机提供什么服务(应用程序名和版 本),那 些服务运行在什么操作系统(包括版本信息), 它们使用什么

FileEncode

Unicode只是对信源编码,对字符集数字化,解决了字符到数字化的映射。 UTF-32、UTF-16、UTF-8是信道编码,为更好的存储和传输

MediaPipePose

Human pose estimation from video plays a critical role in various applications such as quantifying physical exercises, sign language recognition, and full-body gesture control. For example, it can form the basis for yoga, dance, and fitness applications. It can also enable the overlay of digital content and information on top of the physical world in augmented reality. MediaPipe Pose is a ML solution for high-fidelity body pose tracking, inferring 33

ProxyMode

代理模式是一种设计模式,提供了对目标对象额外的访问方式,即通过代理对象访问目标对象,这样可以在不修改原目标对象的前提下,提供额外的功能操作,
0%