邻域设 是数轴上一点, 是某一正数,称 为点 的 邻域,记做 ,即 上述描述是 实心邻域 ,另有 去心邻域 的概念: 即不包含 处。 另外,对邻域以 处为界限划分可以将区间划分为 左邻域、右邻域 ,这里不再赘述。 对于邻域的定义, 是一个模糊的数,它用于限定邻域这个区域的大小。函数 在 的邻域有定义即函数在 的附近有定义,但是这个 “附近” 在现阶段数系的角度无...
💡在学习 Golang 时,我发现它在语法上既有类似 C++ 和 Python 的地方,也有独特之处。与 C++ 一样,Golang 是强类型的、编译型语言,强调性能和效率,但它去除了头文件和类等复杂结构,更简洁高效。而与 Python 相似,Golang 提供了自动垃圾回收、内置的并发支持以及简洁的代码风格,减少了编码的繁琐。Golang 没有 Python 的动态类型,变量声明严格要...
CoreDNSCoreDNS 是一个灵活且功能强大的 DNS 服务器,支持多种插件扩展。它非常适合用于搭建 DoH 服务。 初始化安装必要组件首先,更新系统并安装所需的软件包,包括 Docker Compose 和 Certbot(用于获取 SSL 证书)。 1sudo apt update && sudo apt upgrade -y && sudo ap...
💡 All content on this blog is intended solely for the purpose of learning English and is not meant to infringe on any copyrights. All translations and citations are...
💡 All content on this blog is intended solely for the purpose of learning English and is not meant to infringe on any copyrights. All translations and citations are...
💡 All content on this blog is intended solely for the purpose of learning English and is not meant to infringe on any copyrights. All translations and citations are...
我的环境: Ubuntu : Ubuntu 24.04 DesktopWindows : Windows 11 要点是获取一个系统配对好的蓝牙设备的 MAC地址、LTK、IRK,再将这些信息写入其他系统的注册表。 首先在 Ubuntu 上配对蓝牙设备,再在 windows 上配对,使得两系统存储该蓝牙设备的信息(我们之后就只需要修改 Address,LTK,IRK),并且当前 Windo...
创建文本并输入以下内容: 123for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do ( %windir%\\System32\\tscon.exe %%s /dest:console) 将后缀改为 exe 格式。固定到任务栏即可,每次要断开连接就点击这个文件(会保持运行状态)。 进入下面的地址: 1%userprofi...