You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace hardcoded testimonial cards in the HTML partial with a Hugo data file (`data/testimonials.yaml`). The template now loops over the YAML entries, rendering a photo when `image` is set or an initials avatar otherwise. Adds new testimonials (Kevin Kline, Frank Gill, Hamish Watson, Mohammad Darab, Carlos Chacon, Ned Otter) and removes a few that were in the old hardcoded list.
# Testimonials rendered by layouts/partials/testimonials.html
2
+
# Each entry: name, title, quote (required); image (optional).
3
+
# image = filename in static/images/testimonials/. Leave blank to render an
4
+
# initials avatar instead of a photo.
5
+
6
+
- name: "Jeffrey Snover"
7
+
title: "PowerShell Inventor, Technical Fellow"
8
+
image: "jeffrey-snover.jpg"
9
+
quote: "If you use SQL, someone on the team should be a dbatools pro."
10
+
11
+
- name: "Steve Jones"
12
+
title: "MVP & SQLServerCentral.com"
13
+
image: "steve-jones.png"
14
+
quote: "If you haven't played with dbatools, I'd recommend you do so; it makes working with SQL and PowerShell much easier."
15
+
16
+
- name: "Argenis Fernandez"
17
+
title: "Microsoft, MCM, vExpert"
18
+
image: "argenis-fernandez.png"
19
+
quote: "I can't stress enough how good dbatools is. Stop doing it the hard way."
20
+
21
+
- name: "Anthony Nocentino"
22
+
title: "MVP, Author, Speaker"
23
+
image: "anthony-nocentino.jpg"
24
+
quote: "It's impossible to quantify the impact this project has had on our community and the tech that we work with. Everyone I introduce to dbatools is blown away by how much this enables productivity and allows DBAs to scale with their systems."
25
+
26
+
- name: "Joey D'Antoni"
27
+
title: "MVP, vExpert, DCAC"
28
+
image: "joey-dantoni.png"
29
+
quote: "dbatools is an amazing project. Tasks like server migrations that used to take me hours can now be completed in seconds, and with total confidence."
30
+
31
+
- name: "Kevin Kline"
32
+
title: "Author & SQL Server Expert"
33
+
image: "kevin-kline.jpg"
34
+
quote: "SQL Server and Azure SQL people, if you haven't downloaded this PowerShell pack, you need to now!"
35
+
36
+
- name: "Gianluca Sartori"
37
+
title: "Data Platform MVP, Formula 1 DBA"
38
+
image: "gianluca-sartori.jpg"
39
+
quote: "dbatools is the best thing that happened to SQL Server in the last 5 years."
40
+
41
+
- name: "Frank Gill"
42
+
title: "SQL Server DBA & Blogger"
43
+
image: "frank-gill.jpg"
44
+
quote: "If you are trying to do ANYTHING in PowerShell related to SQL Server, check dbatools first."
45
+
46
+
- name: "Hamish Watson"
47
+
title: "Data Platform MVP"
48
+
image: "hamish-watson.jpg"
49
+
quote: "dbatools is career changing — even for DBAs with 19+ year careers."
50
+
51
+
- name: "Mike Martin"
52
+
title: "Technical Evangelist, Microsoft"
53
+
image: "mike-martin.png"
54
+
quote: "If there was a thing such as MVP for MVP'S then dbatools would probably win it."
55
+
56
+
- name: "André Kamman"
57
+
title: "MVP & Dutch PASS Chapter Leader"
58
+
image: "andre-kamman.png"
59
+
quote: "dbatools are the most important PowerShell scripts for SQL Server DBAs."
60
+
61
+
- name: "Mohammad Darab"
62
+
title: "Data & AI Consultant, Microsoft"
63
+
image: "mohammad-darab.jpg"
64
+
quote: "Holy smokes. First time using the Add-DbaAgDatabase command. Like... OH. MY. GOD. LOVE IT!"
65
+
66
+
- name: "Michael J Swart"
67
+
title: "Data Platform MVP"
68
+
image: "michael-swart.png"
69
+
quote: "This dev just used dbatools to install and migrate 50 db machines at once with little effort or errors. It's truly the easy button."
70
+
71
+
- name: "Ned Otter"
72
+
title: "Author & In-Memory OLTP Expert"
73
+
image: ""
74
+
quote: "Have an impending server migration, and I must say that dbatools is the best thing since sliced bread."
75
+
76
+
- name: "Carlos Chacon"
77
+
title: "Host, SQL Data Partners Podcast"
78
+
image: "carlos-chacon.jpg"
79
+
quote: "I am not sure how I survived before I had the tools at dbatools.io. Thanks, dbatools!"
It's impossible to quantify the impact this project has had on our community and the tech that we work with. Everyone I introduce to dbatools is blown away by how much this enables productivity and allows DBAs to scale with their systems.
I had been seriously thinking of quitting the SQL space altogether and decided to get into other things, but this has got to be a great addition to becoming a better DBA.
0 commit comments