Graph/diagram/visualization Examples Yet to Be Explored

导言

画图是为了解释文字难以说清的事情。

首先要明确目标(一句话):

  • 解释清楚什么逻辑、什么关系、什么过程、证明什么观点。
  • 复杂的内容会导致内容的丢失,要明确什么时候需要子图。

其次要明确(大概逻辑):

  1. 明确重点对象;明确其与余下对象的分隔/不同。
  2. 对象间逻辑。

最后才是具体实现(用什么图案、颜色、字体、线条)。注意明确目标、突出重点、画面和谐、读者易读易懂。

Read more

Moba

导言

FPS and moba game is the most popular PVP game

Read more

Datastruture: Tree

导言

When i learn the radix tree in mult-level page table, I was confused by various kinds of tree and thier names

Read more

Naming your work

导言

While reading various research papers, it’s fascinating to observe a trend where researchers use names from popular culture to label their scientific work. This practice not only adds a cool and captivating touch to the research but also leaves a lasting impression, e.g, transformer in AI. Popular culture symbols and names serve as powerful tools when incorporated into research titles, especially when they align with the core concept.

Read more

Email

导言

english email example (maybe generate from chatgpt)

Read more

Speech

导言

随着翻译软件逐渐结合到工作流中,再加上chatgpt等润色英文写作。我相信在未来读写不会再是难点。但是与外国人直接打交道的听说还是需要积累的。(听的话假如是zoom会有实时翻译,说反而更重要。You should always reading the blog content

内容选择

科技相关的有意思的TED视频演讲视频。

Read more

State Owned Enterprise

导言

听师兄说国企里相对有钱点的是邮储,电网和烟草。来研究一波

Read more

Mkdocs

导言

mkdocs在今年支持了blog的基本功能,而且已经有探路者实践过了[^1]。也是时候升级博客生成器了。

Read more

Tmux

导言

默认安装了ohmytmux时的常见命令。

常用命令

默认的tmux快捷键

  • 退出 :输入 exit 或按下 Ctrl + D 关闭当前的 tmux 窗口或面板。
1
2
3
4
5
tmux new -t $NAME

tmux attach -t $NAME

tmux list-sessions

Useful to copy

<prefix> + maximizes the current pane to a new window

源码安装

依赖

1
2
3
4
5
6
sudo yum install -y \
ncurses-devel \
libevent-devel \
openssl-devel \
git \
bison

运行

1
2
3
4
5
git clone https://github.com/tmux/tmux.git
cd tmux
sh autogen.sh
./configure && make -j
sudo make install

参考文献

CProgramReading

visibility & attribute & capability

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _LIBCPP_TYPE_VIS
# if !defined(_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS)
# define _LIBCPP_TYPE_VIS __attribute__ ((__visibility__("default")))
# else
# define _LIBCPP_TYPE_VIS
# endif
#endif

#ifndef _LIBCPP_THREAD_SAFETY_ANNOTATION
# ifdef _LIBCPP_HAS_THREAD_SAFETY_ANNOTATIONS
# define _LIBCPP_THREAD_SAFETY_ANNOTATION(x) __attribute__((x))
# else
# define _LIBCPP_THREAD_SAFETY_ANNOTATION(x)
# endif
#endif // _LIBCPP_THREAD_SAFETY_ANNOTATION

class _LIBCPP_TYPE_VIS _LIBCPP_THREAD_SAFETY_ANNOTATION(capability("mutex")) mutex
{
}

It’s part of code from __mutex_base

需要进一步的研究学习

暂无

遇到的问题

暂无

开题缘由、总结、反思、吐槽~~

参考文献

上面回答部分来自ChatGPT-3.5,没有进行正确性的交叉校验。