GithubHelp home page GithubHelp logo

sb2nov / resume Goto Github PK

View Code? Open in Web Editor NEW
4.7K 49.0 1.3K 2.57 MB

Software developer resume in Latex

Home Page: http://sourabhbajaj.com

License: MIT License

TeX 97.30% Dockerfile 2.70%
latex resume resume-template

resume's People

Contributors

greenmoon55 avatar ikshitiz avatar mbrotos avatar notepad104 avatar nunosempere avatar sb2nov avatar thesohelshaikh avatar ygnr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

resume's Issues

Align bullet points with bold text in

Instead of appearing in line with first line of resumeSubheading, the bullet point appear in middle of multiple lines in resumeSubheading. Can this be fixed?
untitled

Including a GitHub profile link.

I really liked the resume format. I noticed, however, that you don't mention your GitHub anywhere (and you do have a impressive GitHub). Is that on purpose or something else?

Font Change

I'd like to experiment a bit with the fonts of this template. How do I edit the fonts?

Edit: Looking to switch to Times New Roman

non-issue: thanks!

I suppose it would have been easier to email you, but I wanted to say how cool it is to use docker for compiling! super neat

How do I remove the bullet points from the subheadings?

Hello!

Love this template. I want to give the template a more minimal look by removing the bullet points from the sub headings (\resumeSubheading), but retaining them for the list items (\resumeItem).

How can I do this?

Many thanks.

Typo

Thanks for putting this template online. I just wanted to let you know that you misspelled Coursera once: Core service for all recommendation systems at Coursesa

How to fill paragraph for the correct alignment?

Hi Sourabh,

Great to use this template for CV. One query. When the description runs in two or more lines, there is an issue of the unfilled paragraph. The lines do not all end at the same point.

I tried using \setspace and parskip but they don't solve the problem and stretch the CV to two pages as well. Would you have any solution for this?

Thanking you,
Best,
Anusha

% %%% * Correct indentation and line spacing
% % indentation and underfull, overfull boxes
%\usepackage[stretch=10]{microtype}
%\setlength{\parskip}{1.2ex}
 \usepackage[parfill]{parskip}
 \setlength{\parindent}{0em}
% \clubpenalty = 4000
% \widowpenalty = 4000

Add an Awards Section

Thankyou for your work. Just wanted to ask how do I add an awards section with a bold Award name, and award description on light and a Month-Year aligned right to it.

Something like

    • Engineer of the Year: Won engineer of year for my awesome work. Jan 2022

How to add new roles

I want to add a new role to my existing work place (i.e Engineer from 2016-2023, Program Manager from 2023-Present) how would I do that?

Software requirements

Hi good evening bro. I want to build a software for pc using
My Excel worksheet. Could you please help me

Multiple roles within 1 company?

how should I edit the resumeSubheading block if I have more than 1 role within the same company? for example

Company A
Role A (March 2022 - present)
1. did this
2. did that
Role B (July 2021 - March 2022)
1. did this
2. did that

Thanks!

Is this resume template ATS-friendly?

Hi,

Thanks for your template!

I'm using it for my resume, and I realized that some Latex resumes may be ATS (Applicant Tracking Software) unfriendly, I would like to ask if anyone used this template and passed the ATS screening process.

Suggestion: Add a GitHub Action to compile `resume.tex`

You can add a GitHub Action to compile sourabh_bajaj_resume.tex and upload the generated pdf everytime a change is made.

For instance, take the following file which would be available at .github/workflows/build-latex.yaml

# Based on: https://github.com/marketplace/actions/github-action-for-latex#example

name: Build LaTeX document

on:
  workflow_dispatch:
  push:
    branches:
      - main
  pull_request:

jobs:
  build-latex:
    runs-on: ubuntu-latest
    steps:
      - name: Set up Git repository
        uses: actions/checkout@v3

      - name: Compile LaTeX document
        uses: xu-cheng/latex-action@v2
        with:
          root_file: sourabh_bajaj_resume.tex

      - name: Upload PDF file
        uses: actions/upload-artifact@v3
        with:
          name: sourabh_bajaj_resume_${{ github.sha }}
          path: sourabh_bajaj_resume.pdf

I understand the suggestion might not be suitable for this particular repository, but it's been very useful for my private fork in which I made my resume using your LaTeX template. This way I can version control both resume.tex and resume.pdf while accounting for the fact that one is a function of the other.

Add project link features

Can you please add a project link in the Project Section
E.x

Name of project | Python, Java, C++, etc

  • Description 1
  • Description 2
  • etc
  • Project link - Resume

Link highlight

I can't seem to figure why the header links are being highlighted. Cheers and tremendous work!
link_highlight

Different font size in same list

This is the code:

%-----------EDUCATION-----------------
\section{Education}
    \resumeSubHeadingListStart
    \resumeSubheading
      {Sapienza University}{Rome, Italy}
      {Master's Degree in Cybersecurity; 109/110}{Oct. 2020 -- May 2023}\\
      \vspace{0.3cm}\small{Dissertation: "Proposal and Investigation of a framework for Cross App Poisoning\\attacks detection in Software Defined Networks."}
    \resumeSubheading
      {Sapienza University}{Rome, Italy}
      {Bachelor's Degree in Computer Science; 103/110}{Sept. 2016 -- Oct. 2020}\\
      \vspace{0.3cm}\small{Dissertation: "Design and development of the End User Development system in SeismoCloud".}
    \resumeSubheading
      {Fabio Besta Scientific High School}{Orte, Italy}
      {Scientific High School Diploma; 71/100}{Sept. 2011 -- July 2016}
  \resumeSubHeadingListEnd

and this is the result:
Screenshot from 2023-06-02 18-29-37

Why the first item is bigger than others? How to change this?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.