whoosh搜索引擎使用

whoosh搜索引擎使用 ​ 1 pip install whoosh 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 from ast import And from fileinput import filename from msilib.schema import tables import os.path from tokenize

http简介

http简介 几种请求方式 表格的内容可以在 图解http这本书里面查看到 方法 解释 作用 post 传输实体主题 经常用,这里不解释 put 传输文件 put方法主要用于

编写一个文本框

编写一个文本框 ​ 参考教程 不错的视频教程,布局 官方文档: https://fyne.io/ 实现一个电影介绍的app 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

linux邮箱命令行

linux邮箱命令行 ​ 学习教程 安装环境 1 2 3 4 5 6 7 # apt-get install sendmail # systemctl start sendmail # # 安装的时候 选择 network site service postfix start # 开机自动启动 chkconfig postfix on 配置 /etc/mail.rc 1 2 3 4 5 6 7 set from=lyr-2000@qq.com

网络操作

网络操作 ​ 命令 解释 ss netstat tcpdump httpie工具 这个是命令行工具,要另外下载,可以代替 wget 和 curl httpie工具下载 参考github地址 官方文档 视频使用

commandline 快捷键

commandline 快捷键 ​ bash 命令行快捷键 ctrl a 移动到命令头 ctrl u 删除光标前支付 ctrl k 删除光标之后的字符 ctrl l 相当于clear 命令行补全 tab键

gdb工具使用

gdb工具使用 参考文档 对于C程序来说,需要在编译时加上-g参数,保留调试信息,否则不能使用GDB进行调试 1 gcc -g test.c -o a.out 1 gdb a.out gdb使用条件 使用

lc94.中序遍历

lc94.中序遍历 ​ 给定一个二叉树的根节点 root ,返回 它的 中序 遍历 。 示例 1: 输入:root = [1,null,2,3] 输出:[1,3,2] 示例 2: 输入:root = [] 输出

lc.145.二叉树的后序遍历

lc.145.二叉树的后序遍历 ​ 给你一棵二叉树的根节点 root ,返回其节点值的 后序遍历 。 示例 1: 输入:root = [1,null,2,3] 输出:[3,2,1] 示例 2: 输入
T