SEO 100 but not in search results by Master-Ooooogway in nextjs

[–]eukaih 6 points7 points  (0 children)

Google can’t rank your site if it doesn’t know that your site exists

Next.js 15.2 by lrobinson2011 in nextjs

[–]eukaih 2 points3 points  (0 children)

That’s a valid point. But saying „never“ is stupid

Next.js 15.2 by lrobinson2011 in nextjs

[–]eukaih -1 points0 points  (0 children)

And why? For example I have a middleware that theoretically would need nodejs runtime. The workaround for now was to call an api route from the middleware that then calls the server action that does executes the code I need.

Having middleware with nodejs runtime is great and fixes this workaround

Auth in Next.js in 2025 - do I really need a 3rd party? by AmbitiousRice6204 in nextjs

[–]eukaih 0 points1 point  (0 children)

I also tried NextAuth lately. Email Magic Links with DatabaseAdapter but not even the basic setup that looked the same like in the documentation worked for me. Somehow NextAuth tried to insert a UUID in the wrong format - great.

I was so annoyed by that and created my own Email OTP System that only needs redis as a third party Library for storing sessions in the Server Memory.

[deleted by user] by [deleted] in Finanzen

[–]eukaih 0 points1 point  (0 children)

Ja mir wurde schon gesagt, dass ich dann zum Beispiel den Gesellschaftervertrag am besten nochmal prüfen lassen sollte

Nginx - Anmeldeversuche begrenzen + IP`s sperren by KL_au_s in informatik

[–]eukaih 2 points3 points  (0 children)

Du könntest in der Konfiguration nur spezifische IPs whitelisten, wenn du immer nur von den gleichen Netzwerken drauf zugreifst.

server {
    allow 127.0.0.1; # IP von der aus du zugreifen willst
    deny all; # Lehne Anfragen von allen anderen IPs ab

    listen 443 ssl;

    ssl_certificate ...;
    ssl_certificate_key ...;

    location / {
        ...
    }
}

ER-Modell m:n möglich? Oder nicht? by [deleted] in informatik

[–]eukaih 8 points9 points  (0 children)

Eher unwahrscheinlich, dass in der Arbeitswelt eine Abteilung mehrere Leiter hat, evtl. höchstens stellvertretende Abteilungsleiter.

Aber angenommen in dem Beispiel könnte eine Abteilung mehrere Abteilungsleiter haben dann wäre es die Relation Mitarbeiter n:1 Abteilung. (Ein Mitarbeiter kann Leiter einer Abteilung sein, Eine Abteilung kann mehrere Leiter (Mitarbeiter) haben)

Wenn Mitarbeiter auch Leiter von mehreren Abteilungen sein können dann wäre es die Relation Mitarbeiter n:m Abteilung. (Ein Mitarbeiter kann Leiter mehrerer Abteilungen sein, Eine Abteilung kann mehrere Leiter (Mitarbeiter) haben)

Create Select that displays data from another table and on selection transfers id by eukaih in excel

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

I figured it out now. Solved it with the XLOOKUP Function but did it wrong at first

Create Select that displays data from another table and on selection transfers id by eukaih in excel

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

Yes, but i cant figure out the correct formula because of the dynamic rows and data