Understanding Credly Badges and the “Explain‑to‑Me” Feature in Practical DevSecOps Courses
Introduction
When you start a Practical DevSecOps course, two visual cues help you track progress and deepen learning: Credly digital badges and the “Explain‑to‑Me” icon ( ? ) that appears next to code snippets. Both tools are designed to celebrate achievements, showcase your expertise, and turn complex commands into bite‑size lessons. This article explains exactly what you’ll see in Credly, how to use the badge‑sharing options, and how the “Explain‑to‑Me” feature works inside the learning environment.
1. What a Credly Badge Looks Like and How to Use It
1.1 Visual preview of a Credly badge
- Badge shape – A compact, circular or shield‑shaped graphic that includes the Practical DevSecOps logo, the specific certification name (e.g., “Certified DevSecOps Professional”), and the date you earned it.
Tip: In most browsers you’ll see a subtle “Verified by Credly” badge corner that confirms authenticity.
1.2 Accessing your badge
-
Receive a notification – After pass a certification exam, you’ll get an email to accept your Credly badge
-
Open the badge – Clicking the button takes you to Credly’s web portal where the badge is displayed in full size.
-
Explore badge actions – Below the badge you’ll find a row of icons:
-
Share – Post directly to LinkedIn, Twitter, Facebook, or embed on a personal website.
-
Download – Save a PNG or SVG version for a résumé or portfolio.
-
Verify – Copy a public verification link that employers can click to confirm the credential.
-
1.3 Sharing best practices
-
LinkedIn – Add a short caption that highlights the specific skill you earned (e.g., “Just earned the Practical DevSecOps Professional badge – now proficient in secure CI/CD pipelines”).
-
Twitter – Use hashtags like
#DevSecOps,#Credly, and#ContinuousLearningto increase visibility. -
Personal website – Embed the badge using the provided HTML snippet; this creates a live verification widget that updates automatically if the badge is renewed.
2. The “Explain‑to‑Me” ( ? ) Icon in Code Snippets
2.1 Purpose of the question‑mark icon
The small question‑mark that appears next to a command or configuration line is not a typo—it’s an interactive learning aid called Explain‑to‑Me. Its goal is to:
-
Provide a concise, plain‑language description of what the command does.
-
Reduce the need to switch tabs or search external documentation.
-
Support learners of all experience levels, from beginners to seasoned security engineers.
2.2 How it works
| Action | Result |
|---|---|
| Click the ? icon | A pop‑up window or inline tooltip appears, showing a short paragraph (≈ 2‑3 sentences) that explains the command’s purpose, typical use cases, and any important flags. |
| Hover (desktop) or tap (mobile) | A preview tooltip shows a one‑sentence summary. |
| Close the pop‑up | The tooltip disappears, returning you to the code view without losing your place. |
Example: In a Dockerfile you see
RUN apt‑get update && apt‑get install -y curl ?. Clicking the ? displays: “Updates the package index and installs thecurlutility, which is used for transferring data with URLs. The-yflag automatically answers ‘yes’ to prompts.”
2.3 When to use Explain‑to‑Me
-
First‑time exposure – If you’ve never seen a command before, the tooltip gives you a quick mental model.
-
Exam preparation – Review the explanations to reinforce key concepts before a certification test.
-
Reference while coding – While building a pipeline, the pop‑ups act as an on‑the‑fly cheat sheet, keeping you focused on the task.
3. Practical Scenarios
Scenario 1: Using Explain‑to‑Me while debugging a pipeline
-
Open the CI/CD YAML file in the Practical DevSecOps lab.
-
Spot the line
- script: npm audit ?. -
Click the ? to read: “Runs
npm auditto identify known vulnerabilities in Node.js dependencies. Returns a report with severity levels.” -
Adjust the script based on the explanation (e.g., add
--audit-level=high).
4. Common Questions
Q1: Do Credly badges expire?
No. Once issued, a badge remains valid indefinitely. If the underlying certification is updated, you may receive a refreshed badge with a new issuance date.
Q2: Are the explanations language‑specific?
The tool currently only support english language.
Q3: Is the badge shareable outside Credly?
Absolutely. You can download the image file or use the embed code to place the badge on any website, blog, or internal portal.
Conclusion
Credly badges give you a portable, verifiable record of your DevSecOps achievements, while the “Explain‑to‑Me” ? icon turns every code snippet into a mini‑tutor. Together, they create a seamless learning loop: you earn a badge, showcase it, and use built‑in explanations to deepen your expertise. Embrace both features to accelerate your career, build a compelling professional profile, and master the secure development practices that modern organizations demand.