Skip to content

Commit

Permalink
added an easteregg for project 8. updated CV.
Browse files Browse the repository at this point in the history
  • Loading branch information
majid-0 committed Oct 29, 2024
1 parent a036457 commit e9e04e4
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 10 deletions.
18 changes: 11 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ENV DEBIAN_FRONTEND noninteractive

LABEL MAINTAINER Amir Pourmand

# Install necessary packages
RUN apt-get update -y && apt-get install -y --no-install-recommends \
locales \
imagemagick \
Expand All @@ -16,6 +17,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
npm && \
apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

# Generate locales
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen

Expand All @@ -24,19 +26,21 @@ ENV LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8 \
JEKYLL_ENV=production

# Create the working directory
RUN mkdir /srv/jekyll

ADD Gemfile.lock /srv/jekyll
ADD Gemfile /srv/jekyll

WORKDIR /srv/jekyll

# Install Jekyll and dependencies
RUN gem install jekyll bundler
RUN bundle install --no-cache
# Copy Gemfile and Gemfile.lock
COPY Gemfile* /srv/jekyll/

# Install bundler and dependencies
RUN gem install bundler && \
bundle install --no-cache

EXPOSE 8080

# Copy the entry point script
COPY bin/entry_point.sh /tmp/entry_point.sh

# Set the entry point
CMD ["/tmp/entry_point.sh"]
8 changes: 8 additions & 0 deletions _news/announcement_2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: post
date: 2024-10-24 15:59:00-0400
inline: true
related_posts: false
---

Presented a paper at the ISTT2024 IEEE conference in Langkawi, Malaysia.
4 changes: 2 additions & 2 deletions _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ subtitle: MSc student.

profile:
align: right
image: prof_pic.jpg
image_circular: false # crops the image to make it circular
image: profile_picture.jpg
image_circular: True # crops the image to make it circular
more_info: >
news: true # includes a list of news items
Expand Down
2 changes: 1 addition & 1 deletion _projects/8_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ category: Msc. Projects

<html lang="en">
<head>
<meta http-equiv="refresh" content="0; url=/assets/pdf/project 7.pdf" />
<meta http-equiv="refresh" content="0; url=/assets/img/project_8_egg.jpg" />
</head>
<body>
<p>N/A</p>
Expand Down
File renamed without changes
Binary file added assets/img/project_8_egg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/pdf/MajidAhmedCV.pdf
Binary file not shown.

0 comments on commit e9e04e4

Please sign in to comment.