F
resume.go
resume.go
  1. package profile
  2. type Candidate struct {
  3. Name string
  4. Role string
  5. Institution string
  6. }
  7. var Me = Candidate{
  8. Name: "宸極先生",
  9. Role: "資深命理專家",
  10. Institution: "高階命理顧問",
  11. }
research.go
  1. var ResearchInterests = []string{
  2. "Scalable Training and Serving for LLMs",
  3. "Parameter-Efficient Fine-tuning",
  4. "Reproducible Applied ML Workflows",
  5. }
  6. var CurrentFocus = []string{
  7. "太乙神數深度演繹",
  8. "高階八字格局分析",
  9. "紫微斗數星盤精解",
  10. }
projects.go
  1. type Project struct {
  2. Title string
  3. Period string
  4. Stack []string
  5. Link string
  6. }
  7. var Projects = []Project{
  8. {
  9. Title: "Dimensional Debris",
  10. Period: "2025 - Present",
  11. Stack: []string{"Astro", "TypeScript", "Tailwind CSS", "Preact"},
  12. Link: "https://dimensional-debris.dev/",
  13. },
  14. {
  15. Title: "Interactive Terminal UI Module",
  16. Period: "2025",
  17. Stack: []string{"JavaScript", "DOM Events", "Command Parsing"},
  18. },
  19. {
  20. Title: "Game Tooling and Pipeline Support",
  21. Period: "2024",
  22. Stack: []string{"Unity", "C#", "Pipeline Integration"},
  23. },
  24. }
  25. var Publications = []string{
  26. "Publications available upon request.",
  27. }
contact.go
  1. func Contact() map[string]string {
  2. return map[string]string{
  3. "github": "#",
  4. "cv": "#",
  5. "email": "mailto:contact@taiyishu.com",
  6. }
  7. }
  8. // 致力於透過嚴謹的數理邏輯,演繹生命之軌跡,服務於追求極致人生規劃之士。
resume.py
  1. candidate = {
  2. 'name': '宸極先生',
  3. 'role': '資深命理專家',
  4. 'institution': '高階命理顧問',
  5. }
research.py
  1. research_interests = [
  2. 'Scalable Training and Serving for LLMs',
  3. 'Parameter-Efficient Fine-tuning',
  4. 'Reproducible Applied ML Workflows',
  5. ]
projects.py
  1. projects = [
  2. {
  3. "title": "Dimensional Debris",
  4. "period": "2025 - Present",
  5. "tech": ["Astro", "TypeScript", "Tailwind CSS", "Preact"],
  6. "link": "https://dimensional-debris.dev/",
  7. },
  8. {
  9. "title": "Interactive Terminal UI Module",
  10. "period": "2025",
  11. "tech": ["JavaScript", "DOM Events", "Command Parsing"],
  12. },
  13. {
  14. "title": "Game Tooling and Pipeline Support",
  15. "period": "2024",
  16. "tech": ["Unity", "C#", "Pipeline Integration"],
  17. },
  18. ]
contact.py
  1. contact = {
  2. 'github': '#',
  3. 'cv': '#',
  4. 'email': 'mailto:contact@taiyishu.com',
  5. }
簡介.zh-TW
  1. = "宸極先生"
  2. = "資深命理專家"
  3. = "高階命理顧問"
重點.zh-TW
  1. = [
  2. "太乙神數深度演繹",
  3. "高階八字格局分析",
  4. "紫微斗數星盤精解",
  5. ]
分析案例.zh-TW
  1. = [
  2. "Dimensional Debris (2025 - Present)",
  3. "Interactive Terminal UI Module (2025)",
  4. "Game Tooling and Pipeline Support (2024)",
  5. ]
聯絡資訊.zh-TW
  1. = "mailto:contact@taiyishu.com"