毕业于中山大学中山医学院,留校工作从事VIP临床医疗十余年,教授内科学并获中山大学中青年教师授课比赛一等奖。
业余时间喜欢捣鼓计算机,相关心得体会记录在本站。

常用软件 VSCode
Git
Node.js
Rust
常用JavaScript算法 const isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
const deepCopy = JSON.parse(JSON.stringify(obj));
const randomColor = '#' + Math.floor(Math.random()*16777215).toString(16);
const shuffledArray = array.sort(() => Math.random() - 0.5);
const uniqueArray = [...new Set(array)];
const isEmpty = obj => Object.keys(obj).length === 0;
const generateId = () => Math.random().toString(36).substring(2, 10);
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));
特殊字符 ℃ ℉ ° ′ ″ ㎡ ㎜ ㎝ ㎞ ㏎ ㎎ ㎏ ㏄ ㏕
⁰ ¹ ² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹
₀ ₁ ₂ ₃ ₄ ₅ ₆ ₇ ₈ ₉
① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩
㈠ ㈡ ㈢ ㈣ ㈤ ㈥ ㈦ ㈧ ㈨ ㈩
⒈ ⒉ ⒊ ⒋ ⒌ ⒍ ⒎ ⒏ ⒐ ⒑ ⒒ ⒓ ⒔ ⒕ ⒖ ⒗ ⒘ ⒙ ⒚ ⒛
⑴ ⑵ ⑶ ⑷ ⑸ ⑹ ⑺ ⑻ ⑼ ⑽ ⑾ ⑿ ⒀ ⒁ ⒂ ⒃ ⒄ ⒅ ⒆ ⒇
Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ Ⅵ Ⅶ Ⅷ Ⅸ Ⅹ Ⅺ Ⅻ
ⅰ ⅱ ⅲ ⅳ ⅴ ⅵ ⅶ ⅷ ⅸ ⅹ
⅛ ¼ ⅓ ⅜ ½ ⅝ ⅔ ¾ ⅞