记一次非常曲折的软路由及家里云系统更新 事情的起因是软路由系统很多年了,到现在经历了 Clash 更新,之前用的第三方编译有一堆用不上的软件包,也不怎么稳定了,正好官方现在提供编译固件了,索性打算升级一下。 想着既然折腾了,就把家里云的树莓派系统也重装一下,之前的 21 LTS 升级到 24 LTS 后有点不稳定,顺便改成桌面版。 2025-09-22 技术 > 运维 #Ubuntu #运维 #Linux #OpenWrt #树莓派 #软路由
Autoware Development Environment Setup This article introduces how to set up the Autoware development environment. IntroductionAutoware is the world’s leading open-source project for autonomous driving. 2025-07-19 技术 > 自动驾驶 #自动驾驶 #教程 #Ubuntu #Docker #Autoware
Autoware 开发环境搭建 本文介绍如何搭建 Autoware 的开发环境。 简介Autoware 是世界领先的开源自动驾驶项目。 2025-07-19 技术 > 自动驾驶 #自动驾驶 #教程 #Ubuntu #Docker #Autoware
Apollo Development Environment Setup This article describes how to set up the Baidu Apollo development environment. IntroductionApollo is a high performance, flexible architecture which accelerates the development, testing, and deplo 2025-07-07 技术 > 自动驾驶 #Apollo #自动驾驶 #教程 #Ubuntu #Docker
Apollo 开发环境搭建 本文介绍如何搭建 Baidu Apollo 的开发环境。 简介Apollo 是一个高性能、灵活的架构,可加速自动驾驶汽车的开发、测试和部署。 2025-07-07 技术 > 自动驾驶 #Apollo #自动驾驶 #教程 #Ubuntu #Docker
Setup xv6-riscv Development Environment This article introduces how to set up the development environment of xv6-riscv. Introductionxv6 is a re-implementation of Dennis Ritchie’s and Ken Thompson’s Unix Version 6 (v6). The main purpose of 2024-10-15 技术 > 软件开发 > 操作系统 #GitHub #C++ #汇编 #C #操作系统 #xv6
xv6-riscv 开发环境搭建 本文介绍如何搭建 xv6-riscv 的开发环境。 简介xv6 是 Dennis Ritchie 和 Ken Thompson 的 Unix Version 6 (v6) 的重新实现。xv6 的主要目的是作为 MIT 6.1810 的教学操作系统[1]。 2024-10-15 技术 > 软件开发 > 操作系统 #GitHub #C++ #汇编 #C #操作系统 #xv6
Using Python to Set GitHub Action Outputs The output format of GitHub Action is to write {name}={value} to the environment variable GITHUB_OUTPUT[1][2] This article shares how to set up the GitHub Action output using Pytho 2024-09-06 技术 > 经验分享 #GitHub #Python
使用 Python 设置 GitHub Action 输出 GitHub Action 的输出格式为将 {name}={value} 写到环境变量 GITHUB_OUTPUT[1][2],本文分享如何使用 Python 设置 GitHub Action 输出。主要内容来自于这篇讨论[3]。 单行12345import osname = 'my_name'value = 'my_value 2024-09-06 技术 > 经验分享 #GitHub #Python
Julia: @inbounds and @propagate_inbounds Explore @inbounds and @propagate_inbounds in Julia. 2024-08-26 技术 > 编程语言 #Julia #性能 #Performance