Archive for Mai, 2024

Steamdeck: pacman geht nicht (packages because of unknown trust)

Montag, Mai 27th, 2024

https://steamcommunity.com/app/1675200/discussions/0/7529517132619672170/#c6329310359229989767

https://decovar.dev/blog/2023/05/28/steam-deck-building-stuff-from-sources/

Typ eines Objekts in gcc/g++/c++ ermitteln

Freitag, Mai 24th, 2024

int a;
cout << "type of a is:" << typeid(a).name();

https://en.cppreference.com/w/cpp/language/typeid

Qt: Inhalt einer QMap ausgeben

Donnerstag, Mai 2nd, 2024

Beispiel:

for(auto key : themap.keys())
{
qDebug() << key << ":" << themap.value(key); }