I get painfully bored when I relax for too long. Unless I’m sick, then I can watch Mayday Aviation Disasters for days.
who would want to hear the ramblings of some depressed person
me
I’m 20 years away from you, I’ll catch up to you soon!
Tried aggressively cleaning, lasted around a week
I go for walks multiple times a day around my suburb
Go running sometimes too
Haven’t picked up my bike in a while
I detest gardening
It’s all pointless
There’s a couple of good ones around here, like BIT CH, COC K and ZEL DA. I’ll post them if I see one.
I think it fits the definition perfectly.
A vanity plate or personalized plate […] is a special type of vehicle registration plate on an automobile or other vehicle. The owner of the vehicle pays extra money to have their own choice of numbers or letters, usually portraying a recognizable phrase, slogan, or abbreviation, on their plate. https://en.wikipedia.org/wiki/Vanity_plate
One difference is that in Germany you may only pay for the 2nd and 3rd part of the registration number. The 1st part is the area where the car is registered, like you said. Another difference is that in Germany vanity plates are so cheap that they’re the norm rather than the exception. The translation for vanity plate is Wunschkennzeichen btw, which is a term that most German speakers are familiar with.
discernible breasts
Now there’s a username waiting to be taken
Oh my it’s Montogmery Python, creator of the Python programming language
Update (not sure if anyone sees this): I have a 90 minute technical interview on Monday 😳👉👈
Same, I borrowed CDs from the library and totally did not copy them to the family PC
That’s one of the albums my older sister brought home too!
MIKA - Life in Cartoon Motion
Kate Nash - Made of Bricks
Brit Pop was the shit to 10 year old me.
Thank you for the very thorough reply! This is kind of high quality stuff you love to see on Lemmy. Your use cases seem very valid.
Thanks for posting the link separately 🙏
Thanks for sharing this. I took the time to read through the documentation of the re
module. Here’s my review of the functions.
Useful:
re.finditer
returns an iterator over all Match objectsre.search
returns the first Match object or None if there are no matches.r''
use raw strings for patters so you don’t have to worry about backslashesflags
argument modifies the behaviour (case insensitive, multiline)Utility:
re.sub
replace each match in the stringre.split
split a string by a regular expressionThe Match object:
match.groups(0)
returns the portion of text matched by the patternmatch.groups(1)
returns the first capturing groupmatch.groups(2)
returns the second capturing group, and so onI don’t understand why these exist:
re.match
like search, but only matches at the beginning of the string. why not just use ‘^’ or ‘\A’ in the pattern you pass to ‘search’?re.fullmatch
like ‘search’, but only if the full string matches. Why not just use ‘\A’ and ‘\Z’ in the pattern you pass to ‘search’?re.findall
Returns all matches. It seems like a shitty version of ‘finditer’. The function has three different return types which depend on the pattern you pattern you pass to the function. Who wants to work with that?deleted by creator
What do you use? I’m happy with i3 and haven’t looked at other window managers in a while.