nerdculture.de is one of the many independent Mastodon servers you can use to participate in the fediverse.
Be excellent to each other, live humanism, no nazis, no hate speech. Not only for nerds, but the domain is somewhat cool. ;) No bots in general. Languages: DE, EN, FR, NL, ES, IT

Administered by:

Server stats:

1.2K
active users

#volksbanken

0 posts0 participants0 posts today

Wenn ihr weniger US-Produkte nutzen wollt, fangt doch bei den Finanzen an.
#Wero ist eine super Alternative! Bei #Sparkassen und #Volksbanken bereits aktiv und weitere Banken folgen. Incl. europaweitem Ausbau.
* Überweisung in Echtzeit
* Handynummer als Ziel
* Mit QR-Code bezahlen
* Geld anfordern

Was man loswird:
* Unterhändler wie Paypal oder Mastercard oder Visa
* Finanztransaktionsdaten in den USA

youtube.com/watch?v=9aUGFiiFap

Durch Fusion entsteht die größte Volksbank Deutschlands

In Frankfurt am Main entsteht die größte deutsche Volksbank, deren Geschäftsgebiet sich über hundert Kilometer erstreckt: von Weilburg in Mittelhessen bis Weibersbrunn im bayerischen Spessart. Von Ingo Nathusius.

➡️ tagesschau.de/wirtschaft/finan

tagesschau.de · Durch Fusion entsteht die größte Volksbank DeutschlandsBy Ingo Nathusius

Could it be that ChatGPT gets even simple regex wrong? Out of curiosity, I asked it to write an expression to identify all occurences of "Volksbanken", but not "#Volksbanken".

It suggested:

\b(?!#)Volksbanken\b

Doesn't work (I used regex101.com/ to check).

Correct solution (using negative lookbehind instead of negative lookahead):

\b(?<!#)Volksbanken\b

If ChatGPT can't even get such simple tasks right - why do people seem to be so impressed with it?

regex101regex101: build, test, and debug regexRegular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.