会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
20
下一页
2024年2月20日
通用方式实现Map
摘要: 通用方式实现Map ChatGpt 实现展示地图并在地图上提供操作选项的技术栈可以包括: Web开发技术:HTML、CSS、JavaScript 地图API:如Google Maps API、Mapbox API、Leaflet等 前端框架:如React、Vue.js、Angular等 后端技术:如
阅读全文
posted @ 2024-02-20 10:37 Theseus‘Ship
阅读(48)
评论(0)
推荐(0)
2023年12月21日
Linux-基本硬件情况
摘要: Linux-基本硬件情况 了解自己的Linux基本硬件情况 - 二进制咬不到猫的文章 - 知乎 CPU 查看CPU详细信息: $cat /proc/cpuinfo CPU ①物理CPU数(physical id):主板上实际插入的cpu数量,可以数不重复的 physical id 有几个 ②CPU核
阅读全文
posted @ 2023-12-21 23:57 Theseus‘Ship
阅读(42)
评论(0)
推荐(0)
2023年11月18日
Code-C++-字符串分割
摘要: Code-C++-字符串分割 转自【C++中string如何实现字符串分割函数split()——4种方法 - CSDN App】http://t.csdnimg.cn/8iWb7 stringstream getline() string find() substr() c char strtok(
阅读全文
posted @ 2023-11-18 17:44 Theseus‘Ship
阅读(34)
评论(0)
推荐(0)
OS-Linux-程序安装与依赖
摘要: OS-Linux-程序安装与依赖 从源下载安装包 sudo apt download mysql 查看安装依赖:apt-cache apt-cache depends xxx 查看已安装程序依赖,如nginx sudo apt-get install --reinstall -d'apt-cache
阅读全文
posted @ 2023-11-18 17:23 Theseus‘Ship
阅读(35)
评论(0)
推荐(0)
2023年10月12日
Tool-Nvidia-查询显卡信息
摘要: Tool-Nvidia-查询显卡信息 nvidia-smi -L lscpi |grep -i nvidia
阅读全文
posted @ 2023-10-12 13:00 Theseus‘Ship
阅读(16)
评论(0)
推荐(0)
OS-Linux-zip&unzip
摘要: OS-Linux-zip&unzip zip -rP passwork filename.zip filename 加密 unzip -O GBK XXX.zip 或GBK18030 中文乱码
阅读全文
posted @ 2023-10-12 12:58 Theseus‘Ship
阅读(8)
评论(0)
推荐(0)
Code-C++-chrono to tm (format time)
摘要: Code-C++-chrono to tm (format time) std::chrono::system_clock::time_point now = std::chrono::system_clock::now(); std::time_t now_time_t = std::chrono
阅读全文
posted @ 2023-10-12 12:54 Theseus‘Ship
阅读(20)
评论(0)
推荐(0)
Code-C++-Snowflake
摘要: Code-C++-Snowflake #include <iostream> #include <chrono> #include <stdexcept> class Snowflake { private: // 雪花算法的各个参数 static constexpr int64_t workerI
阅读全文
posted @ 2023-10-12 12:49 Theseus‘Ship
阅读(33)
评论(0)
推荐(0)
Tool-CMake-设置SONAME
摘要: Tool-CMake-设置SONAME set_target_properties(${PROJECT_NAME} PROPERTIES VERSION 1.0.0 SOVERSION 1)
阅读全文
posted @ 2023-10-12 12:47 Theseus‘Ship
阅读(70)
评论(0)
推荐(0)
OS-Kylin-银河麒麟操作系统 查询系统版本信息指令
摘要: OS-Kylin-银河麒麟操作系统 查询系统版本信息指令 cat /etc/.kyinfo
阅读全文
posted @ 2023-10-12 12:43 Theseus‘Ship
阅读(899)
评论(0)
推荐(0)
2023年7月24日
Tool-CMake-添加自定义宏定义
摘要: # Tool-CMake-添加自定义宏定义 cmake, makefile 中定义的宏变量,其实和C/C++中的#define 是一致的,可以传入到C/C++中。 控制程序的编译 比如:cmake中有宏定义:`add_definitions(-Dhello="hello cmake")`
阅读全文
posted @ 2023-07-24 19:32 Theseus‘Ship
阅读(193)
评论(0)
推荐(0)
Code-OpenSource-JSON for Modern C++ v3.10.5
摘要: # Code-OpenSource-JSON for Modern C++ v3.10.5 github.com/nlohmann/json https://json.nlohmann.me/home/exceptions/#version-history https://json.nlohmann
阅读全文
posted @ 2023-07-24 19:29 Theseus‘Ship
阅读(14)
评论(0)
推荐(0)
Tool-Gitlab-备份恢复-迁移
摘要: # Tool-Gitlab-备份恢复-迁移 ## 备份 sudo gitlab-rake gitlab:backup:create 使用命令会在/var/opt/gitlab/backups目录下创建一个压缩包,这个压缩包就是Gitlab整个的完整部分。 需要在gitlab 运行时操作。 gitla
阅读全文
posted @ 2023-07-24 19:26 Theseus‘Ship
阅读(60)
评论(0)
推荐(0)
Tool-Gitlab-502-端口占用
摘要: #安装Gitlab后,登陆报错502,端口占用 ## 卸载 一、卸载GitLab及其依赖 1、首先停止GitLab的运行命令: sudo gitlab-ctl stop 2、卸载GitLab: sudo apt-get remove gitlab-ce 3、卸载GitLab依赖: sudo apt-
阅读全文
posted @ 2023-07-24 19:22 Theseus‘Ship
阅读(263)
评论(0)
推荐(0)
Tool-Intel VTune Profiler
摘要: # Tool-Intel VTune Profiler 转自 [使用Intel VTune Profiler进行性能分析及优化](https://blog.csdn.net/yaojingqingcheng/article/details/120335335) ## 初识Intel® VTune™
阅读全文
posted @ 2023-07-24 18:51 Theseus‘Ship
阅读(305)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
20
下一页
Live2D