<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>René's Blog</title><link>https://filipre.github.io/</link><description>Recent content on René's Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 24 Apr 2025 21:58:25 +0200</lastBuildDate><atom:link href="https://filipre.github.io/index.xml" rel="self" type="application/rss+xml"/><item><title>Getting a Royal Flush in Video Poker</title><link>https://filipre.github.io/posts/royal-flush-in-video-poker/</link><pubDate>Sun, 21 Jan 2018 00:00:00 +0000</pubDate><guid>https://filipre.github.io/posts/royal-flush-in-video-poker/</guid><description>Some months ago I came across the Twitch streamer Joshimuz who has quite an interesting project: He tries to play through GTA San Andreas by solving everything. Not only he tries to achieve 100 % but he also set his own goals and challenges. At the same time, he gives insights into a lot of (speed running) techniques, interesting bugs and a little bit of game development. If you like content like that, you should definitely check out his video series True 100%+ on Youtube.</description></item><item><title>Level 74 Is Impossible</title><link>https://filipre.github.io/posts/level-74-is-impossible/</link><pubDate>Mon, 04 Mar 2024 23:02:39 +0100</pubDate><guid>https://filipre.github.io/posts/level-74-is-impossible/</guid><description>A while ago I downloaded a simple puzzle game called Water Sorting Puzzle where you have multiple flasks with different colors of liquid and you have to somehow sort them to beat a level. The nice thing about this app is that it&amp;rsquo;s completly ad free - unlike many other apps with the same game concept. I was playing it until level 74 where I hit a wall. Feel free to try it out yourself:</description></item><item><title>Calculating Prime Numbers in SQL</title><link>https://filipre.github.io/posts/calculating-primes-in-sql/</link><pubDate>Sun, 28 Jan 2024 21:51:39 +0100</pubDate><guid>https://filipre.github.io/posts/calculating-primes-in-sql/</guid><description>Ever needed to calculate prime numbers in a SQL database? No? Here is the query anyways:
with recursive primes(i, d) as ( select generate_series(2, 10000), 2 union select i, (select min(i) from primes where i &amp;gt; d) from primes where d &amp;lt;= (select sqrt(max(i)) from primes) and (i &amp;lt;= d or mod(i, d) != 0) ) select i from primes where d = (select max(d) from primes) order by primes.i ASC You can try it out here.</description></item><item><title>Master's Thesis: Asynchronous Optimization Algorithms</title><link>https://filipre.github.io/posts/masters-thesis/</link><pubDate>Fri, 13 Mar 2020 00:00:00 +0000</pubDate><guid>https://filipre.github.io/posts/masters-thesis/</guid><description>Today, I finished my master&amp;rsquo;s thesis with the Computer Vision chair under Prof. Dr. Daniel Cremers. I surveyed several distributed, asynchronous optimization algorithms, gave insights into their convergence theory and performed experiments on the &amp;ldquo;delayed&amp;rdquo; versions of Stochastic Gradient Descent (SGD) and of the Alternating Direction Method of Multipliers algorithm (ADMM). You can find my thesis and its abstract below.
Download
Abstract Recently, distributed optimization became more and more popular due to the increase in available training data and available computing power.</description></item><item><title>Separating the Foreground and Background of a Video</title><link>https://filipre.github.io/posts/separating-foreground-and-background/</link><pubDate>Sun, 17 Mar 2019 00:00:00 +0000</pubDate><guid>https://filipre.github.io/posts/separating-foreground-and-background/</guid><description>Currently, I am taking a class called &amp;ldquo;Convex Optimization for Machine Learning &amp;amp; Computer Vision&amp;rdquo;. Even though the lectures are quite theoretical, the programming homework are not and we do some interesting projects like this one: How would you separate the background and the foreground of a video using optimization?
Most likely, you would somehow make the assumption that the background takes most of the space and stays still while the foreground are all the smaller parts that are moving.</description></item><item><title>My First Post</title><link>https://filipre.github.io/posts/my-first-post/</link><pubDate>Thu, 24 Apr 2025 21:58:25 +0200</pubDate><guid>https://filipre.github.io/posts/my-first-post/</guid><description>Introduction This is bold text, and this is emphasized text.
Visit the Hugo website!
$$ a^2 + b^2 = c^2 $$</description></item><item><title>Hello 2024!</title><link>https://filipre.github.io/posts/hello-2024/</link><pubDate>Mon, 01 Jan 2024 00:00:00 +0000</pubDate><guid>https://filipre.github.io/posts/hello-2024/</guid><description>Hello 2024!</description></item><item><title>Generate Graphs Using GANs</title><link>https://filipre.github.io/posts/generate-graphs-using-gans/</link><pubDate>Tue, 02 Apr 2019 00:00:00 +0000</pubDate><guid>https://filipre.github.io/posts/generate-graphs-using-gans/</guid><description>During the winter semester 2018/2019, I did a &amp;ldquo;guided research&amp;rdquo; project with the Data Analytics and Machine Learning Group chair at TUM. Together with my advisors we modified one of their projects called NetGAN that generates graphs (networks) using Generative Adversarial Networks. You can find my report below.
Download</description></item><item><title>Do Not Blindly Trust Your Data</title><link>https://filipre.github.io/posts/dont-trust-your-data/</link><pubDate>Sun, 05 Aug 2018 00:00:00 +0000</pubDate><guid>https://filipre.github.io/posts/dont-trust-your-data/</guid><description>During my masters, I took the class &amp;ldquo;Data Science Society&amp;rdquo; which is about the ethics on data science. For the final project of this class we had to write an essay on a related topic. This was my attempt.
Download</description></item><item><title>Contact</title><link>https://filipre.github.io/contact/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://filipre.github.io/contact/</guid><description>You can find me on Github and reach me on LinkedIn or by e-mail.
Impressum By German law I am obliged to provide the following information.
Anbieter René Filip c/o Schöppl
Zinnienstraße 21
80939 München
Kontakt E-Mail: renefilip (at) mail (dot) com
Website: https://rene.pub/
Bei redaktionellen Inhalten Verantwortlich nach § 55 Abs.2 RStV
René Filip c/o Schöppl
Zinnienstraße 21
80939 München</description></item></channel></rss>