Load site modules...
lade...
random avatar

dermojo - Network

Posts Subscribe

Es ist wieder soweit: Deutsche Bahn - genieße das Leben in vollen Zügen! Der Witz kommt nicht an? Der Zug auch nicht.

https://hachyderm.io/@dermojo/11...

Es ist wieder soweit:
Deutsche Bahn - genieße das Leben in vollen Zügen!

Der Witz kommt nicht an? Der Zug auch nicht.

24.4.2025 15:35Es ist wieder soweit: Deutsche Bahn - genieße das Leben in vollen Zügen! Der Witz kommt nicht an? Der Zug auch nicht.
https://hachyderm.io/@dermojo/11...

Another reason to raise your monitor...#catsofmastodon

https://hachyderm.io/@dermojo/11...

Another reason to raise your monitor...

12.4.2025 15:13Another reason to raise your monitor...#catsofmastodon
https://hachyderm.io/@dermojo/11...

Found & fixed the memory leak that "couldn't possibly be the problem we had in production".Thanks to AddressSanitizer and...

https://hachyderm.io/@dermojo/11...

Found & fixed the memory leak that "couldn't possibly be the problem we had in production".

Thanks to AddressSanitizer and heaptrack!

😜🥳

12.3.2025 11:43Found & fixed the memory leak that "couldn't possibly be the problem we had in production".Thanks to AddressSanitizer and...
https://hachyderm.io/@dermojo/11...

Muss mir eine Idee für einen Junggesellinnenabschied patentieren lassen: "Breit to be"

https://hachyderm.io/@dermojo/11...

Muss mir eine Idee für einen Junggesellinnenabschied patentieren lassen:

"Breit to be"

3.3.2025 20:14Muss mir eine Idee für einen Junggesellinnenabschied patentieren lassen: "Breit to be"
https://hachyderm.io/@dermojo/11...

Europe welcomes all American refugees

https://hachyderm.io/@dermojo/11...

Europe welcomes all American refugees

1.3.2025 22:50Europe welcomes all American refugees
https://hachyderm.io/@dermojo/11...

Result of today's debugging session: It wasn't DNS, it was time zones! Dear DB API designers/developers: If you really want to...

https://hachyderm.io/@dermojo/11...

Result of today's debugging session:
It wasn't DNS, it was time zones!

Dear DB API designers/developers: If you really want to return a default value for columns that are NULL, please don't make this value time zone dependent.
Better: return an `optional<>`.

24.2.2025 21:58Result of today's debugging session: It wasn't DNS, it was time zones! Dear DB API designers/developers: If you really want to...
https://hachyderm.io/@dermojo/11...

Für alle, die noch nicht 18 sind und geht ihre Stimme zur Bundestagswahl abgeben möchten: https://www.u18.org/*Die U18-Bundestagswahl wird...

https://hachyderm.io/@dermojo/11...

Für alle, die noch nicht 18 sind und geht ihre Stimme zur Bundestagswahl abgeben möchten:

u18.org/

*Die U18-Bundestagswahl wird trotz der Kurzfristigkeit der vorgezogenen Bundestagswahl durchgeführt und findet vom 7. bis zum 14.02.2025 statt! Damit können alle jungen Menschen unter 18 Jahren ihre Interessen zeigen und ihre Stimme abgeben. Die Ergebnisse von U18 sind nicht repräsentativ, die Wahlen sind ein Projekt politischer Jugendbildung.*

6.2.2025 06:20Für alle, die noch nicht 18 sind und geht ihre Stimme zur Bundestagswahl abgeben möchten: https://www.u18.org/*Die U18-Bundestagswahl wird...
https://hachyderm.io/@dermojo/11...

Diskussion letztens mit einem Junior Entwickler: "Wir haben hier viele Test-VMs mit Kundendaten. Du kannst für erste Tests auch eine...

https://hachyderm.io/@dermojo/11...

Diskussion letztens mit einem Junior Entwickler:

"Wir haben hier viele Test-VMs mit Kundendaten. Du kannst für erste Tests auch eine frische VM nehmen, aber die hier laufen schon lange, haben viele Upgrades hinter sich, und da findet man die schlimmen Probleme. Deswegen sind die so wichtig - die haben Migrationshintergrund."

29.1.2025 20:28Diskussion letztens mit einem Junior Entwickler: "Wir haben hier viele Test-VMs mit Kundendaten. Du kannst für erste Tests auch eine...
https://hachyderm.io/@dermojo/11...

Currently rewriting a lot of "unit tests" that just wrote stuff to stdout without any checks.Trying to replace every print...

https://hachyderm.io/@dermojo/11...

Currently rewriting a lot of "unit tests" that just wrote stuff to stdout without any checks.
Trying to replace every print statement with an expectation that failed, I came up with this idea:

```
EXPECT_EQ(myThing, TODO);
```

And define a TODO object that can be compared against anything, but comparison always fails:

```
struct TODO_t {
template <class T> bool operator==( const T& ) const { return false; }
friend std::ostream& operator<<( std::ostream& os, const TODO_t& )
{
return os << "TODO";
}
};
template <class T> bool operator==( const T&, const TODO_t& )
{
return false;
}

static const TODO_t TODO;
```

21.1.2025 06:48Currently rewriting a lot of "unit tests" that just wrote stuff to stdout without any checks.Trying to replace every print...
https://hachyderm.io/@dermojo/11...

Ich habe endlich @engkiosk auch ein paar Kaffee spendiert. Ich brauche ne neue Tasse 😉Ach ja, und der Podcast ist toll......

https://hachyderm.io/@dermojo/11...

Ich habe endlich @engkiosk auch ein paar Kaffee spendiert. Ich brauche ne neue Tasse 😉
Ach ja, und der Podcast ist toll... 😂

buymeacoffee.com/engineeringkiosk

18.11.2024 20:21Ich habe endlich @engkiosk auch ein paar Kaffee spendiert. Ich brauche ne neue Tasse 😉Ach ja, und der Podcast ist toll......
https://hachyderm.io/@dermojo/11...

Today I learned that compiling with -D_GNU_SOURCE introduced a bug in at least one of our components. I hope tomorrow I'll learn why....

https://hachyderm.io/@dermojo/11...

Today I learned that compiling with -D_GNU_SOURCE introduced a bug in at least one of our components.
I hope tomorrow I'll learn why. 🤔

13.11.2024 22:20Today I learned that compiling with -D_GNU_SOURCE introduced a bug in at least one of our components. I hope tomorrow I'll learn why....
https://hachyderm.io/@dermojo/11...

So we started collecting some code quality metrics at work (basically the compiler warnings and clang-tidy results). It's nice to have...

https://hachyderm.io/@dermojo/11...

So we started collecting some code quality metrics at work (basically the compiler warnings and clang-tidy results). It's nice to have an overview, but the static webpages I'm generating aren't that great.
I'd like to track those over time...

Has anyone done that yet? What tooling can you recommend?
My initial idea is to throw Prometheus and Grafana at this, but they feel quite heavy...

28.10.2024 09:26So we started collecting some code quality metrics at work (basically the compiler warnings and clang-tidy results). It's nice to have...
https://hachyderm.io/@dermojo/11...

What a weekend...Ran a fast 10k at the "business run" on Friday.On Saturday, participated at MudMasters with 2 teams, one chasing...

https://hachyderm.io/@dermojo/11...

What a weekend...
Ran a fast 10k at the "business run" on Friday.
On Saturday, participated at MudMasters with 2 teams, one chasing the other (I was the slowest "hunter" 🥵, that was tough) for 16k.
Sunday, same 16k again, but with family and taking it slow.

I got: 3 new shirts, a few bruises, a lot of fun, and probably a cold 😷 🤷😂

24.9.2024 13:38What a weekend...Ran a fast 10k at the "business run" on Friday.On Saturday, participated at MudMasters with 2 teams, one chasing...
https://hachyderm.io/@dermojo/11...

Software architecture books in a humble bundle!...

https://hachyderm.io/@dermojo/11...

Software architecture books in a humble bundle!

humblebundle.com/books/softwar

2.9.2024 15:45Software architecture books in a humble bundle!...
https://hachyderm.io/@dermojo/11...

My topic for tomorrow's retrospective: We should stop practicing (fake) agile and get rid of scrum. It doesn't work, especially not...

https://hachyderm.io/@dermojo/11...

My topic for tomorrow's retrospective:

We should stop practicing (fake) agile and get rid of scrum. It doesn't work, especially not for us.

29.8.2024 21:07My topic for tomorrow's retrospective: We should stop practicing (fake) agile and get rid of scrum. It doesn't work, especially not...
https://hachyderm.io/@dermojo/11...

Frage an die deutsche Cloud: Hat noch jemand eine Mail vom deutschen Reisesicherungsfonds (DRSF) bekommen, die Google als Phishing...

https://hachyderm.io/@dermojo/11...

Frage an die deutsche Cloud:

Hat noch jemand eine Mail vom deutschen Reisesicherungsfonds (DRSF) bekommen, die Google als Phishing eingestuft hat, aber (meiner Ansicht nach) legitim ist?

Der Link darin geht auf DRSF.reise (passt) mit Umweltring über smtp.net

16.8.2024 15:27Frage an die deutsche Cloud: Hat noch jemand eine Mail vom deutschen Reisesicherungsfonds (DRSF) bekommen, die Google als Phishing...
https://hachyderm.io/@dermojo/11...

Today's programming problem in #cpp :A: my service using C++ 17B: intermediate lib using C++ 11C: header-only lib around beastThis...

https://hachyderm.io/@dermojo/11...

Today's programming problem in :

A: my service using C++ 17
B: intermediate lib using C++ 11
C: header-only lib around beast

This crashes unless I update B to 17, too. Unfortunately, B is also used by other apps using C++ 11 ...
🤯

15.8.2024 11:11Today's programming problem in #cpp :A: my service using C++ 17B: intermediate lib using C++ 11C: header-only lib around beastThis...
https://hachyderm.io/@dermojo/11...

Had to take an online security "training" today. Bottom line (wrt. phishing, spam, possible attacks etc):If anything looks...

https://hachyderm.io/@dermojo/11...

Had to take an online security "training" today. Bottom line (wrt. phishing, spam, possible attacks etc):
If anything looks strange, unplug your machine and call IT.

The same IT department that told me "Hey, you can now log on with Windows Hello using a short PIN instead of your long password! And feel free to set the check mark for 'save password' in the VPN client." ?

Yeah, sure... 🫡

8.8.2024 15:33Had to take an online security "training" today. Bottom line (wrt. phishing, spam, possible attacks etc):If anything looks...
https://hachyderm.io/@dermojo/11...

Liebe Klimaaktivisten, Ich habe vollstes Verständnis, für eure Verzweiflung. Ich verteidige euch gerne, wenn ihr Bilder verschmiert oder...

https://hachyderm.io/@dermojo/11...

Liebe Klimaaktivisten,
Ich habe vollstes Verständnis, für eure Verzweiflung. Ich verteidige euch gerne, wenn ihr Bilder verschmiert oder euch auf die Straße klebt.
Es gab Tage, da hätte ich das auch gerne gemacht.

Aber Flughäfen im Sommer? Wie viel mehr Leute wollt ihr anpissen? Jeden, dem ihr den Urlaub so dermaßen versaut, für den man lange gespart hat, und der lange nötig war, treibt ihr damit nach rechts.
Wollt ihr wirklich noch mehr AFD-Wähler?

Klebt euch bitte vor den F* Bundestag.

25.7.2024 14:18Liebe Klimaaktivisten, Ich habe vollstes Verständnis, für eure Verzweiflung. Ich verteidige euch gerne, wenn ihr Bilder verschmiert oder...
https://hachyderm.io/@dermojo/11...

Black holes are fascinating. You can't see them, you can't directly measure their properties. You can only do this indirectly, via...

https://hachyderm.io/@dermojo/11...

Black holes are fascinating.
You can't see them, you can't directly measure their properties.
You can only do this indirectly, via their effects on the surrounding objects.

They are the Vegas of space:
"That happens behind the event horizon, stays behind the event horizon."

23.7.2024 04:29Black holes are fascinating. You can't see them, you can't directly measure their properties. You can only do this indirectly, via...
https://hachyderm.io/@dermojo/11...
Subscribe
To add news/posts to your profile here, you must add a link to a RSS-Feed to your webfinger. One example how you can do this is to join Fediverse City.
         
Webfan Website Badge
Nutzungsbedingungen   Datenschutzerklärung  Impressum
Webfan | @Web pages | Fediverse Members

⬆️

⬇️