something presentable
This commit is contained in:
parent
d5b077ccbb
commit
5a5e65d530
|
@ -3,6 +3,7 @@
|
|||
<head>
|
||||
<link rel="stylesheet" href="/static/css/style.css" />
|
||||
<link rel="stylesheet" id="theme-target" href="{}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<script src="/static/js/htmx.min.js"></script>
|
||||
<script src="/static/js/jquery-3.7.1.min.js"></script>
|
||||
<script src="/static/js/scripts.js"></script>
|
||||
|
|
|
@ -127,3 +127,20 @@ html, body {
|
|||
break-inside: avoid-column;
|
||||
}
|
||||
|
||||
.about-me {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.about-me {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 800px) {
|
||||
.about-me img {
|
||||
width: 320px;
|
||||
margin-left: 4em;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,16 +2,23 @@
|
|||
<title>Jays Portfolio - About</title>
|
||||
|
||||
<h2>About Me</h2>
|
||||
<p>
|
||||
Hi! My name is Jay. The first time I learned about programming was from a Python challenge (Grok Learning NCSS challenge) in Primary School Year 6 during 2015,
|
||||
which I did really well in. Later, in 2019 I did an internship to work with CaryKH for their Jumpcutter project. With them I learned useful skills such as
|
||||
working with other developers and their project manager to turn sketches and specification documents into a functional webapp frontend. The next year in 2020,
|
||||
the pandemic happened. This motivated Goulds Natural Medicine to reach out to build an online webstore so they could continue business during a lockdown.
|
||||
The website continues to work well today.
|
||||
</p>
|
||||
<p>
|
||||
I also enjoy working on my indie game projects.
|
||||
</p>
|
||||
<div class="about-me">
|
||||
<div>
|
||||
<p>
|
||||
Hi! My name is Jay. The first time I learned about programming was from a Python challenge (Grok Learning NCSS challenge) in Primary School Year 6 during 2015,
|
||||
which I did really well in. Later, in 2019 I did an internship to work with CaryKH for their Jumpcutter project. With them I learned useful skills such as
|
||||
working with other developers and their project manager to turn sketches and specification documents into a functional webapp frontend. The next year in 2020,
|
||||
the pandemic happened. This motivated Goulds Natural Medicine to reach out to build an online webstore so they could continue business during a lockdown.
|
||||
The website continues to work well today.
|
||||
</p>
|
||||
<p>
|
||||
I also enjoy working on my indie game projects. Currently, this project is a nuclear power plant simulator.
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<img alt="An image of me :D" src="/static/image/ME.jpg" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Education</h2>
|
||||
<table>
|
||||
|
@ -123,9 +130,9 @@
|
|||
Other Interests
|
||||
<ul>
|
||||
<li>Electronics</li>
|
||||
<li>Nuclear</li>
|
||||
<li>Web Accessibility</li>
|
||||
<li>Nuclear Physics</li>
|
||||
<li>Indie Game Development</li>
|
||||
<li>Web Accessibility</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<div id="contact-response">
|
||||
<p>
|
||||
You can contact me via this form or by emailing me at <a href="mailto:jsrobson10@gmail.com">jsrobson10@gmail.com</a>.
|
||||
I look forward to hearing from you!
|
||||
<form hx-put="/contact", hx-target="#contact-response">
|
||||
<label for="contact-name">Name</label>
|
||||
<input type="text" name="name" id="contact-name" required />
|
||||
|
@ -19,7 +20,7 @@
|
|||
</div>
|
||||
<h1>Other Links</h1>
|
||||
<ul>
|
||||
<li><a href="https://www.github.com/jsrobson10" target="_blank">GitHub</a></li>
|
||||
<li><a href="https://www.github.com/jsrobson10" target="_blank">GitHub (jsrobson10)</a></li>
|
||||
<li><a href="https://www.linkedin.com/in/jay-robson-6a53312b3/" target="_blank">LinkedIn</a></li>
|
||||
<li><a href="https://git.onewaycoding.com/jay" target="_blank">Gitea</a></li>
|
||||
</ul>
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
|
||||
<h1>Welcome to my portfolio website :)</h1>
|
||||
<p>
|
||||
Here you can see the (more notable) projects I have created and/or worked on.
|
||||
Here you can see the (more notable) projects I have created and/or worked on, or click/activate all the buttons to find out more about me.
|
||||
</p>
|
||||
<p>
|
||||
Also please feel free to check out my <a href="https://github.com/jsrobson10/" target="_blank">GitHub</a> and <a href="https://git.onewaycoding.com/jay/" target="_blank">Gitea</a>
|
||||
profiles if you would like to see the projects that aren't on here.
|
||||
</p>
|
||||
<ul>
|
||||
<li><button hx-get="/static/html/projects/fast_nuclear_sim.html" class="button-link" hx-target="#projects">Fast Nuclear Sim</button></li>
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<h2>Ant Simulator</h2>
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
<h2>Binary Data Format</h2>
|
||||
<p>
|
||||
This project was created to be something similar in structure to JSON,
|
||||
but also more compact. I wrote a version of this in C++ and another in Java.
|
||||
The format was designed to be able to be both parsed and written to a binary blob,
|
||||
while also being able to be read and written to a human-readable text format similar to JSON.
|
||||
The difference between this and JSON is this one is statically typed, and natively
|
||||
supports comments in the human readable version.
|
||||
</p>
|
||||
<h2>Links</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/jsrobson10/binary-data-format" target="_blank">Binary Data Format (Java) (GitHub)</a></li>
|
||||
<li><a href="https://github.com/jsrobson10/BdfCpp" target="_blank">Binary Data Format (C++) (GitHub)</a></li>
|
||||
</ul>
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
</p>
|
||||
<img src="/static/image/fast_nuclear_sim_cherenkov.png" alt="Image of Cherenkov radiation inside the pressure vessel" />
|
||||
<p>
|
||||
|
||||
The blue glow here is from <a href="https://en.wikipedia.org/wiki/Cherenkov_radiation" target="_blank">Cherenkov Radiation</a>.
|
||||
</p>
|
||||
<img src="/static/image/fast_nuclear_sim_control_room.png" alt="Fast Nuclear Sim control room" />
|
||||
<p>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 683 KiB |
Loading…
Reference in New Issue