距离我上次分享 AWS 机器学习专业认证 (MLS-C01) 的经验,转眼已过去了三个月有余。这次我决定选取另一个目标——AWS Certified Developer Associate (DVA-C02)认证。
我的 AWS Certified Machine Learning – Specialty 认证之旅
最近通过了 AWS Certified Machine Learning – Specialty 认证,再此分享一下我的备考经验和考试心得,希望能帮助到正在准备这项认证的朋友们。
2024年的年终总结:转变与沉淀
看着屏幕上的倒计时,我以相当赛博的方式在Youtube上看了世界各地直播的跨年烟花秀,转眼间,2024就这样结束了。若要用一个词来概括这一年,大概是”转变”吧 —— 工作的转变、生活节奏的转变,以及思维方式的转变。而在这些转变之中,我也在寻找着一种新的平衡与沉淀。
迟来的2023年终总结
这是一篇迟来的2023年终总结。2023年底的时候出去旅游了,2024年初又回国了一次,所以这篇年终总结终究还是迟到了半个月。
The Heap Sort Algorithm Explained
The Heap
A heap is a specialized binary tree data structure that satisfies the heap property. In a heap, each node has at most two children, and the key (the value) of each node is greater than or equal to (in a max heap) or less than or equal to (in a min heap) the keys of its children. The binary tree representation of a heap is a complete binary tree, meaning that all levels of the tree are completely filled except possibly for the last level, which is filled from left to right.
Modern C++ 学习笔记 -- 左值与右值
聊聊被动收入与躺赚
利用GitHub Actions实现版本自动构建与发布流程
GitHub Actions 是 GitHub 自家推出的持续集成和持续交付工作流服务。自从上次利用GitHub Actions实现Blog自动部署与发布过后,构建和发布blog从此变得轻松。这次,我打算充分利用 GitHub Actions, 把开源项目的持续构建和发布流程做成完全自动化。