Rust基础用法还是觉得只有列出参考资料的必要, 至于必须强调的细节才会主动列出 1. Cargo 参考资料: https://doc.rust-lang.org/cargo/index.html 如果需要添加一个依赖, 以clap为例: 1cargo add clap --features derive 2. Rustup 参考资料: https://rust-lang.github.io/rus 2022-07-21 编程语言 > Rust > 基础
Ubuntu上使用docker1. 安装Docker 1.1 安装KVM 参考: https://ubuntu.com/blog/kvm-hyphervisor 1sudo apt -y install bridge-utils cpu-checker libvirt-clients libvirt-daemon qemu qemu-kvm 检查虚拟化功能 1kvm-ok 1.2 安装Docker 参考资料: 2022-07-21 计算机基础 > 操作系统 > 虚拟化应用 > Docker
网站的Header--安全设置参考资料: https://infosec.mozilla.org/guidelines/web_security#content-security-policy 这是我主页的CSP设置, CSP的设置可以有效防止XSS. 如需使用, 只要替换或添加自己需要的域名即可~ 1234567<meta http-equiv="Content-Security-Policy" 2022-07-21 收藏
Modules参考资料: https://doc.rust-lang.org/reference/items/modules.html 1234567Syntax:Module : unsafe? mod IDENTIFIER ; | unsafe? mod IDENTIFIER { InnerAttribute* Item* } mo 2022-07-21 编程语言 > Rust > Items
Ubuntu常用的指令和配置1. 装机后的常用指令 安装驱动 123sudo ubuntu-drivers autoinstall sudo apt install xorg-server-sourcesudo apt install nvidia-cudnn ubuntu-drivers devices 可以列出推荐的显卡驱动版本, 手动装更好(不会只装最新的) 安装开发工具 1sudo apt inst 2022-07-21 计算机基础 > 操作系统 > Linux > Ubuntu
rust相关基础知识1. 版本更替问题 Python的2.x和3.x之间有巨大的变化, 对于更为年轻的Rust而言, 每一次大版本之间有废弃功能和新特性也不足为奇, 因此有时需要疑问不只要去看官方文档, 还需要看重大版本更新变化, 具体可在https://doc.rust-lang.org/stable/edition-guide/中看到. 2022-07-21 编程语言 > Rust > 基础
use声明语句参考资料: https://doc.rust-lang.org/reference/items/use-declarations.html 12345678Syntax:UseDeclaration : use UseTree ;UseTree : (SimplePath? ::)? * | (SimplePath? ::)? { (UseTree ( , UseT 2022-07-21 编程语言 > Rust > Items
Rust注释1. 基本注释 123// Line comment/* Block comment */ 按照约定, 尽量使用行注释而非块注释 2. 文档注释(Doc Comennts) cargo doc会调用rustdoc来生成文档, 而这依赖于文档注释的存在 123456/// Line comment; document the next item/** Block comment; doc 2022-07-21 编程语言 > Rust > 基础
Ubuntu下的代理配置1. 软件选择: 在2022年,clash已经成为了主流的VPN工具,因此这篇笔记也主要推荐clash的软件,至于随着技术变革,也只有软件的变化,其余操作仍然维持不变的~ 说到clash,在Linux下,Clash for windows就是一个最好用的软件,这个软件支持mac os,windows和Liinux。(尽管他的名字带有for windows,或许这个软件最初只是为windows 2022-07-20 计算机基础 > 操作系统 > Linux > Ubuntu
AttributesRust的Attribute 参考资料: Attribute 12345678910111213SyntaxInnerAttribute : # ! [ Attr ]OuterAttribute : # [ Attr ]Attr : SimplePath AttrInput?AttrInput : DelimTokenTree | = Expression In 2022-07-20 编程语言 > Rust > Atributes