上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: 博客:源码解读 TOS源码: https://github.com/cia-foundation/TempleOS 启动过程: https://minexew.github.io/2020/02/27/templeos-loader-part1.html 建设性看法:http://www.coder 阅读全文
posted @ 2024-11-13 16:03 Nolca 阅读(122) 评论(0) 推荐(0)
摘要: 53端口冲突 解决:adguard使用别的端口,如54 sudo lsof -i :53 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME dnsmasq 1664 lxc-dnsmasq 6u IPv4 16640 0t0 UDP DESKTOP 阅读全文
posted @ 2024-10-25 13:29 Nolca 阅读(134) 评论(0) 推荐(0)
摘要: 今天在写python脚本,发现 I=[[0,0],[0,0]] a=I.copy() a[0][0]=1 print(a,I) 结果: [[1, 0], [0, 0]] [[1, 0], [0, 0]] 因为copy()拷贝得还不够深 解决方法 import copy import copy a = 阅读全文
posted @ 2024-10-23 22:56 Nolca 阅读(15) 评论(0) 推荐(0)
摘要: ~/.cargo/config.toml [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = 'fast' [source.tuna] registry = "http 阅读全文
posted @ 2024-10-13 22:59 Nolca 阅读(39) 评论(0) 推荐(0)
摘要: 使用tauri v2,跑前后端项目学习时,遇到这条报错: Unhandled Promise Rejection: NotAllowedError: The request is not allowed by the user agent or the platform in the current 阅读全文
posted @ 2024-10-13 22:12 Nolca 阅读(639) 评论(0) 推荐(0)
摘要: 注册菜单 点击事件 注册实例 设置默认值 将handle(手握实例的变量)赋值给一个变量 function menu_Func_click() { GM_setValue('Func', !GM_getValue('Func')); // 开关 GM_unregisterMenuCommand(me 阅读全文
posted @ 2024-10-08 14:30 Nolca 阅读(440) 评论(0) 推荐(0)
摘要: 没改动代码,但无法运行java项目 java: -source 1.5 中不支持……表达式/运算符 java: 错误: 不支持发行版本 5 解决:https://www.cnblogs.com/liu-han/p/16105953.html 文件→项目结构,SDK和项目/模块 语言级别的版本要一致 阅读全文
posted @ 2024-10-07 11:19 Nolca 阅读(38) 评论(0) 推荐(0)
摘要: https://www.youtube.com/watch?v=W2Z7fbCLSTw 代表 类型 描述 使用场景 持久 mysql 关系 有join,强一致性 金融、电商 ✅ mongoDB 文档 无join,高性能、高扩展性和灵活数据 日志分析、物联网;大文件推荐用对象存储,如Minio ✅ r 阅读全文
posted @ 2024-10-05 09:45 Nolca 阅读(76) 评论(0) 推荐(0)
摘要: marp: true # theme: uncover footer: 'Nolca 2024-09-23' paginate: true style: | img { height: 350px; } * { width: fit-content; } .row { display:flex; f 阅读全文
posted @ 2024-09-23 10:22 Nolca 阅读(700) 评论(0) 推荐(0)
摘要: https://www.bilibili.com/video/BV1ys411472E 概念 秩Rank 基础变换后的空间维数 线性相关 一组向量至少有一个是多余的,没有对张成空间做出任何贡献 At least one of these vectors is redundant, not addin 阅读全文
posted @ 2024-09-14 09:33 Nolca 阅读(100) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页