Skip to content

Commit

Permalink
fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonshambo committed May 16, 2024
1 parent ce42caf commit ee8574d
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@

\begin{center}
{\Huge \scshape Shambo Chowdhury} \\ \vspace{1pt}
Kharagpur,West Bengal \\ \vspace{1pt}
Burdwan,West Bengal \\ \vspace{1pt}
\small \href{tel:#}{ \raisebox{-0.1\height}\faPhone\ \underline{+91-9679033262} ~}
\href{mailto:[email protected]}{\raisebox{-0.2\height}\faEnvelope\ \underline{[email protected]}} ~
\href{mailto:[email protected]}{\raisebox{-0.2\height}\faEnvelope\ \underline{[email protected]}} ~
Expand All @@ -167,7 +167,7 @@ \section{EDUCATION}
\resumeSubHeadingListStart
\resumeSubheading
{Indian Institute of Technology (IIT), Kharagpur}{2023 – 2027}
{B.Tech - Chemical Enggineering}{Kharagpur, West Bengal}
{B.Tech - Chemical Engineering}{Kharagpur, West Bengal}
\resumeSubHeadingListEnd


Expand All @@ -180,7 +180,7 @@ \section{TECHNICAL SKILLS}
\hline
\textbf{Languages} & Python, C, SQL, Bash, Latex \\
\hline
\textbf{Data Science} & Pandas, NumPy, SciKit-Learn, Matplotlib,Seaborn, Requests, Urllib3, BeautifulSoup4 \\
\textbf{Data Science} & Pandas, NumPy, SciKit-Learn, Matplotlib, Seaborn, Requests, Urllib3, BeautifulSoup4 \\
\hline
\textbf{MLOps} & ZenML, PyArrow, MLflow, Streamlit \\
\hline
Expand Down Expand Up @@ -275,7 +275,7 @@ \section{ENGAGEMENTS}
\resumeProjectHeading
{\href{https://go.qwiklabs.com/arcade}{\textbf{\large{\underline{\textbf{Google Cloud Skill Boost Challenge}}}} \href{Link}{\raisebox{-0.1\height}\faExternalLink }}\large{\underline{}}}{2023}\\
\resumeItemListStart
\resumeItem{\normalsize{Participated in The Arcade and successfully completed different challenges based on \textbf{GenAI}, \textbf{open-LLM},\textbf{Pub/Sub} etc}} \\
\resumeItem{\normalsize{Participated in The Arcade and successfully completed different challenges based on \textbf{GenAI}, \textbf{LLM},\textbf{Pub/Sub} etc}} \\
\resumeItem{\normalsize{Earned \textbf{10 points} in less than month starting from scratch.}} \\
\resumeItemListEnd

Expand Down
44 changes: 44 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# LaTeX Resume Builder with Docker

This project allows me to build my resume in PDF and PNG formats using LaTeX inside a Docker container. This ensures a consistent environment for building my resume, regardless of the host operating system.

## Prerequisites

- [Docker](https://www.docker.com/products/docker-desktop) installed on your system.

## Project Structure

- `Dockerfile`: Contains the instructions to create the Docker image.
- `resume.tex`: my LaTeX resume source file.

## Getting Started

Follow these steps to build and run the Docker image to generate resume.

### 1. Clone the Repository

If you haven't already, clone this repository to your local machine:

```sh
git clone https://github.com/yourusername/latex-resume-docker.git
cd latex-resume-docker
```

### 2. Build the Docker Image
Build the Docker image with the following command:
```sh
docker build -t latex-resume .
```
This process can take some time, especially the first time, as it needs to download and install all the required packages.

### 3. Compile the LaTeX Document to PDF
Run the following command to compile your `resume.tex` file to a PDF:
```sh
docker run --rm -v $(pwd):/data latex-resume pdflatex resume.tex
```

### 4. Convert PDF to PNG
```sh
docker run --rm -v $(pwd):/data latex-resume convert -density 300 resume.pdf -quality 90 resume.png
```
This command uses ImageMagick's convert tool to generate a high-quality PNG from the PDF.

0 comments on commit ee8574d

Please sign in to comment.