Daily | SQL Boy的第一个月

入职数月,年关在即。不论我喜欢与否,过去关于学校和工作的起承转合,都已经成为刻画我职业起点的一份记忆。虽是寥寥,但也参与了一次完整的开发周期。其间的感受,冷暖自知,但涌现的经验与反思可贵。趁着记忆新鲜,还是用文字记录。 学校的任务清晰,明确,甚至有Criteria一一对应,但工作不会。 目标导向,用第一性原理倒推过程,主动思考。 比不懂更可怕的是糊弄。 确保记录,每天的日志比任何时间管理方法都更好用。 期待下月会更好。

December 11, 2023 · 1 min · 6 words · Wenbo

Note | Quick Notes on SQL

Concept What is a database? A structured set of computerized data with accessible interface SQL: Structure Query Language (SQL), A standard language used in all relational database management system Install the database Two components: MySQL SQL workbench Add the mysql to the environment variable open ~/.zshrc ## add the mysql bin ## no spaces around the = export PATH=${PATH}:/usr/local/mysql/bin ## The save the file source ./zshrc Hierachy: Server -> Multiple database -> Multiple sheets Basic Select, Create, Delete ...

June 26, 2023 · 14 min · 2817 words · Wenbo

Note | Common Terminologies in Graph Thoery

Common Terminologies in Graph Thoery Define an undirected graph with the natrual order as $G = (V,E,\sigma)$ where $V$ is the set of the vertices, $E$ is the set of edges and $\sigma$ is the natrual ordering. Chordal graph A chordal is a path of undirected graph between two non-conescutive vertices. (“shortcut”" between two vertices") A chordal graph referes to every cycle of length four or greater of a simple graph has a chord. (triangulated graph) Chordal Completion ...

June 1, 2023 · 3 min · 473 words · Wenbo

Note | Clique seperator

Clique seperator Decomposition by clique seperator (Tarjan, 1985) Main Idea: Based on the idea of ‘divide and conquer’, this paper proposed an graph decomposition algorithm by finding the clique seperator recursively. The decomposition results in a binary decomposition tree. The author suggested some general ideas to tackle 4 NP-hard problems by ultlizing the binary decomposition tree. Preliminaries Perfect elimination ordering, Clique, Minimal and Minimum ordering, Seperator Algorithms Text description ...

June 1, 2023 · 1 min · 156 words · Wenbo

Note | Revisiting Sparse Matrix Technologies

Overview Revisitting the sparse matrix technology - Summary. ...

April 26, 2023 · 3 min · 612 words · Wenbo

Note | Reverse Cuthill-McKee Algorithm

Overview Revisitting the sparse matrix technology. ...

April 24, 2023 · 3 min · 553 words · Wenbo

Note | Nested Dissection Algorithm

Overview Revisitting the sparse matrix technology. ...

April 14, 2023 · 3 min · 619 words · Wenbo

Note | Monte Carlo Tree Search Summary

Monte Carlo Tree Search Summary...

January 11, 2023 · 3 min · 601 words · Wenbo

Note | Reinforcement Learning Algorithms Summary

Reinforcement Learning Algorithms Summary...

July 8, 2021 · 7 min · 1413 words · Wenbo

Note | Markov Decision Processes

Markov Property (MP)...

June 1, 2021 · 3 min · 439 words · Wenbo