首页
学习
活动
专区
工具
TVP
发布

Coxhuang

专栏作者
169
文章
300838
阅读量
25
订阅数
Ubuntu apt 下载离线包
文章目录 apt 下载安装包及所有依赖 #0 环境 #1 开始 apt 下载安装包及所有依赖 #0 环境 Ubuntu 18.04 #1 开始 前提 系统没有安装所需要下载的包, 如果已经安装,请先移除 安装第三方库 sudo apt install aptitude 下载 sudo aptitude --download-only install <package-name> # sudo aptitude --download-only install ros-melodic-rosbridge-ser
Autooooooo
2022-07-17
2.8K0
gdb分析C++程序异常coredump文件
文章目录 gdb分析CoreDump文件 #1 环境 #2 开始 #2.1 测试代码 #2.2 设置core文件 #2.3 编译(DEBUG模式) #2.4 运行/查看 gdb分析CoreDump文件 #1 环境 macOS Ubuntu18(docker) 安装gdb # macOS 自带gdb # Ubuntu sudo apt install gdb docker 容器配置 在docker容器中使用gdb分析coredump时,再启动容器时,需要加入一些参数 docker run --ulim
Autooooooo
2022-07-17
1.2K0
Vim配置C++ debug环境
文章目录 环境 准备 使用 环境 我的配置地址: C++ debug配置地址 NeoVim 0.7 codelldb 1.7.0 // 不同版本会有差异, 这个需要注意 (https://github.com/mfussenegger/nvim-dap/wiki/C-C---Rust-(via--codelldb)) nvim-dap // vim 插件 (https://github.com/mfussenegger/nvim-dap) nvim-dap-virtual-text // vim 插件 (h
Autooooooo
2022-05-23
1K0
VSCode配置C++ debug环境
https://blog.csdn.net/Coxhuang/article/details/124900041
Autooooooo
2022-05-23
5020
Apollo CyberRT Cmake Build
CyberRT仓库: https://github.com/minhanghuang/CyberRT
Autooooooo
2022-05-10
1.2K0
Vim插件(三) Terminal 终端
GitHub仓库地址: https://github.com/minhanghuang/nvim
Autooooooo
2022-05-09
8160
Vim插件(二) Buffers窗口
GitHub仓库地址: https://github.com/minhanghuang/nvim
Autooooooo
2022-05-09
6140
Vim 插件(一) 文件树
GitHub仓库地址: https://github.com/minhanghuang/nvim
Autooooooo
2022-05-09
6800
NeoVim 安装及配置
GitHub仓库地址: https://github.com/minhanghuang/nvim
Autooooooo
2022-05-09
3.4K0
Ros2 安装
#1 安装 Ubuntu 16 & Ubuntu 18 Ros2 Dashing --- Ubuntu 20 Ros2 Foxy 下载密钥 sudo apt install curl gnupg2 -y // 二选一 // 国内 curl -s https://gitee.com/haha-web/rosdistro/raw/master/ros.asc | sudo apt-key add - // 国外 curl -s https://raw.githubusercontent.com/ros/
Autooooooo
2022-05-09
2920
ROS2 C++ Subscriber Publisher 订阅发布例子
文章目录 ROS2 Subscriber Publisher 例子 ROS2 Subscriber Publisher 例子 运行环境 Ubuntu 20.04 ROS Foxy sub #include <iostream> #include <rclcpp/rclcpp.hpp> #include <std_msgs/msg/string.hpp> void callback(const std_msgs::msg::String::SharedPtr msg) { std::cout <<
Autooooooo
2022-05-09
8360
Linux超炫的 ZSH 配置
文章目录 oh-my-zsh 1 环境 1.1 Ubuntu准备 2 开始 3 其他 oh-my-zsh 1 环境 macOS Ubuntu 区别: macOS自带zsh, Ubuntu需要需要安装zsh 1.1 Ubuntu准备 Ubuntu安装zsh sudo apt-get update sudo apt install zsh 配置zsh chsh -s /bin/zsh 2 开始 安装oh-my-zsh 复制以下内容,运行; #!/bin/sh # # This script s
Autooooooo
2021-12-14
1.4K0
Civetweb安装使用
文章目录 Civetweb++ #0 环境 #1 安装civetweb #2 demo #2.1 cmakelists.txt #2.2 main.cc 在这里插入图片描述 Civetweb++ 0 环境 Ubuntu 16.04 cmake 👉👉👉 github demo 1 安装civetweb git clone https://github.com/civetweb/civetweb.git mkdir buildx && cd buildx cmake -DCIVETWEB_ENABLE_CXX
Autooooooo
2021-12-07
1.6K0
SQLite3 Cpp基本使用
文章目录 SQLite3 C++ #0 GitHub #1 环境 #2 安装sqlite3 #3 使用 #3.1 基本SQL语句 #3.2 sqlite3 API #3.3 Code SQLite3 C++ 0 GitHub example代码 SQLite3 C++ Demo Github 1 环境 macOS C++14 2 安装sqlite3 git clone https://github.com/sqlite/sqlite.git cd sqlite && mkdir bld && cd bld
Autooooooo
2021-12-07
1K0
Sogou workflow 安装使用
文章目录 Sogou workflow 安装 #1 环境 #2 安装 #3 使用 #3.1 主函数 #3.2 CMakeLists.txt Sogou workflow 安装 #1 环境 macOS 10.15.5 C++14 OpenSSL 1.1.1 #2 安装 OpenSSL 需要依赖于OpenSSL,推荐OpenSSL 1.1及以上版本 安装OpenSSL brew install openssl WorkFlow git clone https://gitee.com/mirrors/s
Autooooooo
2021-03-11
1.6K0
Cpp(十二) log日志基本使用spdlog
Cpp日志spdlog #1 环境 macOS 10.15.5 spdlog #2 需求分析 日志按等级分到不同的文件 日志按时间分割 #3 使用 #3.1 工程结构 . ├── CMakeLists.txt ├── cmake-build-debug ├── include │ └── spdlog ├── log.hpp └── main.cpp #3.2 CMakeLists.txt cmake_minimum_required(VERSION 3.17) project(my_spdlog)
Autooooooo
2021-03-02
3.6K0
Cpp(十一) yaml-cpp的使用
YamlCpp #1 环境 macOS 10.15.5 Cmake #2 安装 git clone git@gitee.com:Coxhuang/yaml-cpp.git cd yaml-cpp mkdir build cd build # 二选一 # 静态库 cmake .. # 动态库 cmake .. -D BUILD_SHARED_LIBS=ON make sudo make install 安装后,库文件和头文件路径: 头文件: /usr/local/include/yaml-cpp
Autooooooo
2021-03-02
2.8K0
Cpp(十) WebSocket使用
文章目录 websocket for C++ #1 环境 #1 websocketpp 安装 #2 使用 websocket for C++ #1 环境 C++11 boost 1.58.0 Ubuntu 16.04 cmake 3.18.2 websocketpp #1 websocketpp 安装 websocketpp 依赖boost,需要先将boost装好 下载 git clone https://github.com/zaphoyd/websocketpp.git 编译安装 cd web
Autooooooo
2021-02-02
2.7K0
Cpp(九) gRPC protobuf for C++ 基本使用
Mac: https://github.com/Coxhuang/FKCpp/tree/master/gRPCDemo/macOS
Autooooooo
2021-02-02
4.4K0
Cpp(八) 格式化输出 format
C++ fmt #0 代码 本文例子代码 https://github.com/Coxhuang/FKCpp/tree/master/fmt_demo fmt官方文档 https://github.com/fmtlib/fmt #1 环境 C++14 CMake 3.17 macOS 10.15.5(Ubuntu 16.04 测试成功) Clion #2 开始 #2.1 安装fmt git clone https://github.com/fmtlib/fmt.git cmake . make && ma
Autooooooo
2021-02-02
1.2K0
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档