Aaron2932

导航

2022年9月3日 #

redis源码学习

摘要: 前言 阅读全文

posted @ 2022-09-03 15:26 Aaron2932 阅读(22) 评论(0) 推荐(0)

lldb

摘要: lldb main.c #include<stdio.h> int add(int n){ int i, sum=0; for (i=0;i<n;i++){ sum += i; } return sum; } int main(){ int b = 100; int c = add(b); prin 阅读全文

posted @ 2022-09-03 15:24 Aaron2932 阅读(139) 评论(0) 推荐(0)

字符串算法

摘要: manacher 阅读全文

posted @ 2022-09-03 15:23 Aaron2932 阅读(21) 评论(0) 推荐(0)

修改远端仓库地址

摘要: git操作 git修改远端仓库地址 **git修改远程仓库地址 **方法有三种: 1.修改命令 git remote origin set-url [url] 2.先删后加 git remote rm origin git remote add origin [url] 3.直接修改config文件 阅读全文

posted @ 2022-09-03 15:22 Aaron2932 阅读(41) 评论(0) 推荐(0)

proto工具使用

摘要: 前言 protocol buffer 是我们使用的代码。 工具使用 参考 https://developers.google.com/protocol-buffers/docs/proto3#any 阅读全文

posted @ 2022-09-03 15:19 Aaron2932 阅读(88) 评论(0) 推荐(0)

linux绑核

摘要: 前言 绑定核心 c语言绑核 脚本绑核 taskset -pc xx 阅读全文

posted @ 2022-09-03 15:18 Aaron2932 阅读(63) 评论(0) 推荐(0)

如何进行c语言性能调优

摘要: 前言 perf工具 阅读全文

posted @ 2022-09-03 15:17 Aaron2932 阅读(34) 评论(0) 推荐(0)

如何进行性能调优-golang

摘要: 前言 内存 cpu占用 docker镜像占用 docker load -I xx.tar.gz dive xxx 阅读全文

posted @ 2022-09-03 15:16 Aaron2932 阅读(52) 评论(0) 推荐(0)

gdb常用命令

摘要: 前言 gdb是什么?是一个用来调试的工具,gcc用来编译,gdb用来调试,调试的对象需要带符号表 常用命令 list gdb attach $pid b xxx 阅读全文

posted @ 2022-09-03 15:15 Aaron2932 阅读(40) 评论(0) 推荐(0)

2022年8月29日 #

学习设计模式和画图

摘要: 参考 使用keynote画图 https://www.yrunz.com/p/用keynote画出手绘风格的配图/ 使用plantuml进行设计 阅读全文

posted @ 2022-08-29 02:37 Aaron2932 阅读(39) 评论(0) 推荐(0)