4 Commits

Author SHA1 Message Date
8a21a46554 fit resume to two pages 2026-05-17 09:47:39 +08:00
54e8f370c8 fix resume pagination and sidebar layout 2026-05-17 01:32:17 +08:00
2c3ce10837 update resume ordering and lab group info 2026-05-17 01:15:05 +08:00
9c65575eb3 refine resume sidebar layout and sharing 2026-05-17 00:53:14 +08:00
6 changed files with 4859 additions and 67 deletions

View File

@@ -0,0 +1,34 @@
#!/bin/sh
set -eu
CONTAINER="${1:-reactive-resume-reactive-resume-1}"
docker exec -u root -i "$CONTAINER" sh <<'SH'
set -eu
PUBLIC_FILE="/app/apps/web/.output/public/assets/file-D5WsIgJH.js"
SSR_FILE="/app/apps/web/.output/server/_ssr/pdf-document-COfeOLVC.mjs"
cp "$PUBLIC_FILE" "$PUBLIC_FILE.bak-filename" 2>/dev/null || true
cp "$SSR_FILE" "$SSR_FILE.bak-filename" 2>/dev/null || true
node - <<'NODE'
const fs = require('fs');
const publicFile = '/app/apps/web/.output/public/assets/file-D5WsIgJH.js';
let publicJs = fs.readFileSync(publicFile, 'utf8');
publicJs = publicJs.replace(
/function t\(t,n\)\{return`\$\{e\(t\)\}\$\{n\?`\.\$\{n\}`:""\}`\}/,
'function t(e,t){let n=(e||"resume").toString().trim()||"resume";return`${n}${t?`.${t}`:""}`}'
);
fs.writeFileSync(publicFile, publicJs);
const ssrFile = '/app/apps/web/.output/server/_ssr/pdf-document-COfeOLVC.mjs';
let ssr = fs.readFileSync(ssrFile, 'utf8');
ssr = ssr.replace(
/function generateFilename\(prefix, extension\) \{\n\s*return `\$\{slugify\(prefix\)\}\$\{extension \? `\.\$\{extension\}` : ""\}`;\n\}/,
'function generateFilename(prefix, extension) {\n\tconst filename = (prefix || "resume").toString().trim() || "resume";\n\treturn `${filename}${extension ? `.${extension}` : ""}`;\n}'
);
fs.writeFileSync(ssrFile, ssr);
NODE
SH

View File

@@ -4,8 +4,8 @@
"email": "zub572701190@stu.xjtu.edu.cn", "email": "zub572701190@stu.xjtu.edu.cn",
"phone": "+86 139-4611-2059", "phone": "+86 139-4611-2059",
"website": { "website": {
"url": "", "url": "https://me.huijutec.cn/audience/resume",
"label": "" "label": "me.huijutec.cn/audience/resume"
}, },
"headline": "AI 医工交叉博士|智能外科与微创手术导航|多模态大模型与临床转化", "headline": "AI 医工交叉博士|智能外科与微创手术导航|多模态大模型与临床转化",
"location": "陕西西安|西安交通大学", "location": "陕西西安|西安交通大学",
@@ -50,12 +50,12 @@
}, },
"metadata": { "metadata": {
"page": { "page": {
"gapX": 4.4, "gapX": 4.2,
"gapY": 2.45, "gapY": 0.85,
"format": "a4", "format": "a4",
"locale": "zh-CN", "locale": "zh-CN",
"marginX": 8.2, "marginX": 8.4,
"marginY": 7.2, "marginY": 8.8,
"hideIcons": false "hideIcons": false
}, },
"notes": "Design direction: refined clinical-tech academic profile. Glalie two-column layout, wider A4 margins, CJK-first typography, navy-blue medical technology accent, and two-page hierarchy for personal achievements and translational impact.", "notes": "Design direction: refined clinical-tech academic profile. Glalie two-column layout, wider A4 margins, CJK-first typography, navy-blue medical technology accent, and two-page hierarchy for personal achievements and translational impact.",
@@ -71,7 +71,6 @@
} }
}, },
"layout": { "layout": {
"sidebarWidth": 29.5,
"pages": [ "pages": [
{ {
"fullWidth": false, "fullWidth": false,
@@ -80,29 +79,37 @@
"awards", "awards",
"education", "education",
"projects", "projects",
"experience", "1014b66d-3de1-4bf4-903c-93e7f07c8f81"
"1014b66d-3de1-4bf4-903c-93e7f07c8f81",
"54972f49-3c83-4912-b429-dc659a02eda9",
"36ba1eaf-0984-4863-9b4b-691374ee27aa",
"certifications",
"752ddba0-3400-4e33-8f54-49fc3a4b57b9",
"559335bd-99c4-44c2-97b6-420b011415f7"
], ],
"sidebar": [ "sidebar": [
"f4fa59b9-34cf-41b0-b324-f07f07934fc2",
"skills", "skills",
"languages", "languages",
"802bfd76-af47-4c5d-8b04-f89a38932dcd", "802bfd76-af47-4c5d-8b04-f89a38932dcd",
"volunteer" "volunteer"
] ]
},
{
"fullWidth": true,
"main": [
"experience",
"54972f49-3c83-4912-b429-dc659a02eda9",
"752ddba0-3400-4e33-8f54-49fc3a4b57b9",
"certifications",
"36ba1eaf-0984-4863-9b4b-691374ee27aa",
"559335bd-99c4-44c2-97b6-420b011415f7"
],
"sidebar": []
} }
] ],
"sidebarWidth": 29.2
}, },
"template": "glalie", "template": "glalie",
"typography": { "typography": {
"body": { "body": {
"fontSize": 6.95, "fontSize": 6.65,
"fontFamily": "Noto Sans SC", "fontFamily": "Noto Sans SC",
"lineHeight": 1.22, "lineHeight": 1.14,
"fontWeights": [ "fontWeights": [
"400", "400",
"500", "500",
@@ -110,9 +117,9 @@
] ]
}, },
"heading": { "heading": {
"fontSize": 9.25, "fontSize": 8.85,
"fontFamily": "Noto Serif SC", "fontFamily": "Noto Serif SC",
"lineHeight": 1.18, "lineHeight": 1.12,
"fontWeights": [ "fontWeights": [
"600", "600",
"700" "700"
@@ -367,7 +374,7 @@
"id": "17beb594-5513-4788-9db8-77cde270a476", "id": "17beb594-5513-4788-9db8-77cde270a476",
"name": "多设备兼容的术中影像记录分析系统", "name": "多设备兼容的术中影像记录分析系统",
"hidden": false, "hidden": false,
"period": "2025", "period": "2025 - 至今",
"website": { "website": {
"url": "", "url": "",
"label": "", "label": "",
@@ -379,7 +386,7 @@
"id": "64fe9ea6-7efc-47f8-bed0-2fa883211ef4", "id": "64fe9ea6-7efc-47f8-bed0-2fa883211ef4",
"name": "微创化手术智能导航平台建设", "name": "微创化手术智能导航平台建设",
"hidden": false, "hidden": false,
"period": "2024 - 2026", "period": "2024 - 至今",
"website": { "website": {
"url": "", "url": "",
"label": "", "label": "",
@@ -420,7 +427,7 @@
"inlineLink": false "inlineLink": false
}, },
"location": "西安", "location": "西安",
"description": "<ul><li>研究方向医工交叉、AI 腔镜外科导航、术中影像记录分析、多模态大模型与图文报告生成</li><li>现任医工学博士党支部宣传委员、未来技术学院 B2275 班学习委员</li></ul>" "description": "<ul><li><u><strong>课题组:</strong>西安交通大学外科梦工场吕毅教授课题组;<strong>导师:</strong>吴荣谦教授</u></li><li>研究方向医工交叉、AI 腔镜外科导航、术中影像记录分析、多模态大模型与图文报告生成</li><li>现任医工学博士党支部宣传委员、未来技术学院 B2275 班学习委员</li></ul>"
}, },
{ {
"id": "17863b1a-cfbc-4990-b870-ff3485048b40", "id": "17863b1a-cfbc-4990-b870-ff3485048b40",
@@ -428,7 +435,7 @@
"grade": "", "grade": "",
"degree": "本科", "degree": "本科",
"hidden": false, "hidden": false,
"period": "2018.08 - 2022.07", "period": "2018.09 - 2022.07",
"school": "西安交通大学人工智能学院", "school": "西安交通大学人工智能学院",
"website": { "website": {
"url": "", "url": "",
@@ -526,7 +533,7 @@
"label": "", "label": "",
"inlineLink": false "inlineLink": false
}, },
"location": "西安交通大学", "location": "",
"description": "<p>宣传委员</p>", "description": "<p>宣传委员</p>",
"organization": "未来技术学院医工学博士党支部" "organization": "未来技术学院医工学博士党支部"
}, },
@@ -539,7 +546,7 @@
"label": "", "label": "",
"inlineLink": false "inlineLink": false
}, },
"location": "西安交通大学", "location": "",
"description": "<p>学习部负责人;第十五次研究生代表大会代表</p>", "description": "<p>学习部负责人;第十五次研究生代表大会代表</p>",
"organization": "未来技术学院学生会 / 研究生会" "organization": "未来技术学院学生会 / 研究生会"
}, },
@@ -552,7 +559,7 @@
"label": "", "label": "",
"inlineLink": false "inlineLink": false
}, },
"location": "西安交通大学", "location": "",
"description": "<p>第一次党员代表大会代表</p>", "description": "<p>第一次党员代表大会代表</p>",
"organization": "未来技术学院党员代表大会" "organization": "未来技术学院党员代表大会"
}, },
@@ -565,9 +572,9 @@
"label": "", "label": "",
"inlineLink": false "inlineLink": false
}, },
"location": "西安交通大学", "location": "",
"description": "<p>学习委员</p>", "description": "<p>学习委员</p>",
"organization": "未来技术学院 B2275 班" "organization": "未来技术学院 B2275 班班委"
} }
], ],
"title": "校内任职", "title": "校内任职",
@@ -589,7 +596,7 @@
}, },
"location": "", "location": "",
"position": "主要工科参与人", "position": "主要工科参与人",
"description": "<p>基于多模态磁导航技术的困难气道插管系统的研究49 万元在研</p>" "description": "<p>基于多模态磁导航技术的困难气道插管系统的研究49 万元在研</p>"
}, },
{ {
"id": "0b95f627-8395-4242-9f60-8fa0f1bb491c", "id": "0b95f627-8395-4242-9f60-8fa0f1bb491c",
@@ -603,8 +610,8 @@
"inlineLink": true "inlineLink": true
}, },
"location": "", "location": "",
"position": "在研", "position": "主要工科参与人(第三序位)",
"description": "<p>微创化手术智能导航平台建设</p>" "description": "<p>微创化手术智能导航平台建设70万元在研</p>"
}, },
{ {
"id": "47a5d869-535f-42e2-8ac7-bd927853b973", "id": "47a5d869-535f-42e2-8ac7-bd927853b973",
@@ -619,7 +626,7 @@
}, },
"location": "", "location": "",
"position": "主持", "position": "主持",
"description": "<p>磁定位辅助多模态融合微创手术组织自动配准系统3 万元结题</p>" "description": "<p>磁定位辅助多模态融合微创手术组织自动配准系统3 万元结题</p>"
}, },
{ {
"id": "affc3464-2cad-4ea4-8399-162bd2c2e2eb", "id": "affc3464-2cad-4ea4-8399-162bd2c2e2eb",
@@ -633,8 +640,8 @@
"inlineLink": false "inlineLink": false
}, },
"location": "", "location": "",
"position": "结题", "position": "主要工科参与人(第三序位)",
"description": "<p>微创手术导航训练虚拟平台建设研究</p>" "description": "<p>微创手术导航训练虚拟平台建设研究20万元结题</p>"
}, },
{ {
"id": "eb837f99-e47f-4ec9-9c8b-0fb879302889", "id": "eb837f99-e47f-4ec9-9c8b-0fb879302889",
@@ -648,8 +655,8 @@
"inlineLink": false "inlineLink": false
}, },
"location": "", "location": "",
"position": "参与第二位,结题", "position": "主要工科参与人(第三序位)",
"description": "<p>微创化手术智能导航平台建设3 万元</p>" "description": "<p>微创化手术智能导航平台建设3 万元;结题</p>"
} }
], ],
"title": "科研与获批项目", "title": "科研与获批项目",
@@ -1041,9 +1048,6 @@
{ {
"id": "802bfd76-af47-4c5d-8b04-f89a38932dcd", "id": "802bfd76-af47-4c5d-8b04-f89a38932dcd",
"type": "volunteer", "type": "volunteer",
"title": "学术组织任职",
"hidden": false,
"columns": 1,
"items": [ "items": [
{ {
"id": "76390bf9-49d5-4fbc-98ab-6691477e982d", "id": "76390bf9-49d5-4fbc-98ab-6691477e982d",
@@ -1055,8 +1059,8 @@
"inlineLink": false "inlineLink": false
}, },
"location": "", "location": "",
"organization": "中医药信息学会中西医外科智能诊疗分会", "description": "<p>理事</p>",
"description": "<p>理事</p>" "organization": "中医药信息学会中西医外科智能诊疗分会"
}, },
{ {
"id": "c2291187-b7c3-48a2-820a-40e06836072b", "id": "c2291187-b7c3-48a2-820a-40e06836072b",
@@ -1068,8 +1072,8 @@
"inlineLink": false "inlineLink": false
}, },
"location": "", "location": "",
"organization": "中国抗癌协会", "description": "<p>青年理事</p>",
"description": "<p>青年理事</p>" "organization": "中国抗癌协会"
}, },
{ {
"id": "1f873e55-fde9-4b85-ab6f-d151d5b15d53", "id": "1f873e55-fde9-4b85-ab6f-d151d5b15d53",
@@ -1081,8 +1085,8 @@
"inlineLink": false "inlineLink": false
}, },
"location": "", "location": "",
"organization": "中国医药教育协会数字医疗专业委员会", "description": "<p>数字医疗专业委员会委员</p>",
"description": "<p>委员</p>" "organization": "中国医药教育协会"
}, },
{ {
"id": "e1bf3d6a-6018-4c3e-9330-3e7c3a2d89a1", "id": "e1bf3d6a-6018-4c3e-9330-3e7c3a2d89a1",
@@ -1094,59 +1098,59 @@
"inlineLink": false "inlineLink": false
}, },
"location": "", "location": "",
"organization": "中国生物医学工程学会", "description": "<p>学生会员</p>",
"description": "<p>学生会员</p>" "organization": "中国生物医学工程学会"
} }
] ],
"title": "学术组织任职",
"hidden": false,
"columns": 1
}, },
{ {
"id": "1014b66d-3de1-4bf4-903c-93e7f07c8f81", "id": "1014b66d-3de1-4bf4-903c-93e7f07c8f81",
"type": "summary", "type": "summary",
"title": "论文与会议",
"hidden": false,
"columns": 1,
"items": [ "items": [
{ {
"id": "c16accb2-c907-44bf-aa0c-89e0085c6a50", "id": "c16accb2-c907-44bf-aa0c-89e0085c6a50",
"hidden": false, "hidden": false,
"content": "<p><strong>期刊论文</strong></p><ul><li><strong>Frontiers in Oncology, 2025</strong> — Development of an AI-driven digital assistance system for real-time safety evaluation and quality control in laparoscopic liver surgery共同第一作者</li><li><strong>中华肝脏外科手术学电子杂志, 2023/2024</strong> — 智能化辅助图像实时去雾技术在腹腔镜胆囊切除术中的应用研究(共同一作作者)</li><li><strong>中华肝脏外科手术学电子杂志, 2023</strong> — 增强现实、虚拟现实与混合现实在腔镜肝脏外科中的应用进展(共同一作作者)</li></ul><p><strong>ACS Clinical Congress 2025</strong></p><ul><li><strong>Oral</strong> — Biomarker Risk Scoring Algorithm And Preoperative Stratification In Patients With Lung Cancer</li><li><strong>Oral</strong> — Differences In Perioperative Complications Of Laparoscopic Cholecystectomy Under Voice Risk Alert System (V-RAS)-assisted Monitoring: Results From 48 Hospitals In Western China</li><li><strong>Oral</strong> — Intraoperative Smart Molecular Imaging And Recognition To Enhance Surgeons' Ability To Identify Lymph Node Metastasis In Thyroid Surgery</li><li><strong>Oral</strong> — Comparison Of Robot-assisted And Conventional Laparoscopic Hepatectomy For Perioperative Outcomes: A Clinical Randomized Controlled Trial (RCT)</li><li><strong>ePoster</strong> — Cost-effectiveness Of Endoscopic Magnetic Traction Technology Compared To Laparoscopic Heller Myotomy For The Treatment Of Achalasia</li></ul><p><strong>ACS / CMAIC / FIS 2023</strong></p><ul><li><strong>ePoster</strong> — Application Of Computer Intelligent Surgical Confidential Assistant In Laparoscopic Liver Resection</li><li><strong>ePoster</strong> — Intelligent Surgical Confidential Assistant Helps Precise Magnetic Assisted Vascular Anastomosis</li><li><strong>Poster</strong> — Intelligent Surgery Enters the Blind Spot of Lumpectomy Liver Resection</li><li><strong>Poster</strong> — Intelligent digital fogging technology shows great potential in laparoscopic hepatectomy surgery</li><li><strong>Poster</strong> — Prospects for intelligent surgical machine assistants in precision liver segment resection</li><li><strong>Poster</strong> — Application of Orthogonal Decomposition in Surgical Image Segmentation - for Unsupervised Adaptability in Intraoperative Surgical Image Recognition Navigation</li><li><strong>Poster</strong> — Intraoperative Image Detection and Clearing System Based on Generative Adversarial Network</li></ul>" "content": "<p><strong>期刊论文</strong></p><ul><li><p><strong>Frontiers in Oncology, 2025</strong> — Development of an AI-driven digital assistance system for real-time safety evaluation and quality control in laparoscopic liver surgery共同第一作者</p></li><li><p><strong>中华肝脏外科手术学电子杂志, 2023</strong> — 智能化辅助图像实时去雾技术在腹腔镜胆囊切除术中的应用研究(共同一作作者)</p></li><li><p><strong>中华肝脏外科手术学电子杂志, 2023</strong> — 增强现实、虚拟现实与混合现实在腔镜肝脏外科中的应用进展(共同一作作者)</p></li></ul><p><strong>ACS Clinical Congress 2025</strong></p><ul><li><p><strong>Oral</strong> — Biomarker Risk Scoring Algorithm And Preoperative Stratification In Patients With Lung Cancer</p></li><li><p><strong>Oral</strong> — Differences In Perioperative Complications Of Laparoscopic Cholecystectomy Under Voice Risk Alert System (V-RAS)-assisted Monitoring: Results From 48 Hospitals In Western China</p></li><li><p><strong>Oral</strong> — Intraoperative Smart Molecular Imaging And Recognition To Enhance Surgeons' Ability To Identify Lymph Node Metastasis In Thyroid Surgery</p></li><li><p><strong>Oral</strong> — Comparison Of Robot-assisted And Conventional Laparoscopic Hepatectomy For Perioperative Outcomes: A Clinical Randomized Controlled Trial (RCT)</p></li><li><p><strong>ePoster</strong> — Cost-effectiveness Of Endoscopic Magnetic Traction Technology Compared To Laparoscopic Heller Myotomy For The Treatment Of Achalasia</p></li></ul><p></p><p><strong>ACS / CMAIC / FIS 2023</strong></p><ul><li><strong>ePoster</strong> — Application Of Computer Intelligent Surgical Confidential Assistant In Laparoscopic Liver Resection</li><li><strong>ePoster</strong> — Intelligent Surgical Confidential Assistant Helps Precise Magnetic Assisted Vascular Anastomosis</li><li><strong>Poster</strong> — Intelligent Surgery Enters the Blind Spot of Lumpectomy Liver Resection</li><li><strong>Poster</strong> — Intelligent digital fogging technology shows great potential in laparoscopic hepatectomy surgery</li><li><strong>Poster</strong> — Prospects for intelligent surgical machine assistants in precision liver segment resection</li><li><strong>Poster</strong> — Application of Orthogonal Decomposition in Surgical Image Segmentation - for Unsupervised Adaptability in Intraoperative Surgical Image Recognition Navigation</li><li><strong>Poster</strong> — Intraoperative Image Detection and Clearing System Based on Generative Adversarial Network</li></ul>"
} }
] ],
"title": "论文与会议",
"hidden": false,
"columns": 1
}, },
{ {
"id": "54972f49-3c83-4912-b429-dc659a02eda9", "id": "54972f49-3c83-4912-b429-dc659a02eda9",
"type": "summary", "type": "summary",
"title": "创新创业与成果转化",
"hidden": false,
"columns": 1,
"items": [ "items": [
{ {
"id": "8ed9e356-fdbf-4c6b-bf15-4033f40b85f5", "id": "8ed9e356-fdbf-4c6b-bf15-4033f40b85f5",
"hidden": false, "hidden": false,
"content": "<ul><li><strong>专利转化</strong>2026 年相关专利完成 <strong>50 万元</strong>技术许可 / 转化公示</li><li><strong>创业实践</strong>2023 年依托大学生创新创业实践创立公司,获 <strong>30 万元</strong>创业资助</li><li><strong>典型案例</strong>2025 年“多设备兼容的术中影像记录分析系统”入选陕西首批 <strong>30 个</strong>“数据要素×”典型案例</li></ul>" "content": "<ul><li><p><strong>专利转化</strong>2026 年相关专利完成 <strong>50 万元</strong>技术许可 / 转化公示</p></li><li><p><strong>创业实践</strong>2023 年依托大学生创新创业实践创立公司,获 <strong>30 万元</strong>创业资助</p></li><li><p><strong>典型案例</strong>2025 年“多设备兼容的术中影像记录分析系统”入选陕西<strong>首批“数据要素×”典型案例</strong></p></li></ul><p></p>"
} }
] ],
"title": "创新创业与成果转化",
"hidden": false,
"columns": 1
}, },
{ {
"id": "559335bd-99c4-44c2-97b6-420b011415f7", "id": "559335bd-99c4-44c2-97b6-420b011415f7",
"type": "summary", "type": "summary",
"title": "媒体报道",
"hidden": false,
"columns": 1,
"items": [ "items": [
{ {
"id": "83f3ac59-c07d-4270-b786-9234eaf1da92", "id": "83f3ac59-c07d-4270-b786-9234eaf1da92",
"hidden": false, "hidden": false,
"content": "<ul><li><strong>新华社</strong>《西安交通大学:扎根西部传薪火 服务国家育英才》2026报道人与项目实践</li><li><strong>中国教育报</strong>《产学研“抱团”闯出创新路》2025关注创新港产学研协同实践</li><li><strong>陕西省科学技术厅</strong>转载陕西网《后端深度融合科学研究突破“围墙之困”》2025</li></ul>" "content": "<ul><li><p><strong>新华社</strong>《西安交通大学:扎根西部传薪火 服务国家育英才》2026130周年校庆专栏其中报道人与项目实践</p></li><li><p><strong>中国教育报</strong>《产学研“抱团”闯出创新路》2025关注创新港产学研协同实践,其中报道本人与项目实践</p></li><li><p><strong>陕西省科学技术厅</strong>转载《后端深度融合科学研究突破“围墙之困”》2025关注复合型创新创业人才培养</p></li></ul><p></p>"
} }
] ],
"title": "社会影响",
"hidden": false,
"columns": 1
}, },
{ {
"id": "752ddba0-3400-4e33-8f54-49fc3a4b57b9", "id": "752ddba0-3400-4e33-8f54-49fc3a4b57b9",
"type": "certifications", "type": "certifications",
"title": "编写著作",
"hidden": false,
"columns": 1,
"items": [ "items": [
{ {
"id": "b71f628c-04ea-4d2b-9452-35f4dc0e0054", "id": "b71f628c-04ea-4d2b-9452-35f4dc0e0054",
@@ -1161,7 +1165,24 @@
}, },
"description": "" "description": ""
} }
] ],
"title": "编写著作",
"hidden": false,
"columns": 1
},
{
"id": "f4fa59b9-34cf-41b0-b324-f07f07934fc2",
"type": "summary",
"items": [
{
"id": "dff431c1-739e-48f9-a835-6c8b1965c5a3",
"hidden": false,
"content": "<p><strong>西安交通大学外科梦工场</strong><br/>吕毅教授课题组<br/><strong>导师:</strong>吴荣谦教授</p>"
}
],
"title": "所在课题组",
"hidden": false,
"columns": 1
} }
] ]
} }