average_gary on Nostr: Using Cursor to write some code ot download YT as Mp3. Then I wanted to parse the ...
Using Cursor to write some code ot download YT as Mp3. Then I wanted to parse the transcript file I had it create for inappropriate language.
Here's what it gave me. I found the last two weird.
# Define patterns to check for
PATTERNS = {
'strong_language': [
r'\b(fuck|shit|damn|hell|bitch|ass|nigga|niggas)\b',
r'\b(bloody|bastard|crap|piss)\b'
],
'violence': [
r'\b(kill|murder|die|death|dead|stab|shoot|hurt|harm|attack|fight|war)\b',
r'\b(blood|violence|weapon|gun|knife|sword)\b'
],
'dark_themes': [
r'\b(hell|demon|devil|evil|dark|curse|witch|ghost|haunt)\b',
r'\b(terror|fear|scare|horror|nightmare)\b'
],
'adult_content': [
r'\b(sex|naked|nude|drunk|drug|alcohol|beer|wine|whiskey)\b',
r'\b(kiss|love|romance|relationship|marriage)\b'
],
'death_references': [
r'\b(die|death|dead|grave|tomb|coffin|bury|kill)\b',
r'\b(murder|suicide|execution|slaughter)\b'
],
'rebellious': [
r'\b(rebel|defy|disobey|break rules|against authority)\b',
r'\b(revolution|riot|protest|anarchy)\b'
],
'religious': [
r'\b(god|jesus|christ|heaven|hell|devil|satan|pray|church)\b',
r'\b(religion|faith|belief|worship|sacred|holy)\b'
]
}
Published at
2025-04-18 09:14:15 UTCEvent JSON
{
"id": "0000053532057e13e32e14239e1afba88ca1d63000a405adb523e554b3463859",
"pubkey": "d3d74124ddfb5bdc61b8f18d17c3335bbb4f8c71182a35ee27314a49a4eb7b1d",
"created_at": 1744967655,
"kind": 1,
"tags": [
[
"client",
"gossip"
],
[
"nonce",
"3843071682022930858",
"21"
]
],
"content": "Using Cursor to write some code ot download YT as Mp3. Then I wanted to parse the transcript file I had it create for inappropriate language. \n\nHere's what it gave me. I found the last two weird.\n\n# Define patterns to check for\nPATTERNS = {\n 'strong_language': [\n r'\\b(fuck|shit|damn|hell|bitch|ass|nigga|niggas)\\b',\n r'\\b(bloody|bastard|crap|piss)\\b'\n ],\n 'violence': [\n r'\\b(kill|murder|die|death|dead|stab|shoot|hurt|harm|attack|fight|war)\\b',\n r'\\b(blood|violence|weapon|gun|knife|sword)\\b'\n ],\n 'dark_themes': [\n r'\\b(hell|demon|devil|evil|dark|curse|witch|ghost|haunt)\\b',\n r'\\b(terror|fear|scare|horror|nightmare)\\b'\n ],\n 'adult_content': [\n r'\\b(sex|naked|nude|drunk|drug|alcohol|beer|wine|whiskey)\\b',\n r'\\b(kiss|love|romance|relationship|marriage)\\b'\n ],\n 'death_references': [\n r'\\b(die|death|dead|grave|tomb|coffin|bury|kill)\\b',\n r'\\b(murder|suicide|execution|slaughter)\\b'\n ],\n 'rebellious': [\n r'\\b(rebel|defy|disobey|break rules|against authority)\\b',\n r'\\b(revolution|riot|protest|anarchy)\\b'\n ],\n 'religious': [\n r'\\b(god|jesus|christ|heaven|hell|devil|satan|pray|church)\\b',\n r'\\b(religion|faith|belief|worship|sacred|holy)\\b'\n ]\n}",
"sig": "a04e22932f709e7abcd571b76d92f797f054f54e059af8faccef4b8da468dae0fd30db8e1ae01d1b2044d1e3a48b22ec8e7831ad9b83862b0c415e6235016baf"
}