All Projects → ultrablox → cv_compiler

ultrablox / cv_compiler

Licence: GPL-3.0 license
A typical CV compiler for software engineer

Programming Languages

python
139335 projects - #7 most used programming language
TeX
3793 projects
shell
77523 projects
Dockerfile
14818 projects

Labels

Projects that are alternatives of or similar to cv compiler

fa.BlackIQ.ir
Persion version of BlackIQ.ir
Stars: ✭ 16 (-5.88%)
Mutual labels:  resume, cv
PanBook
Pandoc LaTeX,Epub模板,用于生成书籍,幻灯片(beamer),简历,论文等(cv, thesis, ebook,beamer)
Stars: ✭ 190 (+1017.65%)
Mutual labels:  resume, cv
resume-parser
A Simple NodeJs library to parse Resume / CV to JSON.
Stars: ✭ 105 (+517.65%)
Mutual labels:  resume, cv
Frontend-Learning-Journey
Tutorials, definitions, frameworks and some of the projects i made when starting to learn frontend web developement
Stars: ✭ 28 (+64.71%)
Mutual labels:  resume, cv
resume-parser
A java Spring Boot Resume Parser using GATE library.
Stars: ✭ 20 (+17.65%)
Mutual labels:  resume, cv
resume
👦 个人简历模板
Stars: ✭ 35 (+105.88%)
Mutual labels:  resume, cv
pagedown-cv
R package for generating a CV with R Markdown + entries in a spreadsheet
Stars: ✭ 57 (+235.29%)
Mutual labels:  resume, cv
myprofile
Generate your resume easily from Github actions ✅ using discussion section 📃 🚀
Stars: ✭ 19 (+11.76%)
Mutual labels:  resume, cv
resume
My Chinese and English Resumes in LaTeX with Font Awesome 5
Stars: ✭ 296 (+1641.18%)
Mutual labels:  resume, cv
nisrulz.github.io
Everything about Nishant Srivastava/nisrulz (online alias)
Stars: ✭ 41 (+141.18%)
Mutual labels:  resume, cv
CV
📜 My Data Driven CV written with R, YAML, & LaTeX
Stars: ✭ 54 (+217.65%)
Mutual labels:  resume, cv
cv
github.com/enfiskutensykkel/cv/raw/master/cv.pdf
Stars: ✭ 55 (+223.53%)
Mutual labels:  resume, cv
about.me
Single Page Resume Template
Stars: ✭ 20 (+17.65%)
Mutual labels:  resume, cv
BlackIQ
Who I am !?
Stars: ✭ 19 (+11.76%)
Mutual labels:  resume, cv
vue-modern-resume
🗂 A simple resume template based on Vue.js framework and Vuetify UI toolkit.
Stars: ✭ 104 (+511.76%)
Mutual labels:  resume, cv
cv
📄 My CV
Stars: ✭ 31 (+82.35%)
Mutual labels:  resume, cv
Cv
🎓 Best in Class modern CV, Resume and Portfolio website template. All-in-One-Page site with simply customizable builder.
Stars: ✭ 232 (+1264.71%)
Mutual labels:  resume, cv
awesome-libraries
😎 Libraries that are being shown in Sourcerer profiles.
Stars: ✭ 131 (+670.59%)
Mutual labels:  resume, cv
classic-cv
🎓 FREE Classic CV / Resume HTML Template
Stars: ✭ 52 (+205.88%)
Mutual labels:  resume, cv
BlackIQ.ir
BlackIQ.ir Source Code
Stars: ✭ 14 (-17.65%)
Mutual labels:  resume, cv

cv_compiler

Price Price suitable suitable License: GPL v3

Table of contents

Aims

This is automatic compiler of your working experience journal into standardized CV for Software Engineer and related positions.

Demo

Quick Start

  1. Install GIT LFS or make sure it is already installed.

  2. Clone current repository.

git clone https://github.com/ultrablox/cv_compiler.git
  1. Install docker according to official instruction and make sure service is running.

  2. Compile Sample CV, which journal is in cv_compiler/sample_input.

scripts/generate.sh
  1. Find compiled CV in pdf at:
> ls out/
bruce_wayne_CV.pdf

Adopt CV for Vacancy (experimental)

Create a textfile with vacancy description. Then run

src/extract_skills.py test_data/vacancy.9.txt > test_data/vacancy.9.txt.skills

Adjust output and improve DB with links if some skills are missed.

In order to create relevant CV for given vacncy:

INPUT_DIR=../../my_cv scripts/generate_projection.sh test_data/vacancy.9.txt

Skills Onthology

In order for adopt CV to vacancy, currently following onthology is used. It can be extended in /data/base.

Writing Your Journal

Directory Structure

Write Exprience Journal with following structure:

journal_dir
│-- data.json
│-- lead.txt
│-- sci_publications.bib
│-- pop_publications.bib
│
└───img
│   │-- project_logo1.png
│   │-- company_logo2.svg
│   │-- ...

For the reference look to the default example.

Structure

Journal (journal_dir/data.json') is written in JSON with a few sections:

{
  "personal" : {
      "..."
  },
  "contacts" : {
      "..."
  },
  "education" : [
      "..."
  ],
  "skills" : {
    "..."
  },
  "special_skills" : [
      "..."
  ],
  "projects" : [
    "..."
  ],
  "employments" :[
      "..."
  ],
  "conferences" : [
      "..."
  ],
  "traits" : [
      "..."
  ]   
}

Contacts

{
  "email" : "[email protected]",
  "skype" : "bruce",
  "phone" : "06-12345678",
  "residence" : "Endhoven, Netherlands",
  "linkedin" : "https://www.linkedin.com/in/yuri-blokhin-01688a78/",
  "languages" : [
      "English (advanced)",
      "Chineese (native)",
      "German (basic)"
  ]
}

Skills

Here you can add special data about referencing further skills - it's full name and your attitude (when you like mentioned technology, or don't want to use it anymore).

"ML" : {
    "attitude" : "negative",
    "full_name" : "Machine Learning"
}

Projects

This is basic unit of your experience. State here the projects you weere involved in, skills that you gained and tasks with your achievments. Show that you really did something.

{
  "name" : "Photoshop",
  "icon" : "photoshop_project.png",
  "period" : "01.09.2015-30.08.2016",
  "description" : "Raster graphics editor",
  "team-size" : "9",
  "web" : "https://www.adobe.com/products/photoshop.html",
  "tasks" : [
    "..."
  ]
}

I strongly recomment to include project logo into each project. Tasks that you did within the project must contain period, skills and achievments.

{
  "description" : "Development of text-recognition filter from raw image",
  "period" : "01.09.2015-28.02.2016",
  "skills" : ["CI", "C++", "ML"],
  "achievements" : [
    "achievied recognition accuracy up to 85%"
  ]
}

Employments

This is a list of your work history. If you worked in well-reccognised company - I strongly recomment to include company logo into the records.

{
    "name" : "Google Inc",
    "logo" : "img/logo_google.png",
    "description" : "search engine",
    "role" : "Software Engineer",
    "location" : "Zurich, SZ",
    "period" : "01.09.2016-30.08.2017",
    "web" : "https://www.google.com",
    "projects" : ["Google Drive"]
}

Make also references to the projects that you worked on in this company.

Compiling

Compile Sample CV, providing it path to the journal_dir folder:

cd cv_compiler/scripts
INPUT_DIR=$HOME/Documents/journal_dir ./generate.sh

Technologies

Feedback

I appreciate any form of feedback, that helps me improve the project. You can do it in form of Pull Requests or Issues.

Credit the Author

If you like the project, and want to credit the author - leave the QR with link to this page in your CV - so more people can know about it. If for some reasons you want to get rid of the QR, use --no-watermark parameter:

./generate.sh --no-watermark
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].