小弧光的博客

公众号:小弧光黑板报

导航

上一页 1 2 3 4 5 6 ··· 8 下一页

2023年11月29日 #

nanopb 编译 proto 文件的坑

摘要: 1、要使用nanopb 自带的 protoc 命令 2、要使用 options 文件,必须在 .proto 文件下执行命令 ➜ protobuf_c git:(xx) ✗ lsudp_carrier.proto udp_proto.options /usr/local/nanopb-0.4.8-li 阅读全文

posted @ 2023-11-29 16:32 小弧光 阅读(134) 评论(0) 推荐(0) 编辑

2023年11月14日 #

解决 "VMware Workstation and Device/Credential Guard are not compatible" error in VMware Workstation on Windows 10 host (2146361)

摘要: https://kb.vmware.com/s/article/2146361 https://communities.vmware.com/t5/VMware-Workstation-Pro/Virtualized-Intel-VT-x-EPT-is-not-supported-on-this-p 阅读全文

posted @ 2023-11-14 21:58 小弧光 阅读(15) 评论(0) 推荐(0) 编辑

vcpkg downloads installed 等目录做啥用的?

摘要: GitHub Copilot: vcpkg 是一个C++包管理器,它有几个重要的目录: downloads:这个目录用于存储下载的包的源代码。当你安装一个包时,vcpkg 首先会下载包的源代码到这个目录。 installed:这个目录用于存储已经构建和安装的包。当你构建一个包时,vcpkg 会在这个 阅读全文

posted @ 2023-11-14 08:52 小弧光 阅读(114) 评论(0) 推荐(0) 编辑

2023年11月13日 #

vue2 和 vue3 什么区别

摘要: GitHub Copilot: Vue 2 和 Vue 3 在许多方面都有所不同,以下是一些主要的区别: Composition API: Vue 3 引入了 Composition API,这是一种新的方式来组织和复用代码。这是与 Vue 2 Options API 相比的一个重大改变。 性能: 阅读全文

posted @ 2023-11-13 09:51 小弧光 阅读(21) 评论(0) 推荐(0) 编辑

2023年10月19日 #

使用 cgal 库计算向量的夹角

摘要: #include <vector> #include <iostream> #include <CGAL/Exact_predicates_exact_constructions_kernel.h> #include <CGAL/Ray_2.h> #include <CGAL/Polygon_2.h 阅读全文

posted @ 2023-10-19 09:26 小弧光 阅读(110) 评论(1) 推荐(0) 编辑

2023年10月17日 #

使用CGAL计算直线和圆的交点

摘要: #include <vector> #include <iostream> #include <CGAL/Exact_predicates_exact_constructions_kernel.h> #include <CGAL/Ray_2.h> #include <CGAL/Polygon_2.h 阅读全文

posted @ 2023-10-17 16:58 小弧光 阅读(110) 评论(0) 推荐(0) 编辑

2023年9月18日 #

解决git 问题:loose object is corrupt

摘要: 问题: error: object file .git/objects/e1/ref is empty error: object file .git/objects/e1/ref is empty fatal: loose object e1ref (stored in .git/objects/ 阅读全文

posted @ 2023-09-18 11:50 小弧光 阅读(60) 评论(0) 推荐(0) 编辑

2023年8月17日 #

3D Data Processing with Open3D

摘要: A quick walkthrough on processing 3D models with Python’s Open3D library (with an interactive Jupyter Notebook) 原文: https://towardsdatascience.com/3d- 阅读全文

posted @ 2023-08-17 13:39 小弧光 阅读(21) 评论(0) 推荐(0) 编辑

2023年8月11日 #

c++ 使用移动语义来提高 vector 性能

摘要: 本文学习了微软的官方实例,用于理解 std::move 语义。 ``` #pragma once #include #include #include using namespace std; class MemoryBlock { public: // Simple constructor tha 阅读全文

posted @ 2023-08-11 15:10 小弧光 阅读(31) 评论(0) 推荐(0) 编辑

2023年8月4日 #

设计模式-纯文字描述

摘要: 设计模式在很多面试题中经常出现,同时,在写大型项目中,设计模式可以让代码更简洁,架构更合理,所以是我们必须要掌握的。 1、观察者模式 观察者模式是一种行为设计模式, 允许你定义一种订阅机制, 可在对象事件发生时通知多个 “观察” 该对象的其他对象。一般需要以下几步: 1、定义多个 events 2、 阅读全文

posted @ 2023-08-04 09:47 小弧光 阅读(5) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 8 下一页