forked from academicpages/academicpages.github.io
-
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.
Pulling academics pages & adding awards, courses, update cv and navit…
…ion (#6) * Add Chinese (both simplified and traditional) to ui-text.yml Simplified Chinese: zh zh-CN Traditional Chinese: zh-HK zh-TW * Adds commands for MacOS * Update README.md * academicpages#2316 update padding * academicpages#2318 updating documentation a bit * Alphabetize the excludes * Closes academicpages#48 with a more general and customizable approach * fix: lastfm url * Update README.md * Fixing YouTube URL generation in author-profile.html YouTube does not use /user/username at the moment. If a person has a YouTube handle, the URL is: www.youtube.com/@HANDLE The fix is very minimal but I needed it for my website so I've also added it here. * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * academicpages#1975 cleaning up the gem files a bit * academicpages#1975 update fitvids to NPM * academicpages#1975 update magnific-popup to NPM * academicpages#1975 update smooth scroll to NPM * Closes academicpages#1975 RM stickyfill in favor of native browser support * Closes academicpages#2287, academicpages#534 with updates to documentation, better emoji generation * Add a dockerfile * Update README.md * bug: comments appear at bottom of page * Closes academicpages#146 with information the details HTML tag * Minor formatting * Closes academicpages#828 with update to put the pages last update in the footer. * academicpages#828 different format string * academicpages#828 adjustments to account for GitHub Pages limitations * Fix toc crop (academicpages#221) Fix by @qhuang-math. I have also removed underlining of toc links, which was being overridden by post body css. * Reduce excessive footer padding * Fix misalignment of navigation bar with post body There was a regression in the template updates where the navigation bar no longer aligns with the post left margin at normal viewport. * Add notebook to fetch publication information from orcid * Update author-profile.html improve alignment of "employer" sidebar * Closes academicpages#2469 with update to only use username * academicpages#1093 MV notebook to generator directory * eak: first version of accademic project (#3) * Update CV md * updating CV * first version of cv * Adding obj detr and specialized llm model projects (#4) * Adding some projects * Adding object detection model * Adding llm telecom project * Adding courses, update projects * Adding awards, courses, update cv and navition --------- Co-authored-by: Yuhang YAN (Henry) <[email protected]> Co-authored-by: rjzupkoii <[email protected]> Co-authored-by: Zarela <[email protected]> Co-authored-by: Yanchen Huang <[email protected]> Co-authored-by: edbrito-swdev <[email protected]> Co-authored-by: Alberto Barradas <[email protected]> Co-authored-by: Samir Rashid <[email protected]> Co-authored-by: Carlos Martinez <[email protected]> Co-authored-by: Xiaofei (Carl) Zang <[email protected]>
- Loading branch information
1 parent
d9e263b
commit 4a1c058
Showing
40 changed files
with
755 additions
and
2,361 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
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,24 @@ | ||
# Base image: Ruby with necessary dependencies for Jekyll | ||
FROM ruby:3.2 | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y \ | ||
build-essential \ | ||
nodejs \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /usr/src/app | ||
|
||
# Copy Gemfile and Gemfile.lock into the container (necessary for `bundle install`) | ||
COPY Gemfile Gemfile.lock ./ | ||
|
||
# Install bundler and dependencies | ||
RUN gem install bundler:2.3.26 && bundle install | ||
|
||
# Expose port 4000 for Jekyll server | ||
EXPOSE 4000 | ||
|
||
# Command to serve the Jekyll site | ||
CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0", "--watch"] | ||
|
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 |
---|---|---|
@@ -1,28 +1,11 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Hello! This is where you manage which Jekyll version is used to run. | ||
# When you want to use a different version, change it below, save the | ||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: | ||
# | ||
# bundle exec jekyll serve | ||
# | ||
# This will help ensure the proper Jekyll version is running. | ||
# Happy Jekylling! | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
|
||
# If you want to use Jekyll native, uncomment the line below. | ||
# To upgrade, run `bundle update`. | ||
|
||
# gem "jekyll" | ||
|
||
gem "wdm", "~> 0.1.0" if Gem.win_platform? | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
# gem "jekyll-archives" | ||
gem "jekyll-feed" | ||
gem 'jekyll' | ||
gem 'jekyll-feed' | ||
gem 'jekyll-sitemap' | ||
gem 'hawkins' | ||
gem "webrick", "~> 1.8" | ||
gem 'jemoji' | ||
gem 'webrick', '~> 1.8' | ||
end | ||
|
||
gem 'github-pages' |
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ Name Name: | |
name : "Alex Kameni" | ||
uri : "http://name.com" | ||
email : "[email protected]" | ||
bio : "Data scientist" | ||
bio : "Machine Learning Engineer" | ||
avatar : "alex.jpg" | ||
twitter : "kamenialexnea19" | ||
google_plus : "-" |
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
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
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
Oops, something went wrong.