Skip to content

Commit eeed56d

Browse files
committed
style(recommendations): sort by date
1 parent 92b434a commit eeed56d

File tree

1 file changed

+40
-40
lines changed

1 file changed

+40
-40
lines changed

src/data/recommendations.tsx

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -17,41 +17,23 @@ export type RecommendationItem = Recommendation & {
1717

1818
const TWEETS: RecommendationItem[] = [
1919
{
20-
url: "https://chinholin.com",
21-
name: "Chin-Ho Lin",
22-
date: "Apr 09, 2025",
23-
content: (
24-
<>
25-
Nicholas is a fast learner who quickly identifies issues, conducts
26-
thorough research, and efficiently finds solutions to ensure project
27-
progress. He has been contributing to projects such as building LLM
28-
microservices for concurrent calls and developing a centralized model
29-
weight cache.
30-
</>
31-
),
32-
showOnHomepage: true,
33-
githubUsername: "tainvecs",
34-
},
35-
{
36-
url: "https://www.linkedin.com/in/leonseet/",
37-
name: "Leon Seet",
38-
date: "Apr 13, 2025",
20+
url: "https://www.linkedin.com/in/alvinphang/",
21+
name: "Alvin Phang",
22+
date: "Apr 22, 2025",
3923
content: (
4024
<>
41-
I highly recommend Nicholas based on our time working together. He
42-
possesses a keen ability to identify operational inefficiencies and
43-
implement solutions that result in tangible time and cost savings which
44-
benefitted our development works. A standout contribution was his
45-
development of a deployable LLM microservice tailored for our restricted
46-
on-prem environment, which has helped accelerated development cycles
47-
needing on-prem LLM capabilties. Furthermore, Nicholas is a
48-
collaborative colleague with great expertise in advanced Bash
49-
configurations which I have learnt a lot from. He would be a valuable
25+
I had the pleasure of working with Nicholas, and I’m genuinely impressed
26+
by their growth and contributions. A fast learner with a great attitude,
27+
Nicholas quickly ramped up on complex topics like LLM microservices and
28+
took initiative to implement practical solutions that improved team
29+
efficiency and led to meaningful cost savings. On top of that, Nicholas
30+
is friendly, collaborative, and always a joy to work with — a great
5031
asset to any team.
5132
</>
5233
),
5334
showOnHomepage: true,
54-
githubUsername: "leonseet",
35+
githubUsername: "",
36+
staticProfileImage: "alvinphang",
5537
},
5638
{
5739
url: "https://www.linkedin.com/in/hui-ning-joo-9a5141168/",
@@ -75,23 +57,41 @@ const TWEETS: RecommendationItem[] = [
7557
githubUsername: "",
7658
},
7759
{
78-
url: "https://www.linkedin.com/in/alvinphang/",
79-
name: "Alvin Phang",
80-
date: "Apr 22, 2025",
60+
url: "https://www.linkedin.com/in/leonseet/",
61+
name: "Leon Seet",
62+
date: "Apr 13, 2025",
8163
content: (
8264
<>
83-
I had the pleasure of working with Nicholas, and I’m genuinely impressed
84-
by their growth and contributions. A fast learner with a great attitude,
85-
Nicholas quickly ramped up on complex topics like LLM microservices and
86-
took initiative to implement practical solutions that improved team
87-
efficiency and led to meaningful cost savings. On top of that, Nicholas
88-
is friendly, collaborative, and always a joy to work with — a great
65+
I highly recommend Nicholas based on our time working together. He
66+
possesses a keen ability to identify operational inefficiencies and
67+
implement solutions that result in tangible time and cost savings which
68+
benefitted our development works. A standout contribution was his
69+
development of a deployable LLM microservice tailored for our restricted
70+
on-prem environment, which has helped accelerated development cycles
71+
needing on-prem LLM capabilties. Furthermore, Nicholas is a
72+
collaborative colleague with great expertise in advanced Bash
73+
configurations which I have learnt a lot from. He would be a valuable
8974
asset to any team.
9075
</>
9176
),
9277
showOnHomepage: true,
93-
githubUsername: "",
94-
staticProfileImage: "alvinphang",
78+
githubUsername: "leonseet",
79+
},
80+
{
81+
url: "https://chinholin.com",
82+
name: "Chin-Ho Lin",
83+
date: "Apr 09, 2025",
84+
content: (
85+
<>
86+
Nicholas is a fast learner who quickly identifies issues, conducts
87+
thorough research, and efficiently finds solutions to ensure project
88+
progress. He has been contributing to projects such as building LLM
89+
microservices for concurrent calls and developing a centralized model
90+
weight cache.
91+
</>
92+
),
93+
showOnHomepage: true,
94+
githubUsername: "tainvecs",
9595
},
9696
];
9797

0 commit comments

Comments
 (0)