diff --git a/public/images/daily/marcos-duran.jpg b/public/images/recommendations/marcos-duran.jpg similarity index 99% rename from public/images/daily/marcos-duran.jpg rename to public/images/recommendations/marcos-duran.jpg index 21b236ac..371e0f5f 100644 Binary files a/public/images/daily/marcos-duran.jpg and b/public/images/recommendations/marcos-duran.jpg differ diff --git a/public/images/recommendations/mike-karthauser.jpg b/public/images/recommendations/mike-karthauser.jpg new file mode 100644 index 00000000..e3dd7d1e Binary files /dev/null and b/public/images/recommendations/mike-karthauser.jpg differ diff --git a/public/images/daily/patty-ocallaghan.jpg b/public/images/recommendations/patty-ocallaghan.jpg similarity index 100% rename from public/images/daily/patty-ocallaghan.jpg rename to public/images/recommendations/patty-ocallaghan.jpg diff --git a/public/images/daily/stephen-mulvihill.jpg b/public/images/recommendations/stephen-mulvihill.jpg similarity index 100% rename from public/images/daily/stephen-mulvihill.jpg rename to public/images/recommendations/stephen-mulvihill.jpg diff --git a/src/components/Testimonials.astro b/src/components/Testimonials.astro index ca36204a..eaf524b8 100644 --- a/src/components/Testimonials.astro +++ b/src/components/Testimonials.astro @@ -7,6 +7,7 @@ interface Props { } const defaultNames = [ + 'mike-karthauser', 'tawny-bartlett', 'joe-howell', 'michael-itkoff', diff --git a/src/content/testimonial/marcos-duran.json b/src/content/testimonial/marcos-duran.json new file mode 100644 index 00000000..d4dc9ad8 --- /dev/null +++ b/src/content/testimonial/marcos-duran.json @@ -0,0 +1,8 @@ +{ + "name": "Marcos Duran", + "tagline": "Senior Software Engineer", + "text": "

I am a big fan of your git approaches. I especially remember pairing with you and watching how many commands you run to solve many problems and how fast you were. It's a skill I believe not many have, particularly those who are used to working with a GUI like me, and personally I think it is quite valuable.

", + "image": "marcos-duran.jpg", + "url": null, + "types": ["daily"] +} diff --git a/src/content/testimonial/mike-karthauser.json b/src/content/testimonial/mike-karthauser.json new file mode 100644 index 00000000..0ed8e220 --- /dev/null +++ b/src/content/testimonial/mike-karthauser.json @@ -0,0 +1,7 @@ +{ + "name": "Mike Karthauser", + "tagline": "Senior Software Engineer", + "text": "

Oliver’s approach to testing is a continual reminder of his commitment to delivering high-quality, bug-free, software.

", + "image": "mike-karthauser.jpg", + "url": null +} diff --git a/src/content/testimonial/patty-ocallaghan.json b/src/content/testimonial/patty-ocallaghan.json new file mode 100644 index 00000000..720ed605 --- /dev/null +++ b/src/content/testimonial/patty-ocallaghan.json @@ -0,0 +1,8 @@ +{ + "name": "Patty O'Callaghan", + "tagline": "Tech Lead", + "text": "

Just wanted to say that your blog is amazing <3 I absolutely love it and usually share it with colleagues and some of the kids at my Code Club.

Thanks for contributing to the community with your amazing content! :)

", + "image": "patty-ocallaghan.jpg", + "url": null, + "types": ["daily"] +} diff --git a/src/content/testimonial/stephen-mulvihill.json b/src/content/testimonial/stephen-mulvihill.json new file mode 100644 index 00000000..2c6fc15d --- /dev/null +++ b/src/content/testimonial/stephen-mulvihill.json @@ -0,0 +1,8 @@ +{ + "name": "Stephen Mulvihill", + "tagline": "Solutions Architect", + "text": "

I like the \"$ git log -S\" and \"$ git log --grep\" commands, will definitely be using these, thanks!

", + "image": "stephen-mulvihill.jpg", + "url": null, + "types": ["daily"] +} diff --git a/src/pages/daily.mdx b/src/pages/daily.mdx index e9f75e98..8997db39 100644 --- a/src/pages/daily.mdx +++ b/src/pages/daily.mdx @@ -1,32 +1,17 @@ --- layout: ~/layouts/PageLayout.astro title: Oliver's Daily List +testimonials: + - mike-karthauser + - marcos-duran + - stephen-mulvihill + - patty-ocallaghan --- import AboutMe from "~/components/AboutMe.astro"; import DailyEmailForm from "~/components/DailyEmailForm.astro"; import Markdown from "~/components/Markdown.astro"; -import _ from "lodash"; - -export const testimonials = [ - { - name: "Patty O'Callaghan", - text: "

Just wanted to say that your blog is amazing <3 I absolutely love it and usually share it with colleagues and some of the kids at my Code Club.

Thanks for contributing to the community with your amazing content! :)

", - image: "patty-ocallaghan.jpg", - }, - { - name: "Stephen Mulvihill", - text: '

I like the "$ git log -S" and "$ git log --grep" commands, will definitely be using these, thanks!

', - image: "stephen-mulvihill.jpg", - }, - { - name: "Marcos Duran", - text: "

I am a big fan of your git approaches. I especially remember pairing with you and watching how many commands you run to solve many problems and how fast you were. It's a skill I believe not many have, particularly those who are used to working with a GUI like me, and personally I think it is quite valuable.

", - image: "marcos-duran.jpg", - }, -]; - -export const sortedTestimonials = _.reverse(testimonials); +import Testimonials from "~/components/Testimonials.astro";

A daily newsletter for software professionals on software development, DevOps, community, and open-source. @@ -34,37 +19,13 @@ export const sortedTestimonials = _.reverse(testimonials);

- - - {sortedTestimonials && ( -
-

Testimonials

- -
- {testimonials.map(testimonial => ( -
-
- -
- -
{testimonial.name}
- -
- - -
- ))} -
-
- )} +
+ +
+
+ +
diff --git a/src/pages/drupal-testing.mdx b/src/pages/drupal-testing.mdx index ab76e028..38e91f55 100644 --- a/src/pages/drupal-testing.mdx +++ b/src/pages/drupal-testing.mdx @@ -2,6 +2,7 @@ layout: ~/layouts/PageLayout.astro title: Introduction to Automated Testing and Test-Driven Development with Drupal testimonials: + - mike-karthauser - scott-euser ---