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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you maintain versioning of your resume?

1 点作者 kreeWall将近 7 年前
How do you maintain old copies of your resume and new copies? I have SO many files called "resume (date)" on my computer, and everytime I need to send it out, I have to remove the date so that the file looks good and then these just pile up. HELP!

3 条评论

davelnewton将近 7 年前
I&#x27;m not even sure why you&#x27;d bother versioning.<p>In fairness, I do too, but I keep a dated set in a subfolder (`archived` if it matters) and when I edit I start with `current.doc` (unfortunately Word is still the preferred format outside of... anyone with any sense), save it as a dated version.<p>This way I only ever care about `current.doc` (and its exports into real formats) but can still reference stuff later.<p>That said, I&#x27;ve also experimented with simple resume data formats (primarily JSON and annotated Markdown) that got transformed into doc and real formats, and kept that in a normal repo. It was better, but since it was a homegrown format, annoying in the long run. I&#x27;ll be revisiting it.<p>The nice thing about transforming a custom resume is that I was able to (more or less) automatically re-target it depending on the type of position I was submitting it for. That was only semi-automated, but spoke of some promising ideas.
评论 #17231122 未加载
joezydeco将近 7 年前
Curious - why would you need to keep old copies of your resume around? Are you sending different versions to different employers?<p>If that&#x27;s the case, create a base resume, then save a copy with the name of the targeted company and the date.<p>Why would FooCorp be bothered if your resume was filenamed &quot;kreeWall-FooCorp-June2018.pdf&quot;? It actually shows you took time to craft a document for them and aren&#x27;t just spraying out resumes to every company that&#x27;s receiving them.
评论 #17231109 未加载
cimmanom将近 7 年前
I got sufficiently annoyed with this to create a tool that will render my resume as HTML based on a few JSON files, and another tool that will print the HTML into a print-friendly PDF. Then I just keep the JSON in a separate Git repository. Problem solved.