And I'm not sure if we belong here
If I never really left
Or if I can go home
https://markcarrigan.net/2024/06/23/current-mood-in-not-ai-generated-images-99/
And I'm not sure if we belong here
If I never really left
Or if I can go home
https://markcarrigan.net/2024/06/23/current-mood-in-not-ai-generated-images-99/
Super Mario Run 100% Gameplay (Full Game Walkthrough, All Pink, Purple & Black Coins) https://sikke.fi/videos/watch/2d017d82-bd9a-45be-ac7a-0cfd88f6d427
feld closed merge request !4: Update hashtag regex at Pleroma / auto_linker
If you stare into the abyss long enough you can find that Twitterâs hashtag regex is exceedingly complex to catch edge cases like forgetting to put a space at the end of a sentenceâs punctuation: e.g., âhey guys this is cool.#awesomeâ Thatâs crazy. But you can find more details about it here: https://github.com/twitter/twitter-text/ The reality is that Twitterâs hashtags have evolved over the years from a base ruleset to include some unicode chars and other things to be friendly to non-English speaking users. But itâs really, really complicated. If we go back to Old School Twitter rules or âWhat English speaking users encounterâ, the rules are pretty simple: Alpha, Numeric, and underscores are allowed (no dashes or other punctuation!) The hashtag must start with an Alpha character This regex change should match these expectations. This will ensure that #100 doesnât get recognized as a hashtag, but #go100 will. This fixes #1
feld opened merge request !4: Update hashtag regex at Pleroma / auto_linker
If you stare into the abyss long enough you can find that Twitterâs hashtag regex is exceedingly complex to catch edge cases like forgetting to put a space at the end of a sentenceâs punctuation: e.g., âhey guys this is cool.#awesomeâ Thatâs crazy. But you can find more details about it here: https://github.com/twitter/twitter-text/ The reality is that Twitterâs hashtags have evolved over the years from a base ruleset to include some unicode chars and other things to be friendly to non-English speaking users. But itâs really, really complicated. If we go back to Old School Twitter rules or âWhat English speaking users encounterâ, the rules are pretty simple: Alpha, Numeric, and underscores are allowed (no dashes or other punctuation!) The hashtag must start with an Alpha character This regex change should match these expectations. This will ensure that #100 doesnât get recognized as a hashtag, but #go100 will.