TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: A no-frills CV template using Typst and YAML to version control CV data

30 点作者 jskherman超过 1 年前

3 条评论

jcparkyn超过 1 年前
Looks cool (I&#x27;m a big fan of Typst), but I do question the value of moving the data to yaml, rather than just building a set of Typst functions and styles (see example below).<p>To me, it&#x27;s one of those things people often do because it _feels_ nice, but when you really think about it the benefits are often very small (and the costs are quite high). The most obvious benefit is that the yaml data can be parsed by other programs, but is anyone really going to do that?<p>For an example of what I mean, is [1] (plus all the supporting code) really a better DX than [2] (which is also simpler to implement and much easier to debug and modify)?<p>[1]<p><pre><code> work: # Can&#x27;t use markup or code in most of these fields, even if I wanted to. - organization: X Company position: Senior Developer url: https:&#x2F;&#x2F;example.com location: Remote &#x2F; New York, New York startDate: 2021-08-01 endDate: &quot;present&quot; highlights: - &quot;Any markup I use here needs to be `eval`ed, and I don&#x27;t get syntax highlighting etc.&quot; </code></pre> [2]<p><pre><code> == Work Experience #workinfo( organization: &quot;X Company&quot;, position: &quot;Senior Developer&quot;, url: &quot;https:&#x2F;&#x2F;example.com&quot;, location: &quot;Remote &#x2F; New York, New York&quot;, startDate: &quot;2021-08-01&quot;, endDate: &quot;present&quot;, highlights: ( [I don&#x27;t need to use `eval` any more], [etc...]), ) #workinfo(etc...)</code></pre>
评论 #38998599 未加载
评论 #38997850 未加载
matternous超过 1 年前
It’s fantastic and easy to use, I actually used this exact template about a month ago to update my resume and it hardly took any time at all.
casper14超过 1 年前
Looks cool! I do something similar for myself just using markdown and git
评论 #38997073 未加载
评论 #38996295 未加载