toLearn¶
Graph/diagram/visualization/PPT Examples Yet to Be Explored
导言
画图是为了解释文字难以说清的事情。
首先要明确目标(一句话):
- 解释清楚什么逻辑、什么关系、什么过程、证明什么观点。
- 复杂的内容会导致内容的丢失,要明确什么时候需要子图。
其次要明确(大概逻辑):
- 明确重点对象;明确其与余下对象的分隔/不同。
- 对象间逻辑。
最后才是具体实现(用什么图案、颜色、字体、线条)。注意明确目标、突出重点、画面和谐、读者易读易懂。
Datastruture: Tree
导言
When i learn the radix tree in mult-level page table, I was confused by various kinds of tree and thier names
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.
CProgramReading
visibility & attribute & capability
#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,没有进行正确性的交叉校验。
无