-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 2.3 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
layout: default
nav_exclude: true
title: "Optimizely MVP Blog: Episerver, Hangfire, .NET — Stanisław Szołkowski"
description: "Optimizely (Episerver) CMS and Commerce, Hangfire, scheduled jobs, SQL Server performance, and .NET tips from Optimizely MVP Stanisław Szołkowski."
---
<div class="home">
<section class="hero">
<h1>Stanisław Szołkowski — Optimizely MVP & .NET engineer</h1>
<p class="lead">
I write about <strong>Optimizely (Episerver) CMS / Commerce</strong>, <strong>Hangfire</strong>, scheduled jobs, SQL Server performance, and developer setups for .NET teams — ten-plus years of enterprise CMS work, quietly made faster.
</p>
<p>
New here? Start with <a href="{% post_url 2026-02-18-memory-efficient-catalog-traversal-in-optimizely-commerce-part-1-building-the-service %}">Memory-Efficient Catalog Traversal (Part 1)</a>, or browse by topic:
<a href="{{ '/tags/optimizely' | relative_url }}">Optimizely</a>,
<a href="{{ '/tags/hangfire' | relative_url }}">Hangfire</a>,
<a href="{{ '/tags/scheduled-jobs' | relative_url }}">scheduled jobs</a>,
<a href="{{ '/tags/performance' | relative_url }}">performance</a>,
<a href="{{ '/tags/sql-server' | relative_url }}">SQL Server</a>.
More <a href="{{ '/about/' | relative_url }}">about me</a>.
</p>
</section>
<h2 class="page-heading">Latest posts</h2>
{% for post in site.posts limit:5 %}
<hr />
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<span class="post-meta">|</span>
<span class="post-meta">
Tags: {{ post.tags | sort | join: ", " }}
</span>
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
</h3>
{% if post.description %}
<p>{{ post.description }}</p>
{% else %}
{{ post.excerpt }}
{% endif %}
<a href="{{ post.url | relative_url }}">Read: {{ post.title | escape }} →</a>
<hr />
{% endfor %}
<br />
<h2 class="page-heading">Earlier posts</h2>
<ul>
{% for post in site.posts offset:5 %}
<li>
{{ post.date | date: "%B %d, %Y" }}: <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>