diff --git a/projects/cv_generator/cv/KALINGA_RAY_2017.pdf b/projects/cv_generator/cv/KALINGA_RAY_2017.pdf index b85cc46..a4c0e9b 100644 Binary files a/projects/cv_generator/cv/KALINGA_RAY_2017.pdf and b/projects/cv_generator/cv/KALINGA_RAY_2017.pdf differ diff --git a/projects/cv_generator/src/generateCV.py b/projects/cv_generator/src/generateCV.py index 1bcee28..dd953ec 100644 --- a/projects/cv_generator/src/generateCV.py +++ b/projects/cv_generator/src/generateCV.py @@ -68,11 +68,13 @@ def pageheading(): def intro(): return \ ''' -

SPECIALIST

-

Software engineer with 10 years' experience in IT industry, in various domains, - specializing in Car Multimedia application and Mobile application development. - 1.5yrs of working and living experience in Hildesheim, Germany. Possess strong motivation - towards learning German language and have completed A2 (Deutsche Sprache) +

CAREER OBJECTIVE

+

To pursue a Master’s Degree in the field of applied Computer science such as Data Analysis, Data science, + which would enhance my existing skills, give me practical exposure of utilizing the theoretical concepts + taught during Undergraduate course (as well as self taught in the recent past) in a real time environment. + And hone my professional skills that I have gained while working as Software engineer in IT industry for + last 10 years. Also want to spent some more time learning and living in German society as my last 1.5yrs + of stay in Hildesheim, Germany was great and enriching in terms of personal and professional life.

''' @@ -85,13 +87,11 @@ def technical():
  • Domain Specific Language (DSL) development using Core Java, Xtend/Xtext
  • Integration Test framework development using Python
  • HMI Application development for Linux, Symbian, MeeGo devices
  • -
  • GUI development using QT, QML, gtk, UIQ, S60
  • Sound knowledge of HTML, CSS, XML, Java Script
  • Git, ClearCase, Subversion,Eclipse, Carbide, CodeWarior etc..
  • Make, CMake, Boost Library
  • TDD, Unit testing (JUnit, Google Test), Integration Testing
  • Agile methodologies, Scrum, Planning & Estimation, CI(Jenkins)
  • -
  • Sound knowledge of productivity tools like puppet, vagrant
  • Disigning using UML, Enterprise Architect
  • Working knowledge of Android, Shell script, Perl, Data Analysis and Machine Learning
  • @@ -109,7 +109,6 @@ def functional():
  • Interface Test Automation
  • Media Player and Media Gallery
  • Webkit based web browser
  • -
  • Predictive Input method solution

  • ''' @@ -121,7 +120,6 @@ def keyresponsibilities():
  • Participation in the Sprint Planning (Agile) and Review
  • Design (using UML) and Design review
  • Coding(C, C++, Java, Python/Linux), code review, unit testing and documentation.
  • -
  • Responsible for feature development of various product.
  • Test Plan and Test Automation

  • @@ -171,14 +169,14 @@ def certificate(cert, institute, duration): ''' -def certificate_link(cert, institute, duration, link): +def certificate_link(cert, institute, duration, link, id): return \ '''
    ''' + cert + '''
    ''' + institute + '''
    -
    Certificate Id: AYMLVT4A +
    ''' + duration + '''
    @@ -188,10 +186,14 @@ def certificate_link(cert, institute, duration, link): def certificates(): return \ '''

    CERTIFICATION:

    ''' + \ + certificate_link("ISTQB Foundation Certification Examination", + "ISTQB", + "21st Mar' 2017", + "http://www.istqb.in/index.php/certified-tester/foundation-level", "Reg# 110964") + \ certificate_link("Python Certification Training", "Edureka", "Dec'16-Feb'17", - "https://www.edureka.co/my-certificate/0d74fa2c1a12a33be340ad3c0c6ec264") + \ + "https://www.edureka.co/my-certificate/0d74fa2c1a12a33be340ad3c0c6ec264", "AYMLVT4A") + \ certificate("Symbian C++", "Cranes Varsity, Cranes Software International Limited", "Mar'07-May'07") + \ @@ -252,28 +254,11 @@ def projects(): ''' -def personal(): +def personalDelaration(): return \ ''' -
    PERSONAL DETAILS
    - - - - - - - - - - - - - - - - - -
    Date of Birth02 June 1983
    Marital StatusMarried
    Languages KnownEnglish, Hindi and Oriya, German(A2)
    Passport NumberG6513632
    +
    DECLARATION
    +

    I do hereby declare that the above information is true to the best of my knowledge.

    ''' def htmlend(): @@ -326,6 +311,7 @@ def skeleton(): + projects() \ + certificates() \ + educations() \ + + personalDelaration() \ + footer(contact_email, contact_name, datetime.datetime.today().strftime('%d %b %y %H:%M')) \ + htmlend() @@ -335,17 +321,4 @@ def skeleton(): f.write(message) -manager_name = '' -company_name = "" -def cover_page(): - return \ - htmlstart(contact_name) + \ - mycover(manager_name, company_name) + \ - htmlend() - - -with open(cover,'w+') as f: - message = cover_page() - f.write(message) - -pdfkit.from_file(html_file, pdf_file, cover=cover, cover_first=True) +pdfkit.from_file(html_file, pdf_file)