-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<META CHARSET="UTF-8"> | ||
<title>About me</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Eric Jacobowitz</h1><br> | ||
<h2>“Success is not final; failure is not fatal: It is the courage to continue that counts.” —Winston Churchill</h2><br> | ||
<br> | ||
</header> | ||
<p>Even though I work in IT, 2 of my hobbies are home automation and my home lab. I use google home and Home assistant as my home automation hubs | ||
where I can interact with most of my home. I can turn on/off most of my lights, set my thermostat and configure automations. I also like | ||
to host my own services if I can. I have built a 3 node proxmox cluster which runs a couple of VM's that run docker and some containers. One docker | ||
container is a port of VSCode that runs on a website. This VSCode container is what I am using as an IDE for this class. Both home automation | ||
and my home lab can be very time consuming as they evolve very quickly. They both need constant updates and I seem to be always adding new things | ||
as time goes on. I like the challenges as well as the reward when things work they way I want and I get to use them. | ||
</p> | ||
<section> | ||
<h2>Education</h2> | ||
<section> | ||
<h3>College</h3> | ||
<p>New York City Technical College, Brooklyn, New York</p> | ||
</section> | ||
<section> | ||
<h3>Online course</h3> | ||
<p>Plural site - Azure Fundamentals</p> | ||
</section> | ||
<section> | ||
<h3>Certification</h3> | ||
<p>Microsoft Certified: Azure Fundamentals</p> | ||
</section> | ||
</section> | ||
<section> | ||
<h2>Work Experience</h2> | ||
<section> | ||
<h3> Senior Engineer Applications Server - Jetblue Airways</h3> | ||
<p>In Jetblue I work with an amazing team on operational systems critical to Jetblue.</p> | ||
</section> | ||
<section> | ||
<h3> Desktop support - Thompson Financial</h3> | ||
<p>At Thompson I was part of a team work tickets on any desktop related issues. From installing software and fixing blue screens of death.</p> | ||
</section> | ||
</section> | ||
<section> | ||
<h3>favorites</h3> | ||
<section> | ||
<h3>My favorite foods in order are:</h3> | ||
<ol> | ||
<li>Italian</li> | ||
<ol> | ||
<li>Penne with meat sauce</li> | ||
</ol> | ||
<li>Vietnamese</li> | ||
<ol> | ||
<li>Pho</li> | ||
<li>Bun bo Hue</li> | ||
<li>Banh Mi</li> | ||
</ol> | ||
<li>French</li> | ||
<ol> | ||
<li>Escargot</li> | ||
</ol> | ||
<li>American</li> | ||
<ol> | ||
<li>Cheese burger</li> | ||
</ol> | ||
<li>Indian</li> | ||
<ol> | ||
<li>chicken tikka masala</li> | ||
</ol> | ||
<li>Chinese</li> | ||
<ol> | ||
<li>sesame chicken</li> | ||
</ol> | ||
</ol> | ||
</section> | ||
<section> | ||
<h3>My favorite websites are:</h3> | ||
<ul> | ||
<li><a href="https://www.google.com">Google</a></li> | ||
<li><a href="https://www.youtube.com">Youtube</a></li> | ||
<li><a href="https://www.amazon.com">Amazon</a></li> | ||
</ul> | ||
</section> | ||
</section> | ||
<footer> | ||
copywrite* May 2nd 2024 | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
body { | ||
|
||
background-color: #D6DBB2; | ||
font-family: sans-serif | ||
color: #422040; | ||
margin-right: 35em; | ||
|
||
} | ||
|
||
h1 { | ||
|
||
font-weight: bold; | ||
font-size: 4em; | ||
font-style: bold; | ||
font-weight: 800; | ||
border: #E3D985; | ||
border-style: solid; | ||
background-color: #E3D985; | ||
|
||
} | ||
|
||
h2 { | ||
|
||
background-image: url("blue-watercolor-background_615876-5.jpg"); | ||
padding: 4em; | ||
font-family: serif; | ||
font-style: italic; | ||
} | ||
|
||
ol, ul { | ||
border: #422040; | ||
border-color: #422040; | ||
border-style: solid; | ||
background-color: #422040; | ||
color: #D6DBB2; | ||
font-size: medium; | ||
padding: 1.0em; | ||
} | ||
|
||
li { | ||
font-weight: lighter; | ||
border-color: #422040; | ||
border-style: solid; | ||
} | ||
|
||
p { | ||
font-style: normal; | ||
font-weight: 700; | ||
|
||
} | ||
|
||
/*this formats links*/ | ||
|
||
a { | ||
color: #BCD8C1; | ||
background-color: #E57A44; | ||
} |