英語圏の企業に就職しようと思うと、向こうのフォーマットに合わせた履歴書(レジュメ)が必要になります。インターネットで探せば幾つも見つかりますが、開発者らしいレジュメがどれであるかは分かりづらいかも知れません。 そこで使ってみたいのがMarkdown Resume Generatorです。MarkdownからHTML/PDFのレジュメを生成してくれます。

Markdown Resume Generatorの使い方

一部ですが、下記のようなフォーマットになっています。基本的にはMarkdownですが、使い方はカスタマイズされているようです。

# (名前)
## (肩書き)

> [Download PDF](resume.pdf)  
> [craig@there4development.com](craig@there4development.com)  
> (999) 888-7777

------

### プロフィール {#profile}

Progressively evolve cross-platform ideas before impactful infomediaries. Energistically visualize tactical initiatives before cross-media catalysts for change.

------

### Skills {#skills}

* Web Design
  : Assertively exploit wireless initiatives rather than synergistic core competencies.

* Interface Design
  : Credibly streamline mission-critical value with multifunctional functionalities.

* Project Direction
  : Proven ability to lead and manage a wide variety of design and development projects in team and independent situations.

そしてコマンドを実行するとHTMLになります。

PDFにする際にはwkhtmltopdfを使っています。

HTMLをPDF化するので日本でも特に問題ありません。

コマンドのヘルプです。

$ ./bin/md2resume
Markdown Resume Generator version 2.0.10 by Craig Davis

Usage:
  [options] command [arguments]

Options:
  --help           -h Display this help message.
  --quiet          -q Do not output any message.
  --verbose        -v|vv|vvv Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
  --version        -V Display this application version.
  --ansi              Force ANSI output.
  --no-ansi           Disable ANSI output.
  --no-interaction -n Do not ask any interactive question.

Available commands:
  help         Displays help for a command
  html         Generate an HTML resume from a markdown file
  list         Lists commands
  pdf          Generate a PDF from a markdown file
  selfupdate   Updates md2resume.phar to the latest version.
  stats        Generate a word frequency analysis of your resume
  templates    List available templates
  version      Show current version information

Markdown Resume Generatorが便利なのは英語圏での書き方を真似できるということでしょう。また、使い慣れたMarkdownを使うので、面倒さがありません。GitHubで公開し、誰でもすぐに見られるようにしておくのも良さそうです。

Markdown Resume GeneratorはPHP製のオープンソース・ソフトウェア(MIT License)です。

there4/markdown-resume: Generate a responsive CSS3 and HTML5 resume with Markdown, with optional PDF output.