original website
This commit is contained in:
Generated
+3
@@ -0,0 +1,3 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
+6
@@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<settings>
|
||||||
|
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||||
|
<version value="1.0" />
|
||||||
|
</settings>
|
||||||
|
</component>
|
||||||
Generated
+4
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8" project-jdk-type="Python SDK" />
|
||||||
|
</project>
|
||||||
Generated
+8
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/site.iml" filepath="$PROJECT_DIR$/.idea/site.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Generated
+8
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="PYTHON_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"m.server": "matrix.gianluccapirovano.com"
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"m.server": "matrix.gianluccapirovano.com:8448"
|
||||||
|
}
|
||||||
Submodule
+1
Submodule birthday added at 3ef153506a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+111
@@ -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%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../index.html
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 402 B |
Binary file not shown.
|
After Width: | Height: | Size: 424 KiB |
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
+72
@@ -0,0 +1,72 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<script>
|
||||||
|
//functions:
|
||||||
|
function monthDiff(d1, d2) {
|
||||||
|
var months;
|
||||||
|
months = (d2.getFullYear() - d1.getFullYear()) * 12;
|
||||||
|
months += d2.getMonth() - d1.getMonth();
|
||||||
|
return months;
|
||||||
|
}
|
||||||
|
var monthsOffset = monthDiff(
|
||||||
|
new Date(2024, 6, 1),
|
||||||
|
new Date()
|
||||||
|
);
|
||||||
|
var yearsOffset = Math.floor(monthsOffset/12)
|
||||||
|
// var yearsOffset = 1
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" name=”robots” content=”noindex,nofollow”>
|
||||||
|
<link rel="stylesheet" href="index.css">
|
||||||
|
<title>Gianlucca Pirovano's Resume</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a class="printhead" href="https://resume.luccapirovano.com">Web Version<br></a>
|
||||||
|
<h1 class="title"><a href="https://resume.luccapirovano.com">Gianlucca Pirovano</a><br><small>Certified GNU/Linux & Network Security Professional<br>Email: luccapirovano@gmx.com | Phone: +1-954-795-7430 [Text Messages Only]</small></h1>
|
||||||
|
<div class="grid">
|
||||||
|
<div>
|
||||||
|
Technical Skills:
|
||||||
|
<ul>
|
||||||
|
<li><u>Unix</u>: Debian, Ubuntu, Fedora, CentOS/Rocky, Arch, Manjaro, Alpine, FreeBSD</li>
|
||||||
|
<li><u>Windows</u>: XP, 7, 8, 8.1, 10, 10 Enterprise, 10 Enterprise LTSB/LTSC, 11, 11 Enterprise, Server 2012-R2, Server 2019, Server 2022<br></li>
|
||||||
|
<li><u>Software</u>: 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</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
Work Experience:
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://www.wheelhouseit.com/">Wheelhouse IT</a> - IT Support Agent - 9 Months</li>
|
||||||
|
<li><a href="https://www.wheelhouseit.com/">Wheelhouse IT</a> - IT Support Technician - 9 Months</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
Personal Endeavors:
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://readonlywiki.luccapirovano.com">A knowledgebase to document projects and processes I've learned in my career.</li>
|
||||||
|
<li><a href="images/setup.jpg">A complex home computer setup that uses virtualization and PCI-E passthrough to segment different workflows</a>.</li>
|
||||||
|
<li>Skilled at configuring and managing switches, routers, and firewalls.</li>
|
||||||
|
<li>Took a CyberPatriot competition team to gold semifinals in Windows 10, Windows Server, and Debian GNU/Linux.</li>
|
||||||
|
<li>Won nationals first place in the Business Professionals of America National Leadership Competition for the GNU/Linux category.</li>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
Certifications & Education:
|
||||||
|
<ul>
|
||||||
|
<li><a href="certs/CompTIA-A+-ce-certificate.pdf">CompTIA A+</a></li>
|
||||||
|
<li><a href="certs/CompTIA-Network+-ce-certificate.pdf">CompTIA Network+</a></li>
|
||||||
|
<li><a href="certs/CompTIA-Security+-ce-certificate.pdf">CompTIA Security+</a></li>
|
||||||
|
<li><a href="certs/CompTIA-Linux+-ce-certificate.pdf">CompTIA Linux+</a></li>
|
||||||
|
<li><a href="certs/McFatter-Applied-Cybersecurity-Technical-Diploma.pdf">Technical Diploma for Applied Cybersecurity</a></li>
|
||||||
|
<li><a href="https://catalog.broward.edu/programs-study/network-systems-technology-network-administration-as/#text">Associate of Science - Network Administration - Broward College (Expected Dec 2026) </a></li>
|
||||||
|
<li><a href="https://catalog.broward.edu/programs-study/network-systems-technology-network-administration-as/#text">Bachelor of Applied Science - Network Systems Analyst - Broward College (Expected Dec 2028) </a></li>
|
||||||
|
<!--
|
||||||
|
<li><a href="certs/TestOut-Linux-Pro.pdf">TestOut Linux Pro</a></li>
|
||||||
|
<li><a href="certs/Certiport-IT-Specialist-DevConf&Troubleshooting.pdf">Certiport IT Specialist</a></li>
|
||||||
|
<li><a href="certs/HS-Diploma.pdf">High School Diploma</a></li>
|
||||||
|
!-->
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<img src="/luccapirovano.com-qr.png"><br>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 353 B |
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../../.well-known
|
||||||
Reference in New Issue
Block a user