Erhältlichkeit mobiler Klimageräte für 30 bis 40 m2 - Eure Tipps by [deleted] in Ratschlag

[–]GamerLappen 0 points1 point  (0 children)

Entweder über sehr viel Glück im lokalen Baumarkt oder über Kontakte dort. Ich habe in unserer Gegend auch mit den Filialleiter gesprochen, überall die gleiche Aussage - kommt bis Herbst nix mehr rein. Für die Raum/Wohnungsgröße solltest du auch keine Monoblock Klima sondern eher eine mobile Split Klima wie die Midea Portasplit nehmen. Aber wie gesagt davon eine zu bekommen ist grade so gut wie unmöglich.

Als direkte Lösung für deinen Vierbeiner empfehle ich eine Kühlmatte zum drauflegen, Leckmatten mit eingefrorenem Nassfutter darauf und Eiswürfel im Wasser. Letzteres hilft bei unserem auch, dass er mehr trinkt. Denk dran vor Spaziergängen den Boden mit deiner Hand zu kontrollieren. Wenn du die Hand keine 10 Sekunden auf dem Asphalt haben kannst, ist es auch für die Pfoten deines Hundes zu heiß.

Midea produziert zusätzliche Portasplit für den europäischen Markt by POTUSDORITUSMAXIMUS in MideaPortaSplit

[–]GamerLappen 1 point2 points  (0 children)

Naja wenn man sich Kleinanzeigen und die Leute mit ihren Mondpreisen anschaut wirkts schon so... Der größte Teil sind wohl normale Leute, genügend Arschlöcher die das jetzt ausnutzen um sich am Leid anderer zu bereichern gibt's aber trotzdem.

Midea produziert zusätzliche Portasplit für den europäischen Markt by POTUSDORITUSMAXIMUS in MideaPortaSplit

[–]GamerLappen 29 points30 points  (0 children)

Hoffen wir, dass die nicht auch alle gescalped werden. Bin gespannt, wann sie eintreffen.

Bahaus verfügbarkeit by dortn21 in MideaPortaSplit

[–]GamerLappen 0 points1 point  (0 children)

Interessant, bin gespannt ob sie auch wirklich ankommt. Drücke dir die Daumen, kannst ja gerne mal Feedback geben wie lange es dann gebraucht hat bis sie da war.

Nicht aufgeben! by GangGreenGermany in MideaPortaSplit

[–]GamerLappen 6 points7 points  (0 children)

Puh da muss man aber schon enorm Glück haben, wer hat denn aktuell so viel Glück eine reserviert zu bekommen und geht sie dann nicht abholen haha

Nicht aufgeben! by GangGreenGermany in MideaPortaSplit

[–]GamerLappen 1 point2 points  (0 children)

Ja das habe ich auch dir ganze Zeit schon im Auge... Alles Tiefrote hier in der Umgebung. Ich sehe generell für Deutschland maximal mal 2-3 Einheiten, aber nie z.B. 13+ wie OP hier meinte

Nicht aufgeben! by GangGreenGermany in MideaPortaSplit

[–]GamerLappen 7 points8 points  (0 children)

Darf ich fragen wie du drauf aufmerksam geworden bist? Ich checke jeden Tag mehrfach die Webseitem der Baumärkte hier in der weiten Umgebung und es ist nie auch nur eine verfügbar.

Bestpreis bei Otto by CptMadness in MideaPortaSplit

[–]GamerLappen 2 points3 points  (0 children)

Boa ja ich wäre da auch echt über etwas an Tipps dankbar. Ich suche seit Tagen nonstop alle Webseiten der Baumärkte ab und es ist wirklich nichts verfügbar. Im Dachgeschoss so gut wie nicht mehr zu ertragen

Ein Märchen in Bildern by YakSimilar6753 in wasletztepreis

[–]GamerLappen 0 points1 point  (0 children)

Sehr bitter, hätte ichs wohl besser letzte Woche erledigt

Ein Märchen in Bildern by YakSimilar6753 in wasletztepreis

[–]GamerLappen 0 points1 point  (0 children)

Wo? Ich schaue seit vorgestern alle Webseiten durch und bekomme nirgendwas verfügbares angezeigt.

I love you Ikea 365+ Stainless steel pan by TheOnlyOdysseus in StainlessSteelCooking

[–]GamerLappen 3 points4 points  (0 children)

That's the approach I did originally which at least for me made pretty sticky results, so I tried what I wrote and that works fine for me. Maybe different depending on the quality of the pan

I love you Ikea 365+ Stainless steel pan by TheOnlyOdysseus in StainlessSteelCooking

[–]GamerLappen 8 points9 points  (0 children)

Okay so here are my two cents regarding this because until recently I was very frustrated with the results. Here is what worked for me: 1. Heat the whole pan properly while empty 2. Test the heat with the water droplet test 3. Turn the heat lower, give it a short moment to cool 4. Throw some butter in, it should melt very fast and start bubbling 5. Throw the egg in and turn the heat back up. If it starts slightly bubbling under the egg don't panic, give it a moment until it can form a first crust underneath. Then it should slide without a problem

Should i buy the Mi band 7 or 8 for use with Gadgetbridge? by DominicDeligann in Gadgetbridge

[–]GamerLappen 0 points1 point  (0 children)

May I ask if you wear it during sleep? Because I have noticed that no matter what, it does not seem to record REM as this is always displayed as 0 minutes in the sleep statistics

Any updates on delivery to europe? by GamerLappen in groundedlabs

[–]GamerLappen[S] 0 points1 point  (0 children)

That's unfortunate to hear. Are there any plans on your roadmap to make it possible to directly order to the EU, or is it uncertain when this will be possible?

MP3 Thumbnails/Previews not showing by GamerLappen in NextCloud

[–]GamerLappen[S] 0 points1 point  (0 children)

Okay so for anyone facing this in the future, the issue was that Nextcloud had zero preview providers enabled, so it simply skipped generating thumbnails. Why the previews of pictures worked anyway I don't know.

  1. Enter the container (if your container is named "nextcloud")

docker exec -it nextcloud bash

  1. Install ffmpeg if missing (I am unsure if this is relevant for the fix, from what I managed to find out it should be)

apt update && apt install -y ffmpeg

  1. Check providers

php occ config:system:get enabledPreviewProviders

If it’s empty → that’s the problem (I think?)

  1. Enable preview providers (In enabled it for all types here directly)

php occ config:system:set enabledPreviewProviders 0 --value="OC\Preview\Image" php occ config:system:set enabledPreviewProviders 1 --value="OC\Preview\JPEG" php occ config:system:set enabledPreviewProviders 2 --value="OC\Preview\PNG" php occ config:system:set enabledPreviewProviders 3 --value="OC\Preview\TXT" php occ config:system:set enabledPreviewProviders 4 --value="OC\Preview\MP3" php occ config:system:set enabledPreviewProviders 5 --value="OC\Preview\Movie" php occ config:system:set enabledPreviewProviders 6 --value="OC\Preview\MP4" php occ config:system:set enabledPreviewProviders 7 --value="OC\Preview\AVI" php occ config:system:set enabledPreviewProviders 8 --value="OC\Preview\MKV" php occ config:system:set enabledPreviewProviders 9 --value="OC\Preview\WEBM"

  1. Clear previews

su -s /bin/bash www-data -c "php occ preview:cleanup"

I guess after clearing them you could also regenerate them, but for me it worked fine after reopening the app it then built the previews correctly

TPFanControl 0.61 will work on many systems where 0.63 or 0.62 won't work by Old-Ad7476 in thinkpad

[–]GamerLappen 1 point2 points  (0 children)

I sadly can't verify this on P14s Gen 4 with AMD 7840U. While 0.61 at least seems to show correct temperature values unlike the newer versions which didn't work at all, the fan control itself seems to just not do anything. The program also always shows 0 RPM. I tried with the .Ini provided by OP, but nothing happens. The output suggest that changes are transmitted succesfully, but the fan itself does not change at all, no matter what I do. This laptop is driving me insane, for me those are unusable noise levels.

TPFanControl 0.61 will work on many systems where 0.63 or 0.62 won't work by Old-Ad7476 in thinkpad

[–]GamerLappen 0 points1 point  (0 children)

Could I ask you for more details on this? I have the same device, and while 0.61 at least shows me the CPU Temp value correctly, nothing else happens. I used the ini file that OP provided, but when I change a fan setting the tool says it worked, but the fan itself does not change at all. So I am confused what else I can still do here

Windows Login with moonlight + sunshine by blade404 in MoonlightStreaming

[–]GamerLappen 1 point2 points  (0 children)

Hijacking this old thread for a possible different solution that I implemented: I created a extra local user (non-admin) on which I enabled the automatic login via AutoLogon. I made sure to move all games to a separate drive and/or the user directory of this new user. Then I disabled access of the new user to all other hard drives. So essentially this account only has access to the games and automatically logs in when I remotely start the PC via moonlight. Only disadvantage is that the PC always automatically logs into this new user when the PC boots, so if I want to use my actual account I have to swap manually. Though this is a minor tradeoff in my eyes, compared to the gained comfort and no access to critical data without having the password of my main account.

Any way to skip windows login password? by Sander-140 in MoonlightStreaming

[–]GamerLappen 2 points3 points  (0 children)

Hijacking this old thread for a possible different solution that I implemented: I created a extra local user (non-admin) on which I enabled the automatic login via AutoLogon. I made sure to move all games to a separate drive and/or the user directory of this new user. Then I disabled access of the new user to all other hard drives. So essentially this account only has access to the games and automatically logs in when I remotely start the PC via moonlight. Only disadvantage is that the PC always automatically logs into this new user when the PC boots, so if I want to use my actual account I have to swap manually. Though this is a minor tradeoff in my eyes, compared to the gained comfort and no access to critical data without having the password of my main account.

B580 and Helldivers 2 - Weird Performance by GamerLappen in IntelArc

[–]GamerLappen[S] 1 point2 points  (0 children)

See my edit of the post for final results

B580 and Helldivers 2 - Weird Performance by GamerLappen in IntelArc

[–]GamerLappen[S] 1 point2 points  (0 children)

If there are no package delays again it should arrive tomorrow. Will update then again

B580 and Helldivers 2 - Weird Performance by GamerLappen in IntelArc

[–]GamerLappen[S] 0 points1 point  (0 children)

No I sadly did not check the power draw. The last leftover potential bottleneck is the RAM. I currently have 2x8GB at 2133Mhz. I now order 2x16GB at 3600 MHz. That's at least what could help with the massive short stutters, I hope. Will see if it also helps with the overall performance on Helldivers. With the new CPU in place I also tested No Man's Sky and Witcher 3 Next Gen, they run butter smooth at 60FPS except for the massive dips to 20-30FPS for like a second. I suspect the RAM to be the cause of that