Skip to content

Commit 78f2303

Browse files
authored
Update varioius pages and add redirect plugin (#32)
1 parent ecca2d8 commit 78f2303

File tree

8 files changed

+43
-7
lines changed

8 files changed

+43
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
mkdocs-htmlproofer-plugin \
3232
mkdocs-localsearch \
3333
mkdocs-material-extensions \
34-
mkdocs-material[imaging]
35-
mkdocs-git-revision-date-localized-plugin
34+
mkdocs-material[imaging] \
35+
mkdocs-git-revision-date-localized-plugin \
36+
mkdocs-redirects
3637
- run: mkdocs gh-deploy --force

docs/ai-ml-resources.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,10 @@ This section contains the various engineering blogs links specifically around AI
3838
- [Pinterest engineering blog](https://medium.com/pinterest-engineering/tagged/machine-learning)
3939
- [Robinhood engineering blog](https://medium.com/robinhood-engineering/eng/home)
4040
- [Uber engineering blogs](https://www.uber.com/blog/engineering/data/)
41+
42+
## Podcasts
43+
44+
In case you are an avid podcast listener, this could be your list.
45+
46+
- [MLOps Community](https://mlops.community/)
47+
- [Datacamp](https://www.datacamp.com/)

docs/blogs.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Blogs
2+
3+
This is just a place holder page. We are redirecting it to https://englife101.medium.com/

docs/judging-review.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,17 @@ I welcome opportunities to contribute as a judge or reviewer. Please contact me
88

99
## Past Engagements
1010

11+
- Conference Paper Review
12+
13+
- International Conference on Machine Learning (ICML) 2025 Workshop WCUA Reviewers
14+
- International Conference on Machine Learning (ICML) 2025 Workshop MUGen Reviewers
15+
1116
- Book Review
17+
1218
- [System Design on AWS](https://a.co/d/gwYwJM7)
19+
1320
- Hackthon Judging
21+
- [Beam College Hackathon](https://beamcollege.dev/hackathon/), May, 2025
22+
- [r/AI_Agents 100k Hackathon!](https://lu.ma/ai-agents-hackathon), May 21, 2025
1423
- Lyft Hackathon 2025
1524
- NextNice 2025

docs/talks.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Public Speaking
22

33
I love to speak at conferences to share my knowledge with like minded people. I have listed down some of the past talks and upcoming talks for reference.
4+
I also write engineering blogs which you can find [here](https://eng.lyft.com/search?q=rakesh).
45

56
## Invite me to speak
67

@@ -18,7 +19,11 @@ You can find my contact details [here](contact.md). I look forward to hearing fr
1819

1920
## Upcoming Talks
2021

21-
:construction:
22+
### Beam Summit New York, USA, 2025
23+
24+
**Title:** Scaling Real-Time Feature Generation Platform @ Lyft
25+
26+
- [website](https://beamsummit.org/sessions/2025/scaling-real-time-feature-generation-platform-lyft/)
2227

2328
## Past Talks
2429

docs/yearly-goals.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,27 @@
22

33
I'm documenting my yearly goals here to stay accountable. My initial focus is on these core objectives, with the possibility of adding more later. The priority is to keep the scope realistic and achievable within my busy schedule.
44

5+
## 2026
6+
7+
- [ ] Publish a Book
8+
59
## 2025
610

711
- [ ] Publish engineering blogs
8-
- [ ] At least one engineering blog at Lyft.
12+
- [x] At least one engineering blog at Lyft.
13+
- [x] [Real-Time Spatial Temporal Forecasting at Lyft](https://eng.lyft.com/real-time-spatial-temporal-forecasting-lyft-fa90b3f3ec24)
914
- [ ] At least one engineering blog through well known publisher available on Medium platform. Help me find good publishers that cover real-time systems and MLOps.
10-
- [ ] Apply for a Patent
15+
- [ ] Apply for a Patent :construction:
1116
- [ ] Read these books
1217
- [ ] [AI Engineering Book by Chip Huyen](https://a.co/d/1yFRjhV)
1318
- [x] [Generative AI on AWS by Chris Fregly, Antje Barth & Shelbee Eigenbrode](https://a.co/d/3bz4c1w)
1419
- [ ] [Hands-On Large Language Models by Jay Alammar & Maarten Grootendorst](https://a.co/d/eTCQLsw)
15-
- [ ] Read these papers
20+
- [x] Read these papers (Feel free to suggest more papers)
1621
- [x] [Model Cards for Model Reporting](https://arxiv.org/pdf/1810.03993)
1722
- [x] [Machine Learning: The High-Interest Credit Card of Technical Debt](https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/43146.pdf)
1823
- [x] Connect with at least one person who is working in AI/ML domain. Mainly to learn from his/her experience.
19-
- [ ] Present at an international conference with a primary focus on MLOps.
24+
- [ ] Present at an international conference with a primary focus on MLOps. :construction:
25+
- [ ] Become Apache Committer. :construction:
2026

2127
## 2024
2228

mkdocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ nav:
1717
- Home: index.md
1818
- Experiences: experiences.md
1919
- Talks: talks.md
20+
- Blogs: blogs.md
2021
- AI/ML Resources: ai-ml-resources.md
2122
- Judging / Review: judging-review.md
2223
- Yearly Goals: yearly-goals.md
@@ -89,3 +90,6 @@ plugins:
8990
- privacy
9091
- git-revision-date-localized:
9192
fallback_to_build_date: true
93+
- redirects:
94+
redirect_maps:
95+
"blogs.md": "https://englife101.medium.com/"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ mkdocs-htmlproofer-plugin
3131
mkdocs-localsearch
3232
mkdocs-material
3333
mkdocs-material-extensions
34+
mkdocs-redirects
3435
natsort
3536
nodeenv
3637
packaging

0 commit comments

Comments
 (0)