jobless icon indicating copy to clipboard operation
jobless copied to clipboard

Add projects

Open Tensho opened this issue 9 years ago • 2 comments

Employee can work on the several projects in the same company, it's reasonable allow to specify projects per company in CV. For this feature we need to introduce groups in the form of the tree, where one node can contain many other nodes. In this case we can write something like this:

employment do
    company "Dream" do
      homepage "http://dream.com/"

      project "A" do
        homepage "http://project-a.com/"

        title "Rails developer"

        technologies "Ruby, Ruby on Rails"

        bulletin "B1."
        bulletin "B2."

        start_date "June 2015"
        end_date "Current"
      end

      project "B" do
        homepage "http://project-b.com/"

        title "JavaScript developer"

        technologies "Javascript, Ruby on Rails"

        bulletin "B3."
        bulletin "B4."

        start_date "June 2014"
        end_date "June 2015"
      end
    end
  end
end

Tensho avatar Nov 10 '15 15:11 Tensho

How would this look like in the generated CV?

dabrorius avatar Nov 10 '15 15:11 dabrorius

You just nail down projects within company, one by one, with whole set of responsibilities, achievements, etc. LinkedIn has such structure, you can specify several projects within company, BUT there is just the references to "Projects" section in the "Experience" section, not project's description itself. So you can get know about your project experience in the separate section. I don't like it. I like to see everything related to your experience in the particular company right here. So, I propose to render the projects directly after company title (+ optional company info):

Dream (http://dream.com/)
  Rails developer - A (http://project-a.com/) June 2015 - Current
  (Ruby, Ruby on Rails)
  ...

  JavaScript developer - B (http://project-b.com/) June 2014 - June 2015
  (Javascript, Ruby on Rails)
  ...

Actually, it doesn't matter, what default template do you prefer ^_^

Tensho avatar Nov 14 '15 14:11 Tensho