-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To help showcase Hamilton.
- Loading branch information
Showing
4 changed files
with
157 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
.testimonial-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 1rem; | ||
justify-content: center; | ||
margin: 2rem 0; | ||
} | ||
|
||
.testimonial-card { | ||
background: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
max-width: 300px; | ||
width: 100%; | ||
padding: 1rem; | ||
text-align: center; | ||
transition: transform 0.2s ease-in-out; | ||
} | ||
|
||
.testimonial-card:hover { | ||
transform: scale(1.05); | ||
} | ||
|
||
.testimonial-photo img { | ||
border-radius: 50%; | ||
height: 80px; | ||
width: 80px; | ||
object-fit: cover; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.testimonial-content p { | ||
font-style: italic; | ||
color: #555; | ||
} | ||
|
||
.testimonial-content h4 { | ||
margin: 0.5rem 0 0; | ||
font-size: 1.1rem; | ||
font-weight: bold; | ||
color: #555; | ||
} | ||
|
||
.testimonial-content span { | ||
color: #999; | ||
font-size: 0.9rem; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
card_template = """ | ||
<div class="testimonial-card"> | ||
<div class="testimonial-content"> | ||
<p>"{user_quote}"</p> | ||
<h4>{user_name}</h4> | ||
<span>{user_title}, {user_company}</span> | ||
</div> | ||
</div>""" | ||
|
||
testimonials = [ | ||
{ | ||
"user_name": "Yuan Liu", | ||
"user_title": "DS", | ||
"user_company": "Kora Financial", | ||
"user_quote": "Hamilton provides a modular and compatible framework that has significantly empowered our data science team. " | ||
"We've been able to build robust and flexible data pipelines with ease. The documentation is thorough and regularly updated... " | ||
"Even with no prior experience with the package, our team successfully migrated one of our legacy data pipelines to the Hamilton structure within a month. " | ||
"This transition has greatly enhanced our productivity, enabling us to focus more on feature engineering and model iteration while Hamilton's DAG approach " | ||
"seamlessly manages data lineage.<br/>I highly recommend Hamilton to data professionals looking for a reliable, standardized solution for creating and " | ||
"managing data pipelines.", | ||
"image_link": "", | ||
}, | ||
{ | ||
"user_name": "Kyle Pounder", | ||
"user_title": "CTO", | ||
"user_company": "Wealth.com", | ||
"user_quote": "How (with good software practices) do you orchestrate a system of asynchronous LLM calls, but where some of them depend on others? " | ||
"How do you build such a system so that it’s modular and testable? At wealth.com we've selected Hamilton to help us solve these problems " | ||
"and others. And today our product, Ester AI, an AI legal assistant that extracts information from estate planning documents, is running " | ||
"in production with Hamilton under the hood.", | ||
"image_link": "", | ||
}, | ||
{ | ||
"user_name": "Michał Siedlaczek", | ||
"user_title": "Senior DS/SWE", | ||
"user_company": "IBM", | ||
"user_quote": "Hamilton is simplicity. Its declarative approach to defining pipelines (as well as the UI to visualize them) makes testing and modifying " | ||
"the code easy, and onboarding is quick and painless. Since using Hamilton, we have improved our efficiency of both developing new " | ||
"functionality and onboarding new developers to work on the code. We deliver solutions more quickly than before.", | ||
"image_link": "", | ||
}, | ||
{ | ||
"user_name": "Fran Boon", | ||
"user_title": "Director", | ||
"user_company": "Oxehealth.com", | ||
"user_quote": "...The companion Hamilton UI has taken the value proposition up enormously with the ability to clearly show lineage & track execution times," | ||
" covering a major part of our observability needs", | ||
"image_link": "", | ||
}, | ||
{ | ||
"user_name": "Louwrens", | ||
"user_title": "Software Engineer", | ||
"user_company": "luoautomation.com", | ||
"user_quote": "Many thanks to writing such a great library. We are very excited about it and very pleased with so many decisions you've made. 🙏", | ||
"image_link": "", | ||
}, | ||
] | ||
|
||
# code to generate testimonials | ||
for testimonial in testimonials: | ||
print(card_template.format(**testimonial)) |