-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdemo_showcase.sh
More file actions
executable file
Β·93 lines (79 loc) Β· 2.57 KB
/
demo_showcase.sh
File metadata and controls
executable file
Β·93 lines (79 loc) Β· 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/bash
# Demo script for credly-badge - Free Digital Badges
# Updated April 2026
set -e
echo "=========================================="
echo " π Credly Badge Showcase"
echo " Professional Achievement Gallery"
echo "=========================================="
echo ""
echo "π Badge Collection:"
echo ""
badges=(
"AWS Certified Solutions Architect"
"Certified Kubernetes Administrator (CKA)"
"Google Cloud Professional Architect"
"HashiCorp Terraform Associate"
"GitHub Actions Certified"
)
echo " Verified Professional Certifications:"
echo " ββββββββββββββββββββββββββββββββββββ"
for i in "${!badges[@]}"; do
num=$((i + 1))
echo " $num. ${badges[$i]} β"
done
echo " ββββββββββββββββββββββββββββββββββββ"
echo ""
echo "π― Badge Categories:"
echo ""
echo " βοΈ Cloud Platforms"
echo " β’ AWS Solutions Architect"
echo " β’ Google Cloud Architect"
echo " β’ Azure Administrator"
echo ""
echo " π³ DevOps & Infrastructure"
echo " β’ Kubernetes Administration"
echo " β’ Terraform Infrastructure"
echo " β’ Docker Certified Associate"
echo ""
echo " π Security & Compliance"
echo " β’ Security+ Certification"
echo " β’ CISSP Professional"
echo " β’ Ethical Hacking"
echo ""
echo " π» Development"
echo " β’ GitHub Actions Expert"
echo " β’ Python Professional"
echo " β’ Full Stack Developer"
echo ""
echo "π Achievement Statistics:"
echo ""
echo " Total Badges Earned: ${#badges[@]}+"
echo " Verification Status: 100% Verified"
echo " Issuer: Credly.com"
echo " Validity: Active & Current"
echo " Public Profile: Available"
echo ""
echo "β¨ Badge Features:"
echo " β’ Blockchain-verified credentials"
echo " β’ Shareable digital badges"
echo " β’ LinkedIn integration"
echo " β’ Embedded verification"
echo " β’ Continuous skill validation"
echo ""
if [ -f "README.md" ]; then
echo "π Documentation:"
echo " β’ README.md contains full badge gallery"
echo " β’ Verification links included"
echo " β’ Skills and competencies detailed"
echo ""
fi
echo "π Verification:"
echo " View verified badges:"
echo " https://www.credly.com/users/wesleyscholl"
echo ""
echo "=========================================="
echo " Repository: github.com/wesleyscholl/credly-badge"
echo " Type: Documentation | Status: Active"
echo "=========================================="
echo ""