-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.ps1
43 lines (32 loc) · 1.44 KB
/
script.ps1
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
clear;
$arr = " HELLO FRIEND"," THIS IS MY"," WORKSPACE"," ......"," Welcome! :)"," Let's Get Started!!";
foreach ($i in $arr){
Write-Host ""
Write-Host "$i"
Start-Sleep -s 1;
clear;
}
clear;
Write-Host "`n Hello, Brother! Welcome to my WorkSpace!!`n";
Write-Host -ForegroundColor DarkMagenta " My Profile`n";
Write-Host -ForegroundColor Green " http://ritheeshbaradwaj.github.io/`n";
Start-Sleep -s 5;
clear;
Write-Host "`n My Projects`n";
Write-Host -ForegroundColor DarkMagenta " Meme Generator using AI`n";
Write-Host -ForegroundColor Green " https://developers-cosmos.github.io/Meme-Generator/`n";
Start-Sleep -s 5;
clear;
Write-Host -ForegroundColor DarkMagenta "`n CI/CD Pipeline`n";
Write-Host -ForegroundColor Green " https://ritheeshbaradwaj.github.io/JenkinsPipeline/`n";
Start-Sleep -s 5;
clear;
Write-Host -ForegroundColor DarkMagenta "`n Configuation Management - Chef`n";
Write-Host -ForegroundColor Green " https://developers-cosmos.github.io/COVID19-FeedbackApplication/`n";
Start-Sleep -s 5;
clear;
Write-Host -ForegroundColor DarkMagenta "`n Git Learn - A tool to learn Git`n";
Write-Host -ForegroundColor Green " https://ritheeshbaradwaj.github.io/GitLearn/`n";
Start-Sleep -s 5;
clear;
Write-Host -ForegroundColor Red "`nEND OF THE SLIDE";