-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01_introduction.sh
More file actions
59 lines (48 loc) · 3.93 KB
/
01_introduction.sh
File metadata and controls
59 lines (48 loc) · 3.93 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
#!/bin/bash
# Define colors
CYAN='\033[0;36m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
MAGENTA='\033[0;35m'
WHITE='\033[1;37m'
BLUE='\033[1;34m'
RED='\033[1;31m'
RESET='\033[0m'
# Clear the screen
clear
# Print the banner
echo -e "${CYAN}${RESET} ${GREEN}88b d88 88b d88 88${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}888b d888 888b d888 88${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}88\`8b d8'88 88\`8b d8'88 88${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}88 \`8b d8' 88 8b,dPPYba, 88 \`8b d8' 88 ,adPPYYba, 8b,dPPYba, 88 ,d8${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}88 \`8b d8' 88 88P' \"Y8 88 \`8b d8' 88 \"\" \`Y8 88P' \"Y8 88 ,a8\"${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}88 \`8b d8' 88 88 88 \`8b d8' 88 ,adPPPPP88 88 8888[${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}88 \`888' 88 88 88 \`888' 88 88, ,88 88 88\`\"Yba,${CYAN}"
echo -e "${CYAN}${RESET} ${GREEN}88 \`8' 88 88 88 \`8' 88 \"8bbdP\"Y8 88 88 \`Y8a${CYAN}"
# Add some spacing
echo -e "\n"
# Display skills using icons and styles
echo -e "${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${WHITE}| ${BLUE}👨💻 ${MAGENTA}ETHICAL HACKER ${WHITE} | ${GREEN}⚔️ Network Security ${WHITE}| ${GREEN}🛡️ Penetration Testing ${WHITE}|"
echo -e "${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${RESET}Proficient in network security, penetration testing, and vulnerability assessment."
echo -e "\n${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${WHITE}| ${BLUE}📊 ${MAGENTA}MACHINE LEARNING ${WHITE} | ${GREEN}🧠 AI Models ${WHITE}| ${GREEN}📉 Data Analytics ${WHITE}|"
echo -e "${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${RESET}Expert in building and training models using frameworks like TensorFlow, Keras, and PyTorch."
echo -e "\n${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${WHITE}| ${BLUE}🤖 ${MAGENTA}DEEP LEARNING ${WHITE} | ${GREEN}🔍 Image Recognition ${WHITE}| ${GREEN}📈 Predictive Analytics ${WHITE}|"
echo -e "${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${RESET}Specialized in deep learning techniques for image recognition and predictive analytics."
echo -e "\n${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${WHITE}| ${BLUE}🌐 ${MAGENTA}FULL STACK DEV ${WHITE} | ${GREEN}💻 Laravel ${WHITE}| ${GREEN}🌐 Django ${WHITE}| ${GREEN}🔧 PHP ${WHITE}|"
echo -e "${YELLOW}---------------------------------------------------------------------------------------------------------------------"
echo -e "${RESET}Skilled in developing web applications using Laravel, Django, and PHP frameworks."
# Add some spacing
echo -e "\n"
# Print end of banner
echo -e "${CYAN}################################################################################"
echo -e "# #"
echo -e "#${RESET} ${RED}THANK YOU FOR VISITING MY PROFILE! ${CYAN}#"
echo -e "# #"
echo -e "${CYAN}################################################################################${RESET}"