摘要: 在Termux使用公网链接,映射内网ssh cpolar安装 添加cpolar源 echo "deb [trusted=yes] http://termux.cpolar.com termux extras" >> $PREFIX/etc/apt/sources.list.d/cpolar.list 阅读全文
posted @ 2025-10-25 00:10 NAGISB 阅读(9) 评论(0) 推荐(0)
摘要: Root用户是UNIX系统中唯一的超级管理员 账户的种类 超级管理员(Root) 管理员(Administrator) 普通用户(Standard) 共享(Sharing Only) 客人(Guest) 开启root用户 MAC图形工具 directory Utility app 命令行 dsena 阅读全文
posted @ 2025-10-01 21:12 NAGISB 阅读(41) 评论(0) 推荐(0)
摘要: Red Hat .deb dibian/ubuntu的包管理apt dpkg snap .rpm centos/fetora的包管理dnf yum Flatpak 配置Root sudo passwd root 配置源 清华大学 USTC 阿里云 nano /etc/dnf/dnf.conf fas 阅读全文
posted @ 2025-09-05 02:36 NAGISB 阅读(11) 评论(0) 推荐(0)
摘要: 配置Root sudo passwd root 配置源 阿里云镜像 nano /ect/apt/sources.list #源路径,注释deb源 apt update 配置输入法 apt purge ibus #自带ibus apt install fcitx-bin fcitx-table #fc 阅读全文
posted @ 2025-09-02 09:01 NAGISB 阅读(10) 评论(0) 推荐(0)
摘要: applications.desktop /usr/share/applications sudo cp xxx.desktop /usr/share/applications 命令执行 需要将程序放入环境变量 [Desktop Entry] Categories=Development; Comm 阅读全文
posted @ 2025-08-31 06:06 NAGISB 阅读(42) 评论(0) 推荐(0)
摘要: 回调函数 异步得体现在于回调功能,通常将匿名函数作为回调函数响应事件 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, i 阅读全文
posted @ 2025-02-05 23:19 NAGISB 阅读(21) 评论(0) 推荐(0)
摘要: 经典打字软件TT,使用方便,是DOS时代的产品,目前没有任何一款打字软件与之媲美 局限于时代性,必须利用DOSBOX模拟DOS环境下才能运行,且没有考虑千年虫问题,需要系统得解决问题 DosBox窗口运行 Z:\>mount c: d:\tt Z:\>C: C:\>dir TT 假如tt安装在D:\ 阅读全文
posted @ 2025-01-31 23:58 NAGISB 阅读(272) 评论(0) 推荐(0)
摘要: 解圆 // 解圆 // 周长format: 2*PI*r(面积求导) // 面积format: PI*r^2 // 球体积format: 4*PI*r^3/3 // 球表面积format: 4*PI*r^2(体积求导) // 圆柱体积format: PI*r^2h // 圆柱表面积format: 2 阅读全文
posted @ 2025-01-24 17:18 NAGISB 阅读(74) 评论(0) 推荐(0)
摘要: 动态分配内存 栈: 在函数内部声明的所有变量都将自动占用栈内存 堆: 这是程序中未使用的内存,在程序运行时可用于动态分配内存 编译时,需要多少内存来存储某个定义变量中的特定信息不确定,所需内存的大小需要在运行时才能确定 new运算符:为给定类型的变量在运行时分配堆内存,并创建了对象 内存管理 栈内存 阅读全文
posted @ 2025-01-24 13:48 NAGISB 阅读(12) 评论(0) 推荐(0)
摘要: VBS 大小写敏感且首字母大写 变量命名 匈牙利 大大驼峰式 WshShell ArrInt VarCount 过程-方法命名 帕斯卡 大大驼峰式 RunApp SendKey SetTime C++ 大小写敏感首字母小写 变量命名 匈牙利 大小驼峰式 Intresult Intcount Long 阅读全文
posted @ 2025-01-24 00:47 NAGISB 阅读(15) 评论(0) 推荐(0)