Frank Schwidom's Avatar

Frank Schwidom

@frank-schwidom

43
Followers
48
Following
38
Posts
01.12.2025
Joined
Posts Following

Latest posts by Frank Schwidom @frank-schwidom

Video thumbnail

I am proud to present the clipboardstealer, written in #rust (which is a clipboardmanager for the #terminal in an #X11 / #xwayland environment in #linux). It can be found at crates.io/crates/clipb... . Let me know what you think. #clipboardmanager

08.03.2026 21:34 👍 0 🔁 0 💬 0 📌 0
Video thumbnail

Let's have some fun with #fft ( #fastfouriertransform ) in the programming language #R :

22.01.2026 22:23 👍 1 🔁 0 💬 0 📌 0
It's About Time (feat. Joy Rose)
It's About Time (feat. Joy Rose) YouTube video by Incognito - Topic

www.youtube.com/watch?v=pHnM...

21.01.2026 18:31 👍 0 🔁 0 💬 0 📌 0
The Andromeda Boogie | Future Funk, Nu Disco, Retro Futurism, Jazz, Lo-fi (Full Album)
The Andromeda Boogie | Future Funk, Nu Disco, Retro Futurism, Jazz, Lo-fi (Full Album) YouTube video by A&C Music

Between all this #AdventOfCode and #projecteuler stuff we must not forget also to chill out a bit.

www.youtube.com/watch?v=TCIQ...

29.12.2025 02:15 👍 3 🔁 0 💬 0 📌 0
#68 Magic 5-gon Ring - Project Euler A website dedicated to the fascinating world of mathematics and programming

#AdventOfCode #ProjectEuler I just finished projecteuler.net/problem=68

29.12.2025 01:45 👍 2 🔁 0 💬 0 📌 0
Take a drone flight through Art Basel Miami Beach 2025
Take a drone flight through Art Basel Miami Beach 2025 YouTube video by Art Basel

www.youtube.com/watch?v=W4_6...

24.12.2025 11:52 👍 1 🔁 0 💬 0 📌 0

This stuff was completely new to me. And it was the hardest task for me in 12/2025 so far. But I learned a lot. Also about continued fractions. It is amazing what others already discovered hundreds of years ago.

23.12.2025 22:54 👍 1 🔁 0 💬 1 📌 0
#66 Diophantine Equation - Project Euler A website dedicated to the fascinating world of mathematics and programming

#AdventOfCode #ProjectEuler I just finished projecteuler.net/problem=66

23.12.2025 19:39 👍 2 🔁 0 💬 1 📌 0
Bluey - Back Here Again
Bluey - Back Here Again YouTube video by Stereophile1isback

www.youtube.com/watch?v=ddR4...

16.12.2025 21:10 👍 0 🔁 0 💬 0 📌 0

youtube.com/watch?v=EwOP...

18.01.2025 21:53 👍 1 🔁 1 💬 0 📌 0
O. C. O. E. - Melvin Lee Davis
O. C. O. E. - Melvin Lee Davis YouTube video by MLDBass

www.youtube.com/watch?v=aMbo...

16.12.2025 01:27 👍 0 🔁 0 💬 0 📌 0

One Idea has maybe a chance under certain circumstances. You calculate the density ( tiles to set / area) and by constructing you try to keep the density consistent over the construction steps. This reduces the search space a lot.

16.12.2025 01:01 👍 0 🔁 0 💬 1 📌 0

Also a good approach is the tetris approach: bsky.app/profile/fran...

16.12.2025 00:54 👍 1 🔁 0 💬 1 📌 0

I wasted 2 days in bin packing research before I saw the same solution like you. But I think some ideas I've found aren't bad. For instance what about looking for pairs of packed shapes and an appropriate estimation of the density and then trying to combine the packed shapes further recursively.

16.12.2025 00:47 👍 0 🔁 0 💬 1 📌 0
Nights Over Egypt - Melvin Lee Davis
Nights Over Egypt - Melvin Lee Davis YouTube video by MLDBass

Now that the #AdventOfCode is over, its time to chill out a little bit.

www.youtube.com/watch?v=YTDD...

16.12.2025 00:09 👍 1 🔁 0 💬 0 📌 0
Video thumbnail

#AdventOfCode adventofcode.com/2025/day/12 the aftermath

15.12.2025 01:43 👍 17 🔁 0 💬 3 📌 1
Advent of Code 2025

I just completed all 12 days of Advent of Code 2025! #AdventOfCode adventofcode.com

14.12.2025 23:11 👍 11 🔁 1 💬 1 📌 0
Day 11 - Advent of Code 2025

I just completed "Reactor" - Day 11 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/11

11.12.2025 18:21 👍 6 🔁 0 💬 0 📌 0

... And allowed me to find the minimum allowed SUM.

11.12.2025 02:50 👍 1 🔁 0 💬 0 📌 0

That worked. But the interesting part was: I was able to use the precalculated SUM - range from clpfd to find the lowest number where a Z3 calculation was no longer unsat. Even when clpfd was not able to complete the formula as a whole it was able to restrict the allowed range of the SUM variable.

11.12.2025 02:47 👍 1 🔁 0 💬 1 📌 0

Then I thought I switch to a solver in Swi Prolog : clpfd. The example data were processed even faster but only some of the input data I was able to process. Some were just too slow. After a while I decided to connect via the janus library from prolog to python and use Z3 there.

11.12.2025 02:42 👍 0 🔁 0 💬 1 📌 0
Day 10 - Advent of Code 2025

Some words to #AdventOfCode adventofcode.com/2025/day/10 Part 2.

First I tried to use a prolog typical BFS by increasing a depth variable and limiting all sub calculations by creating a sum which is that depth. It worked after enabling tabling. But it wasn't enough for tie input data. ...

11.12.2025 02:39 👍 8 🔁 0 💬 2 📌 0
Day 10 - Advent of Code 2025

I just completed "Factory" - Day 10 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/10

11.12.2025 01:24 👍 2 🔁 0 💬 0 📌 0

I solved the task of day 8 in prolog and after that I wrote the start data and some data during the calculation in separate files which I then read into an R program. The visualization in R is made with the rgl library. Thanks for the kudos.

10.12.2025 00:11 👍 0 🔁 0 💬 0 📌 0
Video thumbnail

#AdventOfCode adventofcode.com/2025/day/8 : the aftermath

09.12.2025 23:50 👍 17 🔁 0 💬 2 📌 0
Day 9 - Advent of Code 2025

I just completed "Movie Theater" - Day 9 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/9

09.12.2025 21:45 👍 6 🔁 0 💬 0 📌 0
Day 8 - Advent of Code 2025

I just completed "Playground" - Day 8 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/8

08.12.2025 23:05 👍 7 🔁 0 💬 0 📌 0
GitHub - schwidom/AdventOfCode Contribute to schwidom/AdventOfCode development by creating an account on GitHub.

And here is all the #AdventOfCode - Code : github.com/schwidom/Adv...

07.12.2025 12:46 👍 9 🔁 0 💬 0 📌 0
Day 7 - Advent of Code 2025

I just completed "Laboratories" - Day 7 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/7

07.12.2025 12:25 👍 10 🔁 0 💬 0 📌 0
Day 6 - Advent of Code 2025

I just completed "Trash Compactor" - Day 6 - Advent of Code 2025 #AdventOfCode adventofcode.com/2025/day/6

06.12.2025 16:47 👍 8 🔁 0 💬 0 📌 0