

Würde aber nur heißen, dass es im Bild falsch verwendet wurde.
Ey ganz ehrlich, eigentlich ist es mir scheißegal, es ist Sonntag Abend und das Bild ist sowieso dämlich.
Würde aber nur heißen, dass es im Bild falsch verwendet wurde.
Ey ganz ehrlich, eigentlich ist es mir scheißegal, es ist Sonntag Abend und das Bild ist sowieso dämlich.
Laut Duden beschreibt ein “Verkehrsteilnehmer” eine männliche Person, die am Verkehr teilnimmt: https://www.duden.de/rechtschreibung/Verkehrsteilnehmer
Ist ja genau das, worum es an der Stelle geht: Dies neutral darstellen, Genus und Sexus neutral.
Der Verkehrsteilnehmer (maskulin), die Verkehrsteilnehmerin (feminin), die Verkehrsteilnehmenden (neutral).
Ansonsten müsstest du das bitte erklären.
Man könnte jetzt sagen “Verkehrsteilnehmer” ist eine maskuline Form und die neutrale wäre “Verkehrsteilnehmende”, aber dann krieg ich bestimmt negative Internetpunkte :(
Es gibt keine Wirtschaft 2!
Ich habe mich früher auch oft aufgeregt und versucht, mich zu verteidigen, schließlich war ich ja eigentlich immer im Recht, wenn die Autofahrer sich mal wieder daneben benommen hatten. Allerdings musste ich feststellen, dass all meine Mühen und Energie zu keiner Verbesserung der Allgemeinsituation geführt haben und damit sinnlos verschwendet waren.
Dementsprechend ignoriere ich das nun. Lass sie schreien, lass sie hupen, das ist nur ein Geräusch, das irgendwo produziert wird. Sollten sie handgreiflich werden, täusche rechts an, schlage links zu, rufe anschließend die Polizei.
What is the reason for such an addon? Simply bypassing the tracking of the shortener?
Uff… Wenn die AfD in der Regierung mitmacht, dann müssen wir ja Widerstand machen.
Diggah, gar kein Bock, aber muss dann ja.
(30,27): error TS7006: Parameter 'fuck' implicitly has an 'any' type.
This is due to the default sorter in JavaScript sorting by the string value. The reason for that is that this won’t create errors at runtime. Since JavaScript does not have types, this is the safest way of sorting.
This works:
const unsorted = [1, 100000, 21, 30, 4]
const sorted = unsorted.sort((a, b) => a - b)
deleted by creator
Unter Android mit Firefox kann man solche Addons trotzdem nutzen!
It’s not. The default sorter does that, because that way it can sort pretty much anything without breaking at runtime. You can overwrite it easily, though. For the example above you could simply do it like this:
[3, 1, 10].sort((a, b) => a - b)
Returns: [
]
JS !== Java
Try Javascript some day!
Try Javascript today!
I have my own mailserver just for me and it wasn’t that complicated to be honest. I set it up with Mailcow in Docker in under a day. So far it has been stable with regular backups and updates through Lighthouse.
Maintenance comes down to 5 minutes every three months because somehow Let’s Encrypt and Mailcow don’t like each other and I have to renew the certificate manually.
This is likely referring to TypeScript.
TypeScript has all of these patterns, they are used very frequently and they are necessary because TypeScript tends to be interesting from time to time since its types only exist at compile time, because it compiles to JavaScript, which is a language without types.
TypeScript also allows
any
as a keyword, which says “I don’t know which type this is and I don’t care”, which still produces valid JavaScript. To get back to typed variables it is necessary to usetypeof
(or similar constructs like a type guard).https://www.typescriptlang.org/docs/handbook/2/typeof-types.html