
## The Essence of Career Signaling ```mermaid flowchart LR subgraph A["Invisible Abilities"] direction LR B1[Intelligence] B2[Perseverance] B3[Responsibility] end B[Observable Behaviors & Achievements<br/>Career Signaling] A -->|Transform into| B class B signal ```
## Career Signaling in Practice ```mermaid flowchart LR subgraph A["Practical Process"] direction LR B1[What you do] B2[What you think] B3[How you solve problems] end B[Observable Behaviors & Achievements<br/>Career Signaling] C[Public Platforms<br/>Social Media / Blog / Video / GitHub【Portfolio】] D[Potential Employers / Partners / Clients / Colleagues] F[More Opportunities<br/>Higher Probability of Good Luck] A -->|Share to| C C --> |Long-term Low-cost Exposure<br>Transforms into| B D --> |Access| B D --> |Gain| F D --> |Build Trust in Advance| D classDef hidden fill:#f3f3f3,stroke:#999,stroke-dasharray:5 5 classDef signal fill:#e8f4ff,stroke:#3b82f6 class B signal ```
## Career Signaling **Career Signaling** is becoming something that for ordinary people is * Very important * **Extremely cost-effective**
## Resume V.S. Portfolio <div style="display: flex; gap: 1em;"> <div style="flex: 1; background: rgba(76, 175, 80, 0.1); padding: 1em; border-radius: 8px; border-left: 4px solid #4CAF50;"> ### Resume - Education - Companies worked for - Job titles - Internal project experience </div> <div style="flex: 1; background: rgba(244, 67, 54, 0.1); padding: 1em; border-radius: 8px; border-left: 4px solid #F44336;"> ### Portfolio - Technical articles - Real project experience - GitHub - Videos, etc. </div> </div>
## My Portfolio ```mermaid flowchart LR direction LR subgraph reason["During Study"] subgraph Course["Learning Content"] B1[Algorithms designed in teaching] B2[Data structures and abstract concepts] end Google[Reproducible Google Colab code<br> DrawIO diagrams, etc.] Forum[Teaching system Forum<br/>Publicly observable] Pro[Professor] E[Invited to participate in projects] F[Received project compensation<br/>Subsidized part of tuition] Course --> |Convert to|Google Google --> |Share to| Forum Pro --> |Observed| Forum Pro --> |Invited| E E --> F end subgraph blog["Generated blog creation idea"] direction LR subgraph SkillStack["Alternative tech stacks"] direction LR S1[Wordpress] S2[Vuepress] S3[Blog platforms] end subgraph CurrentBlog["Current blog"] direction TB vue[vuepress-theme-hope] jetblog[https://jet-w.github.io] problem[Exponential memory consumption growth] end SkillStack --> |Chose| CurrentBlog vue --> |Created| jetblog jetblog --> |Discovered|problem end reason --> blog ```
## My New Blog System ```mermaid flowchart LR direction LR subgraph reason["Memory Consumption Reason"] vuepress["vuepress compilation method"] end subgraph backupstack["Backup tech stack"] astro[Astro] astrobio[Astro ecosystem] ret[Unable to find suitable option] astro --> |Search|astrobio astrobio --> |Result|ret end subgraph finalret["Final Decision"] result[Build a blog system from scratch] end reason --> backupstack backupstack --> finalret ```
## Next Steps * Modify it into a reusable npm package and publish it for others to use * Create blog system tutorial videos * Create various blog system plugins for use * Continuously maintain the blog system