From 775e69fea981b1cec03cc8206d69abed9b824df5 Mon Sep 17 00:00:00 2001 From: Adam Stück Date: Mon, 22 May 2023 17:31:07 +0200 Subject: New file structure index.html some-post/ --> index.html --- build/2023-02-log/index.html | 92 ++++++++++++++++++ build/donate/index.html | 43 ++++++++ build/favicon.ico | Bin 0 -> 46927 bytes build/index.html | 82 ++++++++++++++++ build/js/showhide.js | 27 ++++++ build/main.css | 86 ++++++++++++++++ build/projects/index.html | 44 +++++++++ build/resume-da/index.html | 226 +++++++++++++++++++++++++++++++++++++++++++ build/resume/index.html | 226 +++++++++++++++++++++++++++++++++++++++++++ build/rss.xml | 70 ++++++++++++++ build/services/index.html | 85 ++++++++++++++++ build/sitemap.xml | 15 +++ build/uses/index.html | 166 +++++++++++++++++++++++++++++++ 13 files changed, 1162 insertions(+) create mode 100644 build/2023-02-log/index.html create mode 100644 build/donate/index.html create mode 100644 build/favicon.ico create mode 100644 build/index.html create mode 100644 build/js/showhide.js create mode 100644 build/main.css create mode 100644 build/projects/index.html create mode 100644 build/resume-da/index.html create mode 100644 build/resume/index.html create mode 100644 build/rss.xml create mode 100644 build/services/index.html create mode 100644 build/sitemap.xml create mode 100644 build/uses/index.html (limited to 'build') diff --git a/build/2023-02-log/index.html b/build/2023-02-log/index.html new file mode 100644 index 0000000..8f9d5c8 --- /dev/null +++ b/build/2023-02-log/index.html @@ -0,0 +1,92 @@ + + + + + + Status update, February 2023 + + + + + +
+ +
+

Status update, February 2023

+ +

2023-03-04

+ +

Hello world!

+ +

Hi, welcome to my website.

+ +

This is probably your first time seeing it, but it just went through a +major makeover. I’ve archived the old +design if +you want to check it out.

+ +

The new design is blazingly fast, light as a feather, and anyone can navigate +it.

+ +

You’ll find my contact details and important links on the homepage. +There are links to more information about myself and this website, projects I’m +working on, and my RSS feed at the top. +I’ve included my PGP key if you wish to send me mail privately.

+ +

This redesign was heavily inspired by bt.ht and +drewdevault.com.

+ +

Game dev is back on the menu!

+ +

The CompSci department at my uni hosts an annual LAN party with tournaments +in the usual titles (csgo, lol, trackmania, etc). It would be amazing to get arena to a playable, +fun state, and have a LAN tournament to really put it to the test.

+ +

I want to start working on my game again, and I want to it to be playable in +time for the LAN party.

+ +

I have about 5 weeks to make it happen.

+ +

What to expect

+ +

I have a few technical blog posts planned, but I’ll also just be posting +about anything I that interests me.

+ +

I think I’ll start doing monthly status updates (like this post), much like +the engineers at +sourcehut.org. +I’d also like to start posting (weekly) development logs for arena.

+ +

Finally, I have a lot more services I need to start hosting before I really +call this my platform. You can see the list of publicly available +services by clicking the link at the top of the page. For now, I’m +prioritising hosting the services that I use regularly.

+ +

That’s all for now!

+ +

Book club

+ +

inspired by 100rabbits

+ +

I’m reading A Voyage for Madmen by Peter Nichols.

+ +
+ + diff --git a/build/donate/index.html b/build/donate/index.html new file mode 100644 index 0000000..16bfefe --- /dev/null +++ b/build/donate/index.html @@ -0,0 +1,43 @@ + + + + + + Donate + + + + + +
+ +
+

Donate

+ +

Help keep the server running.

+ +

Hetzner Referral

+ +

Use my referral link, and get 20 EUR +of Hetzner Cloud credits for free.

+ +
+ + diff --git a/build/favicon.ico b/build/favicon.ico new file mode 100644 index 0000000..d537e87 Binary files /dev/null and b/build/favicon.ico differ diff --git a/build/index.html b/build/index.html new file mode 100644 index 0000000..a26195b --- /dev/null +++ b/build/index.html @@ -0,0 +1,82 @@ + + + + + + Adam Stück’s blog + + + + + +
+ +
+

Adam Stück’s blog

+ +

+ +

Passionate about open source software, usability, performance, privacy, and +minimal design.

+ +

Interested in sustainability, game dev, technology, and living life.

+ +

Student programmer @ E-Komplet.

+ + + + + + +
+ + + +

2023-03-04
Status update, February 2023

+ +
+ + diff --git a/build/js/showhide.js b/build/js/showhide.js new file mode 100644 index 0000000..afc9c06 --- /dev/null +++ b/build/js/showhide.js @@ -0,0 +1,27 @@ +/* +http://www.tutorialhelpdesk.com/tutorials/web-development/javascript/how-to-show-hide-a-dhtml-div-using-onclick()-event.html +*/ + +function ShowHide(elementId) +{ + var element = document.getElementById(elementId); + if(element.style.display != "block") + { + element.style.display = "block"; + } + else + { + element.style.display = "none"; + } +} +function UpdateText(element) +{ + if(element.innerHTML.indexOf("Hide") == -1) + { + element.innerHTML = "Hide Abstract"; + } + else + { + element.innerHTML = "Abstract"; + } +} diff --git a/build/main.css b/build/main.css new file mode 100644 index 0000000..3291e54 --- /dev/null +++ b/build/main.css @@ -0,0 +1,86 @@ +* { + box-sizing: border-box; +} +body { + font-family: sans-serif; + line-height: 1.45; + margin: 0 auto; + max-width: 45rem; + padding: 0 15px; +} +hr { + background-color: grey; + border: 0; + height: 1px; + margin: 2rem 0; +} +nav { + margin: 2rem 0 0; +} +main p { + margin: 1rem; +} +h1,h2,h3,h4 { + margin: 2rem 0 0; +} +h1 { + margin-bottom: 0.5rem; +} +h1 + p { + margin: 0 0 1rem; +} +img { + border: 1px solid lightgrey; + height: auto; + max-width: 100%; + width: auto; +} +blockquote { + background-color: linen; + border-left: 4px solid lightcoral; + margin: 2rem 0; + padding: 10px; +} +blockquote p { + margin: 0; +} +figure { + margin: 2rem 0; +} +figcaption { + color: slategrey; +} +code { + background: #eee; + padding: 0.3rem; + tab-size: 4; +} +pre { + background: #eee; +} +pre code { + background: none; + display: block; + overflow-x: auto; + padding: 0.3rem 0.6rem; +} +table { + border-collapse: collapse; + margin: 2rem 0; + text-align: left; + width: 100%; +} +tr { + border-bottom: 1px solid lightgrey; +} +tr:nth-of-type(odd) td { + background-color: #f8f8f8; +} +th,td { + padding: 6px; +} +footer { + border-top: 1px dashed grey; + margin: 2rem 0; + padding: 1rem 15px; +} diff --git a/build/projects/index.html b/build/projects/index.html new file mode 100644 index 0000000..ebfcb02 --- /dev/null +++ b/build/projects/index.html @@ -0,0 +1,44 @@ + + + + + + Projects + + + + + +
+ +
+

Projects

+ +

Active Projects

+ + + +
+ + diff --git a/build/resume-da/index.html b/build/resume-da/index.html new file mode 100644 index 0000000..be9394b --- /dev/null +++ b/build/resume-da/index.html @@ -0,0 +1,226 @@ + + + + + + Adam Stück + + + + + +
+ +
+ + +

[ English / Dansk ]

+ +

Adam Stück

+ +

Studenterprogrammør / Fritids sysadmin
Aalborg, Danmark
adam@adast.dk

+ +
+ +

Erfaring

+ +

Linux, Sysadmin, Self-hosting (fritid)

+ +

2021-nu

+ + + +

Studenterprogrammør hos E-Komplet

+ +

2020-nu / Aalborg, Danmark On-site & remote

+ + + +

Softwareudvikler hos OK Snacks A/S

+ +

august 2019 / Ikast-Brande, Danmark

+ + + +

Junior Business Analyst hos Arise

+ +

juni 2017 - juli 2017 / Limerick, Irland

+ + + +

Skolepraktik hos Arise

+ +

2015 / Limerick, Irland

+ + + +

Coding, Web Dev, Game Dev (fritid)

+ +

2014-nu

+ + + +

Uddannelse

+ +

Aalborg Universitet

+ +

2019-2023 / Aalborg, Danmark

+ + + +

Publikationer

+ +

[1] Potency-Based Heuristic Search with Randomness for Explicit Model Checking
+by E.G.Henriksen, A.M. Khorsid, E. Nielsen, Th. Risager, J. Srba, A.M. Stück, S. Sørensen
+In Proceedings of the 29th International SPIN Symposium on Model Checking of Software (SPIN’23), volume 13872 of LNCS, pages 180–187, Springer-Verlag, 2023.
+PDF +©Springer-VerlagEEBibTexAbstract

+ + + +

Konkurrencer

+ + + +

Sprog

+ + + +
+
Engelsk
+
Flydende skriftligt og mundtligt
+
Dansk
+
Flydende skriftligt og mundtligt
+
Tysk
+
Begrænset arbejdskompetence
+
Irsk (Gælisk)
+
Begrænset arbejdskompetence
+
+ +

Kompetencer

+ +

Værktøjer og applikationer, jeg har eksperterfaring med:

+ + + +

Jeg er dygtig til:

+ + + +

Jeg har lidt erfaring med:

+ + + +

Interesser

+ + + +

Andet: spiludvikling, vandring/camping, boksning, guitar.

+ +

Referencer

+ +

Udleveres ved henvendelse.

+ +
+ + diff --git a/build/resume/index.html b/build/resume/index.html new file mode 100644 index 0000000..508db6e --- /dev/null +++ b/build/resume/index.html @@ -0,0 +1,226 @@ + + + + + + Adam Stück + + + + + +
+ +
+ + +

[ English / Dansk ]

+ +

Adam Stück

+ +

Student programmer / Hobbyist sysadmin
Aalborg, Denmark
adam@adast.dk

+ +
+ +

Experience

+ +

Linux, Sysadmin, Self-hosting (spare time)

+ +

2021-Now

+ + + +

Student Programmer at E-Komplet

+ +

2020-Now / Aalborg, Denmark On-site & remote

+ + + +

Software Developer at OK Snacks A/S

+ +

August 2019 / Ikast-Brande, Denmark

+ + + +

Junior Business Analyst at Arise

+ +

June 2017 - July 2017 / Limerick, Ireland

+ + + +

Work Placement at Arise

+ +

2015 / Limerick, Ireland

+ + + +

Coding, Web Dev, Game Dev (spare time)

+ +

2014-Now

+ + + +

Education

+ +

Aalborg University

+ +

2019-2023 / Aalborg, Denmark

+ + + +

Publications

+ +

[1] Potency-Based Heuristic Search with Randomness for Explicit Model Checking
+by E.G.Henriksen, A.M. Khorsid, E. Nielsen, Th. Risager, J. Srba, A.M. Stück, S. Sørensen
+In Proceedings of the 29th International SPIN Symposium on Model Checking of Software (SPIN’23), volume 13872 of LNCS, pages 180–187, Springer-Verlag, 2023.
+PDF +©Springer-VerlagEEBibTexAbstract

+ + + +

Competitions

+ + + +

Languages

+ + + +
+
English
+
Native writing and speaking
+
Danish
+
Fluent writing and speaking
+
German
+
Rusty
+
Irish
+
Rusty
+
+ +

Tools

+ +

A selection of tools and applications I have expert experience using:

+ + + +

I’m proficient with:

+ + + +

I have some experience with:

+ + + +

Interests

+ + + +

Other: game dev, hiking/camping, boxing, guitar.

+ +

References

+ +

Available upon request.

+ +
+ + diff --git a/build/rss.xml b/build/rss.xml new file mode 100644 index 0000000..928b896 --- /dev/null +++ b/build/rss.xml @@ -0,0 +1,70 @@ + + + + Adam Stück's blog + https://adast.dk/rss.xml + Recent content in Adam Stück's blog + en-us + + + + + +Status update, February 2023 +https://adast.dk/2023-02-log +https://adast.dk/2023-02-log +Sat, 04 Mar 2023 19:56:12 +0100 +Hi, welcome to my website.

+ +

This is probably your first time seeing it, but it just went through a +major makeover. I’ve archived the old +design if +you want to check it out.

+ +

The new design is blazingly fast, light as a feather, and anyone can navigate it.

+ +

You’ll find my contact details and important links on the homepage. +There are links to more information about myself and this website, projects I’m +working on, and my RSS feed at the top. +I’ve included my PGP key if you wish to send me mail privately.

+ +

This redesign was heavily inspired by bt.ht and +drewdevault.com.

+ +

Game dev is back on the menu!

+ +

The CompSci department at my uni hosts an annual LAN party with tournaments +in the usual titles (csgo, lol, trackmania, etc). It would be amazing to get arena to a playable, +fun state, and have a LAN tournament to really put it to the test.

+ +

I want to start working on my game again, and I want to it to be playable in +time for the LAN party.

+ +

I have about 5 weeks to make it happen.

+ +

What to expect

+ +

I have a few technical blog posts planned, but I’ll also just be posting +about anything I that interests me.

+ +

I think I’ll start doing monthly status updates (like this post), much like +the engineers at +sourcehut.org. +I’d also like to start posting (weekly) development logs for arena.

+ +

Finally, I have a lot more services I need to start hosting before I really +call this my platform. You can see the list of publicly available +services by clicking the link at the top of the page. For now, I’m +prioritising hosting the services that I use regularly.

+ +

That’s all for now!

+ +

Book club

+ +

inspired by 100rabbits

+ +

I’m reading A Voyage for Madmen by Peter Nichols.

]]>
+
+ +
+
diff --git a/build/services/index.html b/build/services/index.html new file mode 100644 index 0000000..757f848 --- /dev/null +++ b/build/services/index.html @@ -0,0 +1,85 @@ + + + + + + Services + + + + + +
+ +
+

Services

+ +

All services are using their default configs and logging.
+Everything is currently hosted on my Hetzner VPS without any CDN.

+ +

Public

+ + + + + + + + + + + + + + + + + + + +
ServiceInstance
SearXNGsearch.adast.dk
PeerTubetv.adast.dk
+ +

Private

+ + + + + + + + + + + + + + + + + + + +
ServiceInstance
Nextcloudcloud.adast.dk
Snikket (XMPP)chat.adast.xyz
+ +

Other: Wireguard (pivpn), Mail (emailwiz)

+ +
+ + diff --git a/build/sitemap.xml b/build/sitemap.xml new file mode 100644 index 0000000..ddb1b75 --- /dev/null +++ b/build/sitemap.xml @@ -0,0 +1,15 @@ + + +https://adast.dk/resume/2023-05-221.0 +https://adast.dk/resume-da/2023-05-221.0 +https://adast.dk/uses/2023-05-221.0 +https://adast.dk/donate/2023-05-221.0 +https://adast.dk/2023-02-log/2023-05-221.0 +https://adast.dk/projects/2023-05-221.0 +https://adast.dk/services/2023-05-221.0 +https://adast.dk/index.html2023-05-221.0 + diff --git a/build/uses/index.html b/build/uses/index.html new file mode 100644 index 0000000..115f9d6 --- /dev/null +++ b/build/uses/index.html @@ -0,0 +1,166 @@ + + + + + + Things I use + + + + + +
+ +
+

Things I use

+ +

This page contains a somewhat up-to-date listing of hardware and software that I currently use. +Seeing similar pages on other people’s personal websites have proved quite valuable to me, so I figured I would do the same!

+ +

Services

+ +

I’m proud to support open source products and privacy-respecting communities. The list is limited right now, but the plan is to expand this over time.

+ + + + + + + + + + + + + + + +
ServiceCost/month
sourcehut
Open source code hosting with minimalist design and function.
$2.00
+ +

Machines

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
oozDesktop
novaLaptop
pocoPhone
adast.xyzHetzner VPS
+ + + +

Accessories

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
crkbdSplit, columnar-staggered, ortholinear keyboard
BLON BL-03Cheap and cheerful IEMs
Drop HD58XOpen-backed headphones
Dell U2520D25”, 1440p, good colours, productivity
+ +

Software

+ + + +

For more, have a look at my dotfiles.

+ +
+ + -- cgit v1.2.3-70-g09d2