Add a dark mode
This commit is contained in:
parent
282281db82
commit
04cce1956b
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -21,3 +21,5 @@ info\.php
|
||||||
PHPMailer/
|
PHPMailer/
|
||||||
|
|
||||||
\.vscode/
|
\.vscode/
|
||||||
|
|
||||||
|
lib/
|
||||||
|
|
47
contact.html
47
contact.html
|
@ -13,13 +13,24 @@
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
<meta name="theme-color" content="#3f51b5">
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
<!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
||||||
|
<!-- Windows Phone -->
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
<!-- iOS -->
|
||||||
|
|
||||||
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
<!-- Bootstrap -->
|
||||||
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
|
||||||
|
<!-- font awesome -->
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-brands.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-regular.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-solid.js"></script>
|
||||||
|
<script src="/lib/fontawesome/svg-with-js/js/fontawesome.js"></script>
|
||||||
|
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
<!-- Custom styles for this site -->
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -33,6 +44,7 @@
|
||||||
ga('create', 'UA-105178749-1', 'auto');
|
ga('create', 'UA-105178749-1', 'auto');
|
||||||
ga('send', 'pageview');
|
ga('send', 'pageview');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -58,11 +70,18 @@
|
||||||
<li class="nav-item active" id="contactlnk">
|
<li class="nav-item active" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navbar-nav">
|
||||||
<li class="nav-item" id="githublnk">
|
<li class="nav-item" id="githublnk">
|
||||||
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank">
|
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank" title="GitHub">
|
||||||
GitHub <span class="fa fa-external-link"></span>
|
<span class="fab fa-github-alt"></span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item ml-md-2">
|
||||||
|
<button id="btnTheme" type="button" class="btn btn-dark" aria-pressed="false" autocomplete="off">
|
||||||
|
<span id="themeText" class="fas fa-moon"></span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -108,11 +127,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript -->
|
<!-- Bootstrap core JavaScript
|
||||||
<script src="js/jquery-3.2.1.js"></script>
|
================================================== -->
|
||||||
<script src="js/popper.js"></script>
|
<!-- Placed at the end of the document so the pages load faster -->
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
<script src="lib/jquery/jquery-3.2.1.js"></script>
|
||||||
<script src="js/contact.js"></script>
|
<script src="lib/popper/popper.js"></script>
|
||||||
|
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
<script src="js/main.js"></script>
|
||||||
|
|
||||||
<!-- Google reCAPTCHA -->
|
<!-- Google reCAPTCHA -->
|
||||||
<script src='https://www.google.com/recaptcha/api.js'></script>
|
<script src='https://www.google.com/recaptcha/api.js'></script>
|
||||||
|
|
34
css/main.css
34
css/main.css
|
@ -22,7 +22,7 @@ a:not(.nav-link):not(.navbar-brand) {
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover:not(.nav-link):not(.navbar-brand) {
|
a:hover:not(.nav-link):not(.navbar-brand) {
|
||||||
color: var(--main-light-color) !important;
|
color: var(--main-light-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
li.col-md-6 {
|
li.col-md-6 {
|
||||||
|
@ -48,3 +48,35 @@ li.col-md-6 {
|
||||||
.full-height {
|
.full-height {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.jumbo-dark {
|
||||||
|
background-color: #2b3136;
|
||||||
|
}
|
||||||
|
|
||||||
|
.a-dark {
|
||||||
|
color: var(--main-light-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.a-dark:hover {
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.transition {
|
||||||
|
-webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, border 0.25s ease-in-out;
|
||||||
|
-moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, border 0.25s ease-in-out;
|
||||||
|
-o-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, border 0.25s ease-in-out;
|
||||||
|
transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, border 0.25s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card.bg-dark {
|
||||||
|
border-color: rgba(255, 255, 255, 0.125);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark.form-control {
|
||||||
|
background-color: rgb(81, 89, 107);
|
||||||
|
border-color: rgb(60, 66, 80);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark.form-control:focus {
|
||||||
|
box-shadow: 0 0 0 .2rem rgba(255,255,255,.5);
|
||||||
|
}
|
||||||
|
|
76
index.html
76
index.html
|
@ -10,16 +10,28 @@
|
||||||
<title>Neil Brommer</title>
|
<title>Neil Brommer</title>
|
||||||
<meta name="description" content="Neil Brommer - Home Page">
|
<meta name="description" content="Neil Brommer - Home Page">
|
||||||
<meta name="author" content="Neil Brommer">
|
<meta name="author" content="Neil Brommer">
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="/favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
<!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
<meta name="theme-color" content="#3f51b5">
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
<!-- Windows Phone -->
|
||||||
|
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
||||||
|
<!-- iOS -->
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
|
||||||
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
<!-- Bootstrap -->
|
||||||
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
<link id="bootstrapStyle" href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
|
||||||
|
|
||||||
|
<!-- font awesome -->
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-brands.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-regular.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-solid.js"></script>
|
||||||
|
<script src="/lib/fontawesome/svg-with-js/js/fontawesome.js"></script>
|
||||||
|
|
||||||
|
<!-- Custom styles for this site -->
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -37,18 +49,27 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<!-- Bootstrap core JavaScript
|
||||||
|
================================================== -->
|
||||||
|
<!-- Placed at the top of document to allow theme to be set quickly -->
|
||||||
|
<script src="lib/jquery/jquery-3.2.1.js"></script>
|
||||||
|
<script src="lib/popper/popper.js"></script>
|
||||||
|
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
<script src="js/main.js"></script>
|
||||||
|
|
||||||
|
|
||||||
<!-- Fixed navbar -->
|
<!-- Fixed navbar -->
|
||||||
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="/">Neil Brommer</a>
|
<a class="navbar-brand" href="/">Neil Brommer</a>
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse"
|
<button class="navbar-toggler mr-0 ml-auto" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse"
|
||||||
aria-expanded="false" aria-label="Toggle navigation">
|
aria-expanded="false" aria-label="Toggle navigation">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||||
<ul class="navbar-nav mr-auto">
|
<ul class="navbar-nav mr-auto">
|
||||||
<li class="nav-item active" id="homelnk">
|
<li class="nav-item active" id="homelnk">
|
||||||
<a class="nav-link" href=".">Home</a>
|
<a class="nav-link" href="/">Home</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item" id="resumelnk">
|
<li class="nav-item" id="resumelnk">
|
||||||
<a class="nav-link" href="resume.html">Resume</a>
|
<a class="nav-link" href="resume.html">Resume</a>
|
||||||
|
@ -59,16 +80,28 @@
|
||||||
<li class="nav-item" id="contactlnk">
|
<li class="nav-item" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navbar-nav">
|
||||||
<li class="nav-item" id="githublnk">
|
<li class="nav-item" id="githublnk">
|
||||||
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank">
|
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank" title="GitHub">
|
||||||
GitHub <span class="fa fa-external-link"></span>
|
<span class="fab fa-github-alt"></span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item ml-md-2">
|
||||||
|
<button id="btnTheme" type="button" class="btn btn-dark" aria-pressed="false" autocomplete="off">
|
||||||
|
<span id="themeText" class="fas fa-moon"></span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
<!-- try to prevent flickering -->
|
||||||
|
<script>
|
||||||
|
checkTheme();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
|
@ -79,6 +112,11 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- try to prevent flickering -->
|
||||||
|
<script>
|
||||||
|
checkTheme();
|
||||||
|
</script>
|
||||||
|
|
||||||
<div class="card-columns">
|
<div class="card-columns">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h4 class="card-header">Snippets</h4>
|
<h4 class="card-header">Snippets</h4>
|
||||||
|
@ -114,7 +152,8 @@
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h4 class="card-header">Resume</h4>
|
<h4 class="card-header">Resume</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p>My <a href="resume.html">resume</a>
|
<p>My
|
||||||
|
<a href="resume.html">resume</a>
|
||||||
</p>
|
</p>
|
||||||
<p>Sensitive information has been removed from this public version</p>
|
<p>Sensitive information has been removed from this public version</p>
|
||||||
<a class="card-link" href="NeilBrommer-WebResume.pdf">PDF</a>
|
<a class="card-link" href="NeilBrommer-WebResume.pdf">PDF</a>
|
||||||
|
@ -122,16 +161,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- try to prevent flickering -->
|
||||||
|
<script>
|
||||||
|
checkTheme();
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="js/jquery-3.2.1.js"></script>
|
|
||||||
<script src="js/popper.js"></script>
|
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
69
js/main.js
Normal file
69
js/main.js
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
var theme = window.localStorage.getItem("theme");
|
||||||
|
if (theme != null && theme == "true")
|
||||||
|
$("body").addClass("bg-dark");
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
$("#btnTheme").click(function () {
|
||||||
|
if ($("#btnTheme").hasClass("btn-light")) {
|
||||||
|
transitionLight();
|
||||||
|
} else {
|
||||||
|
transitionDark();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
var theme = window.localStorage.getItem("theme");
|
||||||
|
if (theme != null && theme == "true")
|
||||||
|
setDark();
|
||||||
|
});
|
||||||
|
|
||||||
|
function checkTheme() {
|
||||||
|
if (theme != null && theme == "true")
|
||||||
|
setDark();
|
||||||
|
}
|
||||||
|
|
||||||
|
function transitionDark() {
|
||||||
|
$("body").addClass("transition bg-dark text-white");
|
||||||
|
$(".card").addClass("transition bg-dark text-white");
|
||||||
|
$(".jumbotron").addClass("transition jumbo-dark text-white");
|
||||||
|
$(".form-control").addClass("transition dark");
|
||||||
|
$("a:not(.navbar-brand):not(.nav-link)").addClass("transition a-dark");
|
||||||
|
|
||||||
|
setInterval(function () {
|
||||||
|
$("a:not(.navbar-brand):not(.nav-link)").removeClass("transition");
|
||||||
|
$(".form-control").removeClass("transition");
|
||||||
|
}, 250);
|
||||||
|
|
||||||
|
$("#btnTheme").removeClass("btn-dark").addClass("transition btn-light");
|
||||||
|
$("#themeText").replaceWith($("<span>").attr("id", "themeText").addClass("fas fa-sun"));
|
||||||
|
|
||||||
|
window.localStorage.setItem("theme", "true");
|
||||||
|
}
|
||||||
|
|
||||||
|
function transitionLight() {
|
||||||
|
$("body").addClass("transition").removeClass("bg-dark text-white");
|
||||||
|
$(".card").addClass("transition").removeClass("bg-dark text-white");
|
||||||
|
$(".jumbotron").addClass("transition").removeClass("jumbo-dark text-white");
|
||||||
|
$(".form-control").addClass("transition").removeClass("dark");
|
||||||
|
$("a:not(.navbar-brand):not(.nav-link)").addClass("transition").removeClass("a-dark");
|
||||||
|
|
||||||
|
setInterval(function () {
|
||||||
|
$("a:not(.navbar-brand):not(.nav-link)").removeClass("transition");
|
||||||
|
$(".form-control").removeClass("transition");
|
||||||
|
}, 500);
|
||||||
|
|
||||||
|
$("#btnTheme").removeClass("btn-light").addClass("transition btn-dark");
|
||||||
|
$("#themeText").replaceWith($("<span>").attr("id", "themeText").addClass("fas fa-moon"));
|
||||||
|
|
||||||
|
window.localStorage.setItem("theme", "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
function setDark() {
|
||||||
|
$("body").addClass("bg-dark text-white");
|
||||||
|
$(".card").addClass("bg-dark text-white");
|
||||||
|
$(".jumbotron").addClass("jumbo-dark text-white");
|
||||||
|
$(".form-control").addClass("dark");
|
||||||
|
$("a:not(.navbar-brand):not(.nav-link)").addClass("a-dark");
|
||||||
|
|
||||||
|
$("#btnTheme").removeClass("btn-dark").addClass("btn-light");
|
||||||
|
$("#themeText").replaceWith($("<span>").attr("id", "themeText").addClass("fas fa-sun"));
|
||||||
|
}
|
66
links.html
66
links.html
|
@ -13,13 +13,24 @@
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
<meta name="theme-color" content="#3f51b5">
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
<!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
||||||
|
<!-- Windows Phone -->
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
<!-- iOS -->
|
||||||
|
|
||||||
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
<!-- Bootstrap -->
|
||||||
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
|
||||||
|
<!-- font awesome -->
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-brands.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-regular.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-solid.js"></script>
|
||||||
|
<script src="/lib/fontawesome/svg-with-js/js/fontawesome.js"></script>
|
||||||
|
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
<!-- Custom styles for this site -->
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -59,11 +70,18 @@
|
||||||
<li class="nav-item" id="contactlnk">
|
<li class="nav-item" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navbar-nav">
|
||||||
<li class="nav-item" id="githublnk">
|
<li class="nav-item" id="githublnk">
|
||||||
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank">
|
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank" title="GitHub">
|
||||||
GitHub <span class="fa fa-external-link"></span>
|
<span class="fab fa-github-alt"></span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item ml-md-2">
|
||||||
|
<button id="btnTheme" type="button" class="btn btn-dark" aria-pressed="false" autocomplete="off">
|
||||||
|
<span id="themeText" class="fas fa-moon"></span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -84,8 +102,7 @@
|
||||||
<h4 class="card-header">John Carmack at QuakeCon 2013</h4>
|
<h4 class="card-header">John Carmack at QuakeCon 2013</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="https://www.youtube.com/watch?v=IyUgHPs86XM"
|
<a href="https://www.youtube.com/watch?v=IyUgHPs86XM" target="_blank">
|
||||||
target="_blank">
|
|
||||||
Principles of Lighting and Rendering with John Carmack at QuakeCon 2013
|
Principles of Lighting and Rendering with John Carmack at QuakeCon 2013
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -101,8 +118,7 @@
|
||||||
<h4 class="card-header">Volatility of High Frequency Trading</h4>
|
<h4 class="card-header">Volatility of High Frequency Trading</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="http://nautil.us/issue/23/dominoes/why-the-flash-crash-really-matters"
|
<a href="http://nautil.us/issue/23/dominoes/why-the-flash-crash-really-matters" target="_blank">
|
||||||
target="_blank">
|
|
||||||
Why the Flash Crash Really Matters
|
Why the Flash Crash Really Matters
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -120,8 +136,7 @@
|
||||||
<h4 class="card-header">Algorithms and Bias</h4>
|
<h4 class="card-header">Algorithms and Bias</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="https://www.nytimes.com/2015/08/11/upshot/algorithms-and-bias-q-and-a-with-cynthia-dwork.html?abt=0002&abg=1"
|
<a href="https://www.nytimes.com/2015/08/11/upshot/algorithms-and-bias-q-and-a-with-cynthia-dwork.html?abt=0002&abg=1" target="_blank">
|
||||||
target="_blank">
|
|
||||||
Algorithms and Bias: Q. and A. With Cynthia Dwork
|
Algorithms and Bias: Q. and A. With Cynthia Dwork
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -153,8 +168,7 @@
|
||||||
<h4 class="card-header">Real Time Rendering for Artists</h4>
|
<h4 class="card-header">Real Time Rendering for Artists</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="https://jesshiderue4.wordpress.com/real-time-rendering-an-overview-for-artists/"
|
<a href="https://jesshiderue4.wordpress.com/real-time-rendering-an-overview-for-artists/" target="_blank">
|
||||||
target="_blank">
|
|
||||||
Real Time Rendering: An Overview for Artists
|
Real Time Rendering: An Overview for Artists
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -187,8 +201,7 @@
|
||||||
<h4 class="card-header">Firefox’s New Rendering Engine (WebRender)</h4>
|
<h4 class="card-header">Firefox’s New Rendering Engine (WebRender)</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/"
|
<a href="https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/" target="_blank">
|
||||||
target="_blank">
|
|
||||||
The whole web at maximum FPS: How WebRender gets rid of jank
|
The whole web at maximum FPS: How WebRender gets rid of jank
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -204,8 +217,7 @@
|
||||||
<h4 class="card-header">Firefox’s New CSS Engine (Stylo)</h4>
|
<h4 class="card-header">Firefox’s New CSS Engine (Stylo)</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="https://hacks.mozilla.org/2017/08/inside-a-super-fast-css-engine-quantum-css-aka-stylo/"
|
<a href="https://hacks.mozilla.org/2017/08/inside-a-super-fast-css-engine-quantum-css-aka-stylo/" target="_blank">
|
||||||
target="_blank">
|
|
||||||
Inside a super fast CSS engine: Quantum CSS (aka Stylo)
|
Inside a super fast CSS engine: Quantum CSS (aka Stylo)
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -221,16 +233,15 @@
|
||||||
<h4 class="card-header">Judge William Alsup</h4>
|
<h4 class="card-header">Judge William Alsup</h4>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<a href="https://www.theverge.com/2017/10/19/16503076/oracle-vs-google-judge-william-alsup-interview-waymo-uber"
|
<a href="https://www.theverge.com/2017/10/19/16503076/oracle-vs-google-judge-william-alsup-interview-waymo-uber" target="_blank">
|
||||||
target="_blank">
|
|
||||||
The Judge’s Code
|
The Judge’s Code
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
An article on Judge William Alsup, who was the judge for the first
|
An article on Judge William Alsup, who was the judge for the first
|
||||||
<a href="https://en.wikipedia.org/wiki/Oracle_America,_Inc._v._Google,_Inc." target="_blank">
|
<a href="https://en.wikipedia.org/wiki/Oracle_America,_Inc._v._Google,_Inc." target="_blank">
|
||||||
Oracle v. Google</a> case over whether an API can be copywritten, and is now the judge for
|
Oracle v. Google</a> case over whether an API can be copywritten, and is now the judge for the
|
||||||
the <a href="http://www.businessinsider.com/google-waymo-v-uber-case-explained-2017-5" target="_blank">
|
<a href="http://www.businessinsider.com/google-waymo-v-uber-case-explained-2017-5" target="_blank">
|
||||||
Waymo (Google) v. Uber</a>.
|
Waymo (Google) v. Uber</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -243,9 +254,10 @@
|
||||||
<!-- Bootstrap core JavaScript
|
<!-- Bootstrap core JavaScript
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
<!-- Placed at the end of the document so the pages load faster -->
|
||||||
<script src="js/jquery-3.2.1.js"></script>
|
<script src="lib/jquery/jquery-3.2.1.js"></script>
|
||||||
<script src="js/popper.js"></script>
|
<script src="lib/popper/popper.js"></script>
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
<script src="js/main.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
51
resume.html
51
resume.html
|
@ -13,13 +13,24 @@
|
||||||
<link rel="icon" href="favicon.ico">
|
<link rel="icon" href="favicon.ico">
|
||||||
|
|
||||||
<!-- theme colors -->
|
<!-- theme colors -->
|
||||||
<meta name="theme-color" content="#3f51b5"> <!-- Chrome, Firefox OS and Opera -->
|
<meta name="theme-color" content="#3f51b5">
|
||||||
<meta name="msapplication-navbutton-color" content="#3f51b5"> <!-- Windows Phone -->
|
<!-- Chrome, Firefox OS and Opera -->
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- iOS -->
|
<meta name="msapplication-navbutton-color" content="#3f51b5">
|
||||||
|
<!-- Windows Phone -->
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
|
<!-- iOS -->
|
||||||
|
|
||||||
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Bootstrap -->
|
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <!-- font awesome -->
|
<!-- Bootstrap -->
|
||||||
<link href="css/main.css" rel="stylesheet"> <!-- Custom styles for this site -->
|
|
||||||
|
<!-- font awesome -->
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-brands.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-regular.js"></script>
|
||||||
|
<script defer src="/lib/fontawesome/svg-with-js/js/fa-solid.js"></script>
|
||||||
|
<script src="/lib/fontawesome/svg-with-js/js/fontawesome.js"></script>
|
||||||
|
|
||||||
|
<link href="css/main.css" rel="stylesheet">
|
||||||
|
<!-- Custom styles for this site -->
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
|
@ -38,14 +49,6 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="js/jquery-3.2.1.js"></script>
|
|
||||||
<script src="js/popper.js"></script>
|
|
||||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Fixed navbar -->
|
<!-- Fixed navbar -->
|
||||||
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
<nav id="topnav" class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@ -68,11 +71,18 @@
|
||||||
<li class="nav-item" id="contactlnk">
|
<li class="nav-item" id="contactlnk">
|
||||||
<a class="nav-link" href="contact.html">Contact</a>
|
<a class="nav-link" href="contact.html">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="navbar-nav">
|
||||||
<li class="nav-item" id="githublnk">
|
<li class="nav-item" id="githublnk">
|
||||||
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank">
|
<a class="nav-link" href="https://github.com/NeilBrommer" target="_blank" title="GitHub">
|
||||||
GitHub <span class="fa fa-external-link"></span>
|
<span class="fab fa-github-alt"></span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item ml-md-2">
|
||||||
|
<button id="btnTheme" type="button" class="btn btn-dark" aria-pressed="false" autocomplete="off">
|
||||||
|
<span id="themeText" class="fas fa-moon"></span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -167,6 +177,15 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Bootstrap core JavaScript
|
||||||
|
================================================== -->
|
||||||
|
<!-- Placed at the end of the document so the pages load faster -->
|
||||||
|
<script src="lib/jquery/jquery-3.2.1.js"></script>
|
||||||
|
<script src="lib/popper/popper.js"></script>
|
||||||
|
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
<script src="js/main.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue