-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce42caf
commit ee8574d
Showing
2 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]}} ~ | ||
|
@@ -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 | ||
|
||
|
||
|
@@ -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 | ||
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |