[DiscordArchive] Just out of curiosity, why haven't these been updated for the modules (on your own git) together wit
[DiscordArchive] Just out of curiosity, why haven't these been updated for the modules (on your own git) together wit
Archived author: Takenbacon • Posted: 2025-02-24T18:12:26.085000+00:00
Original source
just like configs (beyond the file loader stuff mentioned that I'm not touching) - they're accessed through world class which is kind of an ugly dependency. technically that won't be needed anymore but I'm not changing that for compatibility and making it so I don't have to update _every_ config value call lol
Archived author: nl-saw • Posted: 2025-02-24T18:28:01.474000+00:00
Original source
btw, would you guys mind merging https://github.com/azerothcore/azerothco...pull/21288 ?
[Embed: fix(Core/Threading) Refactored Map class - some code optimization b...]
Changed i_scriptLock to mutex and some general code refactoring
Changes Proposed:
Removed unnecessary iteration
Some code cleaning
This PR proposes changes to:
Core (units, players, creatures,...
https://github.com/azerothcore/azerothco...pull/21288
Archived author: Takenbacon • Posted: 2025-02-24T19:49:05.449000+00:00
Original source
<@809238294595502111> alright you regex pro, can you modify your original example (https://regex101.com/r/OdqyXB/1)
[Embed: regex101: build, test, and debug regex]
Regular expression tester with syntax highlighting, explanation, cheat sheet for PHP/PCRE, Python, GO, JavaScript, Java, C#/.NET, Rust.
https://regex101.com/r/OdqyXB/1
Archived author: Kitzunu • Posted: 2025-02-24T19:49:31.456000+00:00
Original source
This is what chatgpt is for <:kek:1065379143887372398>
Archived author: Takenbacon • Posted: 2025-02-24T19:49:48.694000+00:00
Original source
would that actually work lol
Archived author: Honey • Posted: 2025-02-24T19:51:32.858000+00:00
Original source
> Build me a regex that searches a file for words with 12 or more letters and the 2nd letter from the right neds to be a capital C
Here is a regular expression that matches words with 12 or more letters where the 2nd letter from the right is an uppercase 'C':
```regex
\b\w{10,}C\w\b
Explanation:
\b: Word boundary to ensure we match whole words.
\w{10,}: Match any word character (alphanumeric and underscore) 10 or more times.
C: Match an uppercase 'C'.
\w: Match any word character (alphanumeric and underscore).
\b: Word boundary to ensure we match whole words.
```
Archived author: Honey • Posted: 2025-02-24T19:51:51.070000+00:00
Original source
Now you tell me if it worked
Archived author: Kitzunu • Posted: 2025-02-24T19:52:57.212000+00:00
Original source
I use it for regex all the time
Archived author: Kitzunu • Posted: 2025-02-24T19:53:52.744000+00:00
Original source
All the codestyle regex are built from chatgpt
Archived author: Sogla • Posted: 2025-02-24T20:01:51.260000+00:00
Original source
modify into what