Good Conference Talks aren’t just Success Stories

Recently, my colleagues and I attended the World of Data conference. (The conference is an event in the data and analytics industry, where latest trends, technologies etc are presented in workshops and talks/presentations. It’s pretty nice to be honest!)

Continue reading Good Conference Talks aren’t just Success Stories

Good bye posting on LinkedIn?

“Why am I posting on LinkedIn?”

That question recently just came to my mind.

My inital idea was to change from LinkIn posting to posting on another, work/IT related Mastodon-account – just for the sake of getting off a commercial platform. But then I started asking myself the “whys”

Continue reading Good bye posting on LinkedIn?

How to filter / hide / ignore News in an RSS feed

Recently I realized that there are certain topics in my news / RSS feed that I ALWAYS scroll over. I’m just not interested in them. Like news about certain brands, manufacturer or products. I wondered, if there is no easy way to simply NOT see them in my feed. I mean I filter by only looking at keywords in the title. Really super simple.

Continue reading How to filter / hide / ignore News in an RSS feed

How to fix: Jabra Elite 75T volume too low / decreasing

Problem: Recently I faced the issue with my Jabra Elite InEars that while I was using them, the volume started to continually decrease until I had to max out the volume on the phone. Yet the sound was still barely loud enough to hear it. After not using them for a while, sound was okay again (still quiet but better) until volume started to decrease again while using.

The internet is FULL of advice about Bluetooth settings, resetting the phone, entering developer mode etc. Yet it was ways easier.

Continue reading How to fix: Jabra Elite 75T volume too low / decreasing

How to Exclude OpenAI GPTBot from future crawling a website

In order to tell OpenAI to stop crawling a website and thus not use the content for training GPT, OpenAI now supports to disallow GPTBot from accessing your site.

The Information can be found on the GPTBot – OpenAI API website:

Completely disallow GPTBot:

User-agent: GPTBot
Disallow: /

Allow/disallow certain parts of a website:

User-agent: GPTBot
Allow: /directory-1/
Disallow: /directory-2/

For WordPress sites, I can recommend the Virtual Robots.txt – plugin.

How to fix: Jabra Elite 75T different volume of in-Ear headphones

I often just use one of the in-ears of my Jabra 75T. Recently I figured out that when I use both in-ears headphones, the right one was significantly louder than the left one. After a quick hearing test, I was convinced that it is not a problem with my hearing but with one of the headphones.

After some back and forth, the easiest solution was:
Simply hard reset the headphones in 2 simple steps.
If resetting does NOT solve the issue permanently: Try cleaning a specific part!

Continue reading How to fix: Jabra Elite 75T different volume of in-Ear headphones

An advantage of remote interviews

There have been plenty of articles and comments about the (dis)advantages of home office vs in-office scenarios over the past two years. One critical aspect of home-office is definitely about creating a personal relationship with people that you never meet in person.

One situation where a personal relationship is quite important is an interview with candidates (be it internal or external). Besides the technical expertise you also want to know whether or not the candidate is a fit for the team. In the past 2+ years, we interviewed dozens of people for positions in the team. I say “we” because we usually are 2-3 internals holding different positions in the team (dev, ops, product owner, …) interviewing the new candidate. And in the past 2+ years we did all those interviews remotely via video-conferencing.

Continue reading An advantage of remote interviews

My critical view about “the Metaverse”

Recently the term “Metaverse” is across like in every IT related news. Noone really knows what it is but it seems to be the hot shit you have to be into! And it seems to be THE ultimate solution for so many odd problems AND a totally new business market!

The “metaverse” topic has followed me now a couple of months and I had a couple of discussions already about my critical view about the topic. And if it was worth discussing so often – it might be worth writing it down as well. 😀

Continue reading My critical view about “the Metaverse”

How to change File Creation time using Windows Powershell

I don’t want to blame the time shift 2x a year. At least as long as I do not forget to change the time on my camera as well! As I am doing most of my photography on hikes and geo tag them afterwards, It makes quite a difference if the file creation time is right or wrong.

This year I forgot to change it on the camera and needed to bulk-change the file time later. Luckily this is pretty easy using Windows Powershell and the Windows PowerShell ISE (Integrated Scripting Environment):

$files = Get-ChildItem "C:\Users\[....]\*.arw"
foreach ($f in $files){
    $d1 = [System.IO.File]::GetCreationTime($f.FullName)
    $d2 = $d1.addHours(1)
	[System.IO.File]::SetCreationTime($f.FullName, $d2)
    echo $d1 
    echo $d2
    echo ---
}

Just copy it into the ISE, execute, done.