commit 763f20d5146ced177b2910ca7c5d2b4fdfcbd3e5 Author: Lucca Pirovano Date: Thu Apr 2 13:29:07 2026 -0400 original website diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d1e22ec --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ca8b94a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/site.iml b/.idea/site.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/.idea/site.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.well-known/matrix/client b/.well-known/matrix/client new file mode 100644 index 0000000..dba06f5 --- /dev/null +++ b/.well-known/matrix/client @@ -0,0 +1,3 @@ +{ + "m.server": "matrix.gianluccapirovano.com" +} diff --git a/.well-known/matrix/server b/.well-known/matrix/server new file mode 100644 index 0000000..4d3afd1 --- /dev/null +++ b/.well-known/matrix/server @@ -0,0 +1,3 @@ +{ + "m.server": "matrix.gianluccapirovano.com:8448" +} diff --git a/_matrix b/_matrix new file mode 120000 index 0000000..0ec21b7 --- /dev/null +++ b/_matrix @@ -0,0 +1 @@ +matrix \ No newline at end of file diff --git a/birthday b/birthday new file mode 160000 index 0000000..3ef1535 --- /dev/null +++ b/birthday @@ -0,0 +1 @@ +Subproject commit 3ef153506ae0534aba31a4e76fbd250dacbf83a2 diff --git a/certs/Certiport-IT-Specialist-DevConf&Troubleshooting.pdf b/certs/Certiport-IT-Specialist-DevConf&Troubleshooting.pdf new file mode 100644 index 0000000..56603ac Binary files /dev/null and b/certs/Certiport-IT-Specialist-DevConf&Troubleshooting.pdf differ diff --git a/certs/CompTIA-A+-ce-certificate.pdf b/certs/CompTIA-A+-ce-certificate.pdf new file mode 100644 index 0000000..8aac236 Binary files /dev/null and b/certs/CompTIA-A+-ce-certificate.pdf differ diff --git a/certs/CompTIA-Linux+-ce-certificate.pdf b/certs/CompTIA-Linux+-ce-certificate.pdf new file mode 100644 index 0000000..857bc4d Binary files /dev/null and b/certs/CompTIA-Linux+-ce-certificate.pdf differ diff --git a/certs/CompTIA-Network+-ce-certificate.pdf b/certs/CompTIA-Network+-ce-certificate.pdf new file mode 100644 index 0000000..ac98235 Binary files /dev/null and b/certs/CompTIA-Network+-ce-certificate.pdf differ diff --git a/certs/CompTIA-Security+-ce-certificate.pdf b/certs/CompTIA-Security+-ce-certificate.pdf new file mode 100644 index 0000000..15f4941 Binary files /dev/null and b/certs/CompTIA-Security+-ce-certificate.pdf differ diff --git a/certs/HS-Diploma.pdf b/certs/HS-Diploma.pdf new file mode 100644 index 0000000..9c724a9 Binary files /dev/null and b/certs/HS-Diploma.pdf differ diff --git a/certs/McFatter-Applied-Cybersecurity-Technical-Diploma.pdf b/certs/McFatter-Applied-Cybersecurity-Technical-Diploma.pdf new file mode 100644 index 0000000..1bd6fe8 Binary files /dev/null and b/certs/McFatter-Applied-Cybersecurity-Technical-Diploma.pdf differ diff --git a/certs/TestOut-Linux-Pro.pdf b/certs/TestOut-Linux-Pro.pdf new file mode 100644 index 0000000..441ba0f Binary files /dev/null and b/certs/TestOut-Linux-Pro.pdf differ diff --git a/fancy/index.css b/fancy/index.css new file mode 100644 index 0000000..cf2ada6 --- /dev/null +++ b/fancy/index.css @@ -0,0 +1,111 @@ +body{ +background-color: black; +color:white; +font-family: monospace; +font-size: 155%; +padding-bottom: 25px; +} + +.title{ +margin:auto; +margin-top: 2.5%; +width:60%; +border: 5px solid green; +border-style: groove; +border-radius: 10px; +padding:1%; +font-size: 220%; +text-align:center; +} +.title > small{ +margin-top: 0%; +padding:0%; +font-size: 40%; +text-align:center; +} +.grid{ +display: grid; +grid-template-columns: repeat(auto-fill, minmax(50vmin, 1fr)); +padding: 5%; +grid-column-gap: 3%; +grid-row-gap: 4%; +} +.grid > div { +border: 5px solid green; +border-style: groove; +border-radius: 12px; +padding: 3%; +} + +ul { +list-style-type: none; +margin: 0; +padding: 0; +} +li { +border: 2px solid gold; +border-style: groove; +border-radius: 10px; +margin: 0.8%; +margin-top: 1.8%; +margin-bottom: 0%; +padding: 0.6%; +font-size: 90%; +} + +.references > li{ +font-size: 100%; +padding: 1%; +} + +a:link { +color: lightgray; +} +a:visited { +color: lightgray; +} +a:hover { +color: orange; +} +a:active { +color: #800000; +} + +.printhead { +position: absolute; +right: 50px; +width: 300px; +text-align: right; +visibility:hidden; +} + +/*If Printing*/ +@media print { + @page { + /*size: 400mm 566mm;*/ + size: 400mm 566mm; + font-size: 200%; + } + .printhead{ + visibility:visible; + } +} + +/*If mobile device*/ + @media (pointer:coarse) { + .title{ + width:90%; + } + body{ + -webkit-text-size-adjust: none; + -moz-text-size-adjust: none; + font-size:280% + } + /*if device is in landscape:*/ + @media (min-width: 30em) and (orientation: landscape) { + body{ + font-size:170%; + } + } + } + diff --git a/fancy/index.html b/fancy/index.html new file mode 120000 index 0000000..79c5d6f --- /dev/null +++ b/fancy/index.html @@ -0,0 +1 @@ +../index.html \ No newline at end of file diff --git a/gianluccapirovano.com-qr.png b/gianluccapirovano.com-qr.png new file mode 100644 index 0000000..627e63f Binary files /dev/null and b/gianluccapirovano.com-qr.png differ diff --git a/images/setup.jpg b/images/setup.jpg new file mode 100644 index 0000000..92dc7e7 Binary files /dev/null and b/images/setup.jpg differ diff --git a/index.css b/index.css new file mode 100644 index 0000000..1afaa48 --- /dev/null +++ b/index.css @@ -0,0 +1,24 @@ +.title{ +text-align: left; +font-size: 160%; +text-align:center; +} +.title > small{ +margin-top: 0%; +padding:0%; +font-size: 68%; +} +body{ +font-size: 80%; +} + +.printhead { +visibility:hidden; +} + +/*If Printing*/ +@media print { + .printhead{ + visibility:visible; + } +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..8a50a6a --- /dev/null +++ b/index.html @@ -0,0 +1,72 @@ + + + + + + + + Gianlucca Pirovano's Resume + + +Web Version
+

Gianlucca Pirovano
Certified GNU/Linux & Network Security Professional
Email: luccapirovano@gmx.com | Phone: +1-954-795-7430 [Text Messages Only]

+
+
+ Technical Skills: +
    +
  • Unix: Debian, Ubuntu, Fedora, CentOS/Rocky, Arch, Manjaro, Alpine, FreeBSD
  • +
  • Windows: XP, 7, 8, 8.1, 10, 10 Enterprise, 10 Enterprise LTSB/LTSC, 11, 11 Enterprise, Server 2012-R2, Server 2019, Server 2022
  • +
  • Software: Active Directory, Proxmox VE, KVM, PCIE passthrough, Python, HTML, CSS, pfSense, Apache, PHP, Docker, UFW + firwalld, vsftpd, stunnel, SSH, stable-diffusion-webui, ConnectWise, Peppermint.sh
  • +
+
+
+ Work Experience: + +
+
+ Personal Endeavors: +
+
+ Certifications & Education: + +
+
+
+ + diff --git a/luccapirovano.com-qr.png b/luccapirovano.com-qr.png new file mode 100644 index 0000000..d5210a5 Binary files /dev/null and b/luccapirovano.com-qr.png differ diff --git a/matrix/static/.well-known b/matrix/static/.well-known new file mode 120000 index 0000000..da4f915 --- /dev/null +++ b/matrix/static/.well-known @@ -0,0 +1 @@ +../../.well-known \ No newline at end of file