Claude improvements

This commit is contained in:
Andras Schmelczer 2026-05-11 07:48:33 +01:00
parent a86940da30
commit df2267a968
79 changed files with 2695 additions and 1162 deletions

View file

@ -8,17 +8,40 @@ const startingPoints = posts
.filter((post) => post.data.audience === 'recruiter-relevant')
.sort((a, b) => (a.data.featuredOrder ?? 99) - (b.data.featuredOrder ?? 99))
.slice(0, 4);
const personJsonLd = {
'@context': 'https://schema.org',
'@type': 'Person',
name: site.name,
url: site.url,
email: `mailto:${site.email}`,
sameAs: [site.github, site.linkedin],
jobTitle: 'Software Engineer',
description:
'Software engineer with an MSc in Computer Science working on AI/ML systems, web platforms, graphics, simulations, and tools.',
};
---
<Page
title="About"
description="A direct summary of my background, technical interests, and best starting points."
jsonLd={personJsonLd}
ogType="profile"
>
<div class="prose">
<p>
I am Andras Schmelczer, a software engineer with an MSc in Computer Science and a
background across AI/ML systems, web platforms, graphics, simulations, and tools. I
like work where architecture, constraints, and product usefulness all matter.
I am Andras Schmelczer, a software engineer with an MSc in Computer Science and more
than six years of professional engineering experience. My work spans AI/ML systems,
web platforms, graphics, simulations, and tools, and I like projects where
architecture, constraints, and product usefulness all matter.
</p>
<p>
I am especially interested in architecting and building large-scale systems,
particularly around AI/ML. In my own time I also return to shaders, data
visualization, simulations, and occasionally microcontrollers. The
<a href="/articles/">articles</a> and <a href="/projects/">projects</a> indexes are the
best way to understand that range; the CV and contact links are here when a direct summary
is more useful.
</p>
</div>
@ -33,8 +56,9 @@ const startingPoints = posts
<dd><a href={`mailto:${site.email}`}>{site.email}</a></dd>
<dt>Links</dt>
<dd>
<a href={site.cv}>CV</a>, <a href={site.github}>GitHub</a>,
<a href={site.linkedin}>LinkedIn</a>
<a href={site.cv} rel="noopener">CV</a>,
<a href={site.github} rel="noopener me">GitHub</a>,
<a href={site.linkedin} rel="noopener me">LinkedIn</a>
</dd>
</dl>
</section>
@ -42,7 +66,7 @@ const startingPoints = posts
<section class="about-section" aria-labelledby="best-starting-points">
<div class="section-heading">
<h2 id="best-starting-points">Best Starting Points</h2>
<a href="/articles/">All articles</a>
<a href="/articles/">Browse all articles →</a>
</div>
<ArticleList posts={startingPoints} />
</section>