摘要: 饼图样式 饼图核心代码 <div :class="$style.main" @click="onClick"> <!-- ECharts容器 --> <div ref="chartContainer" :class="$style.chartBox" :style="{ width: size + 阅读全文
posted @ 2025-07-07 10:02 Happy_Eric 阅读(41) 评论(0) 推荐(0)
摘要: 准备工作 OpenCore Legacy Patcher 0.4.7 OpenCore 配置编辑器(Auxiliary Tool 或者 OpenCore Configurator,此处以前者作为演示) 步骤 检查自己的启动参数是否有如下参数: amfi_get_out_of_my_way=0x1 n 阅读全文
posted @ 2025-01-13 21:06 Happy_Eric 阅读(514) 评论(0) 推荐(0)
摘要: Pages The chunk of a process, known as pages. Frames Could be assigned to available chunks of memory, known as frames. 阅读全文
posted @ 2024-07-05 09:47 Happy_Eric 阅读(10) 评论(0) 推荐(0)
摘要: Definition transport-layer multiplexing and demultiplexing The job of delivering the data in a transport-layer segment to the correct socket is called 阅读全文
posted @ 2024-07-04 09:38 Happy_Eric 阅读(45) 评论(0) 推荐(0)
摘要: socat 公网ipv6 实现 FiveM 联机 不花一分钱 研究了三天终于研究明白了,首先大家需要测试家里的宽带是否有IPv6 本教程基于Linux实现,因为socat 目前我没找到好用的Windows版本 进入[https://www.test-ipv6.com/index.html.zh_CN 阅读全文
posted @ 2024-01-31 13:51 Happy_Eric 阅读(804) 评论(0) 推荐(0)
摘要: #include<iostream> #include<malloc.h> #include<queue> using namespace std; #define MAX 10 typedef int E; typedef struct Node{ int nextVex; struct Node 阅读全文
posted @ 2023-12-21 18:51 Happy_Eric 阅读(13) 评论(0) 推荐(0)
摘要: #include<iostream> #include<malloc.h> #include<string.h> using namespace std; #define MAX 10 #define INF 0; typedef int E; typedef struct GraphMartix{ 阅读全文
posted @ 2023-12-21 18:34 Happy_Eric 阅读(25) 评论(0) 推荐(0)
摘要: #include <iostream> #include<malloc.h> using namespace std; typedef int E; typedef struct Node{ E element; struct Node *next; }*node; void initList(no 阅读全文
posted @ 2023-12-21 18:11 Happy_Eric 阅读(13) 评论(0) 推荐(0)
摘要: #include<iostream> #define MAX 10 #include<malloc.h> #include<string.h> #include<stdlib.h> using namespace std; typedef char E; typedef struct Edge{ E 阅读全文
posted @ 2023-12-21 12:53 Happy_Eric 阅读(17) 评论(0) 推荐(0)
摘要: #include<iostream> #include<malloc.h> #include<string.h> using namespace std; #define MAX 10 #define INF 0; typedef char E; typedef struct GraphMartix 阅读全文
posted @ 2023-12-19 20:29 Happy_Eric 阅读(18) 评论(0) 推荐(0)