Add contact info in side bar

This commit is contained in:
Florine W. Dekker 2021-04-23 14:27:59 +02:00
parent f7d16fb519
commit c1d8a356bd
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
3 changed files with 65 additions and 50 deletions

View File

@ -1,6 +1,6 @@
{
"name": "about",
"version": "1.2.0",
"version": "1.2.1",
"description": "All about Felix W. Dekker",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",

View File

@ -28,57 +28,73 @@
<main> <!-- Do not hide without JavaScript -->
<div id="nav"></div>
<div id="contents">
<div id="header"></div>
<section class="container">
<p>
Hiya!
If you want you can <a href="https://fwdkr.co/cv">check my resume</a>&nbsp;(PDF).
</p>
<div class="row">
<div class="column column-25">
<h3>F.W.&nbsp;Dekker</h3>
<p>
<b>Email</b><br />
<kbd>felix@&lt;<a href="https://fwdekker.com/">domain</a>&gt;</kbd>,
<kbd>f.w.dekker@&lt;<a href="https://tudelft.nl/">affiliation</a>&gt;</kbd>
</p>
<p>
<b>PGP key</b><br />
<a href="https://fwdkr.co/pgp">
<samp>1729 EB23 E77D 56F8 DC53 A4EE <b>B1B5 67AF 58D6 EE0F</b></samp>
</a>
</p>
<p>
<b>Resume</b><br />
<a href="https://fwdkr.co/cv">PDF</a>
</p>
</div>
<div class="column column-75">
<h3>Research</h3>
<p>
I'm currently a PhD candidate at TU Delft in the Computational Privacy group, in the area
of cybersecurity.
My research is on using multi-party computation to achieve privacy in the federated learning
setting.
Check my profile on
<a href="https://scholar.google.com/citations?user=dLqv1UEAAAAJ">&#9099;&nbsp;Google Scholar</a>,
<a href="https://orcid.org/0000-0002-0506-7365">&#9099;&nbsp;ORCID</a>, or
<a href="https://research.tudelft.nl/en/persons/fw-dekker-2">&#9099;&nbsp;TU Delft</a> for an
up-to-date list of publications.
</p>
<h3>Research</h3>
<p>
I'm currently a PhD candidate at TU Delft in the Computational Privacy group.
My research is on using multi-party computation to achieve privacy in the federated learning setting.
Check my profile on
<a href="https://scholar.google.com/citations?user=dLqv1UEAAAAJ">&#9099;&nbsp;Google Scholar</a>,
<a href="https://orcid.org/0000-0002-0506-7365">&#9099;&nbsp;ORCID</a>, or
<a href="https://research.tudelft.nl/en/persons/fw-dekker-2">&#9099;&nbsp;TU Delft</a> for an up-to-date
list of publications.
</p>
<h3>Programming</h3>
<p>
I do a bunch of programming in my spare time.
I prefer programming in Kotlin, but I do lots of stuff in JavaScript as well because web tools
are just way more accessible;
nobody is going to download your untrusted distribution of Minesweeper if there's already a
<a href="https://fwdekker.com/tools/minesweeper/">perfectly good browser version</a>.
I sometimes use Python for some quick and dirty data processing.
</p>
<p>
Most of my web-related projects can be found on my self-hosted
<a href="https://git.fwdekker.com/">Gitea</a>&nbsp;instance.
Other projects are usually hosted over at
<a href="https://github.com/FWDekker/">&#9099;&nbsp;GitHub</a>.
My most popular project is probably the
<a href="https://github.com/FWDekker/intellij-randomness">&#9099;&nbsp;Randomness plugin</a> for
JetBrains&nbsp;IDEs.
</p>
<h3>Programming</h3>
<p>
I do a bunch of programming in my spare time.
I prefer programming in Kotlin, but I do lots of stuff in JavaScript as well because web tools are just
way more accessible;
nobody is going to download your untrusted distribution of Minesweeper if there's already a
<a href="https://fwdekker.com/tools/minesweeper/">perfectly good browser version</a>.
I sometimes use Python for some quick and dirty data processing.
</p>
<p>
Most of my web-related projects can be found on my self-hosted
<a href="https://git.fwdekker.com/">Gitea</a> instance.
Other projects are usually hosted over at
<a href="https://github.com/FWDekker/">&#9099;&nbsp;GitHub</a>.
My most popular project is probably the
<a href="https://github.com/FWDekker/intellij-randomness">&#9099;&nbsp;Randomness plugin</a> for
IntelliJ&nbsp;IDEs.
</p>
<h3>Contact</h3>
<p>
If you have a question or whatever about a project of mine, feel free to open an issue on the relevant
repository.
</p>
<p>
You can also email me at <kbd>felix</kbd> at this very domain.
My PGP key is hosted at the web key directory on this domain.
That is, if your email client supports PGP it will probably find it automatically for you.
If it doesn't, use GPG's <code>--locate-key</code> command to find the key.
The fingerprint is.
</p>
<pre><code>1729 EB23 E77D 56F8 DC53 A4EE <b>B1B5 67AF 58D6 EE0F</b></code></pre>
<h3>Contact</h3>
<p>
If you have a question or whatever about a project of mine, feel free to open an issue on the
relevant repository.
</p>
<p>
You can also email me at <kbd>felix</kbd> at this very domain.
My PGP key is hosted in the web key directory on this domain, but your email client will
probably find it for you automatically.
If it doesn't, use GPG's <samp>--locate-key</samp> function or grab the key directly from the
link above.
</p>
</div>
</div>
</section>
</div>
<div id="footer"></div>

View File

@ -4,7 +4,6 @@ const {$, doAfterLoad, footer, header, nav, showPage} = window.fwdekker;
doAfterLoad(() => {
$("#nav").appendChild(nav("/About/"));
$("#header").appendChild(header({title: "About"}));
$("#footer").appendChild(footer({
vcsURL: "https://git.fwdekker.com/FWDekker/about/",
version: "v%%VERSION_NUMBER%%"