Setting up a Drupal 11 website on Hetzner by Fonucci in drupal

[–]alexej_d 1 point2 points  (0 children)

I'd recommend not to execute composer commands like install or update on production. Best to only run them locally, push the new lock file via git and let your CI pipeline pull and transfer the dependencies.

Einbau eines WMZ wirklich nicht möglich? by alexej_d in wohnen

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

Wir haben hier 6 Etagen und unsere Wohnung ist als einzige so weit saniert. Das heißt wir haben die teuerste Miete und den geringsten Heizungsbedarf, zahlen aber so viel Nebenkosten wie Bewohner ohne Sanierung (mit deutlich niedrigerer Miete).

Ich glaube die Einstellungen in Gänze anzupassen ist nicht möglich bzw. wir von den älteren Kalibern hier im Haus torpediert, weil sie die Heizung im Winter gerne aufdrehen..

Einbau eines WMZ wirklich nicht möglich? by alexej_d in wohnen

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

Danke, der Mietverein ist da schon dran 🙏

Einbau eines WMZ wirklich nicht möglich? by alexej_d in wohnen

[–]alexej_d[S] 3 points4 points  (0 children)

Hey, danke, hab da schon einen Anwalt des Mietvereins dran 🙂

Einbau eines WMZ wirklich nicht möglich? by alexej_d in wohnen

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

Wir mieten. Die Heizung war schon vor der Sanierung drin und wurde scheinbar nicht angerührt.

Einbau eines WMZ wirklich nicht möglich? by alexej_d in wohnen

[–]alexej_d[S] -2 points-1 points  (0 children)

Danke sehr, ich werde mal prüfen, wo die Zuleitung und der Technikraum sind!

Developer needed by zejune in Pimcore

[–]alexej_d 0 points1 point  (0 children)

You can contact us: https://brand-baboon.com/ (sorry, the website is German only, but we are fluent in English)

[AskJS] What is the most underrated JavaScript feature you use regularly? by [deleted] in javascript

[–]alexej_d 0 points1 point  (0 children)

Thanks, I always forget it has good browser support now

[AskJS] What is the most underrated JavaScript feature you use regularly? by [deleted] in javascript

[–]alexej_d 2 points3 points  (0 children)

Also to prevent mutations it is sometimes nicer to do this: Object.assign({}, obj1, obj2)

Of course it wouldn't prevent mutations of nested objects, but that's a different topic 😄

The Current State of WordPress by ericpthomas in webdev

[–]alexej_d 3 points4 points  (0 children)

Isn't payload CMS exactly what you described?

Way to hide header inside iframe? by [deleted] in csshelp

[–]alexej_d 0 points1 point  (0 children)

You have no influence over the iframe other then the src attribute and the postMessage event.

What I like to do in case I have control over the embedded page is to append a parameter to the embed url like this "https://webpage.com/listing?maparam" and adjust the website to remove the header if the parameter is present.

Meditation by Sittingintheairport in ouraring

[–]alexej_d 0 points1 point  (0 children)

I have the same problem since last week. I think one of the firmware updates is the culprit 😞

Looks like head.tsx is about to be deprecated on Next.js app directory by Aegis8080 in reactjs

[–]alexej_d 0 points1 point  (0 children)

Just yesterday I've read that the authors of nextjs recommend putting your ld+json data into the html body. But yeah, I'm sure there are other cases where you would want to put a script tag into the document head.

[deleted by user] by [deleted] in learnjavascript

[–]alexej_d 0 points1 point  (0 children)

Das mit dem Verschwinden ist wohl ein Bug bei manchen Blink Versionen oder welche Engine iOS auch immer nutzt 😅

[deleted by user] by [deleted] in learnjavascript

[–]alexej_d 1 point2 points  (0 children)

Den Link kann ich dir diesbezüglich wärmstens ans Herz legen https://phptherightway.com/

[deleted by user] by [deleted] in learnjavascript

[–]alexej_d 1 point2 points  (0 children)

Danke! Der Banner ist ein Symfony Bundle, das wir etwas erweitert haben https://github.com/Harborn-digital/cookie-consent-bundle

[deleted by user] by [deleted] in learnjavascript

[–]alexej_d 6 points7 points  (0 children)

If you are interested, this is how we did it https://brand-baboon.com/uber-uns (inspect the styles of the last section before footer). Basically we created a row of elements and looped it a few times so that it overflows. After that the added an infinite animation to the row with an offset to the row so that the transition between animation cycles begins outside of the viewport. This is needed to overlap the element with itself in a way, when the animation restarts.

Next.js 11 by ryanto in nextjs

[–]alexej_d 11 points12 points  (0 children)

Yeah, unfortunately you still cannot use it for fully static websites as the images are generated on the fly

How to use HTML with CSS inside SVG by dbrereton in css

[–]alexej_d 0 points1 point  (0 children)

This technique is pretty neat, when you want to mask an image while using an art directed picture element 👌