Learning to Learn

How often did you tell yourself that you want to learn a specific skill and you either stopped while learning it or learned it but never managed to apply it in your workflow? I bet you encountered both situations more than once. In this article, I’ll cover my method on how I learn new skills efficiently and actually remember the stuff I read. In this post, I’d like to share my thoughts and experiences in learning new skilly. While my examples are mostly centered around programming and software development, I’m sure that you can apply the most of the principles in other topics as well. ...

May 3, 2018 · 4 min · Marcel Jurtz

C# - Mastering the Basics - Events and Delegates

Delegates and Events are powerful tools in C#, but they can definitely be confusing in the beginning. Todays article covers the basics of this topic and helps you to get comfortable implementing this approach in your own applications. Delegates I think, the main problem is that delegates are often explained unnecessarily complicated. For this reason, I want to give you an easily understandable introduction. Let’s look at a basic delegate declaration: ...

April 26, 2018 · 8 min · Marcel Jurtz

Bypassing Microsofts Windows Media Creation Tool

Remember when you could simply download official Windows ISO images to burn on DVDs and install? Microsoft now uses this thing called ‘Media Creation Tool’ to download ISOs, but there’s a simple way to bypass this and download actual images. When searching for Windows10 ISOs, you’ll likely find this url, which provides a download for the Media Creation Tool. https://www.microsoft.com/de-de/software-download/windows10 But: there’s also this url https://www.microsoft.com/de-de/software-download/windows10ISO However, when browsing this site on a windows machine, it automatically redirects you to the first of the pages I linked. If you’re not using Windows, you’ll be able to use the second url to download the ISO file directly. To be able to this on Windows as well, you’ll simply need to fake your browsers user agent header to make Microsoft think you’re using Linux (for example). ...

April 9, 2018 · 1 min · Marcel Jurtz

Searching Blogposts in Jekyll

In one of my previous posts, I went over the details why I moved my blog from WordPress to Jekyll. So far, I really appreciate my new system, but I miss one particular feature: searching through my posts. Since Jekyll is a static site generator and does not rely on a database for the posts, you can’t simply add a search functionality like WordPress does. So, I have to work with some frontend / clientside stuff. ...

March 30, 2018 · 2 min · Marcel Jurtz

Sideproject - Sist!

It’s time to announce a new sideproject-launch! Some days ago, I’ve been looking for an app which allowed my to keep track of shopping lists in a simple and fast way. While there are lots of such apps available for Android, all I tested seemed to be overkill for what I really wanted. So I decided to create my own app for this purpose. Besides creating a simple app, my goal was to learn something new while developing the app. I decided to use Androids built in SQLite database to store lists. I’ve been using the database for previous projects, but I did not really care about the implementation. That being said, I wrote the queries all by hand which ended up being pretty messy. ...

March 28, 2018 · 2 min · Marcel Jurtz