menherahair on Nostr: so obsoletion warnings now pulls the names to shitpost with from some source files. ...
so
obsoletion warnings (nprofile…hu22) now pulls the names to shitpost with from some source files. to avoid duplicates I process them with a perl script and create the one final normalized file. this way I can throw whatever at it without vetting the source files and it'll work out.
the script just loops over them:
```
for my $file (@ARGV) {
open my $fh, '<', $file;
...
}
```
*before* it did that it'd just use whatever's in the /bin/ and /sbin/ on my box using bash globbing. to mimic this behavior I created a source file with contents of these and threw it in the mix, but this lacks the malicious spirit it would emit at me earlier so I wanted to hack something similar back in.
Perl can open refs to variables as filehandles, so I thought I'd just throw an array with globs in there in the script:
```
our $doxme = $ENV{DOXME};
for my $file (@ARGV,
$doxme? [glob('/sbin/* /bin/*')]: undef) {
open my $fh, '<', $file;
...
}
```
alas
>Can't open 'ARRAY(0x6339b212f430)' for reading: 'No such file or directory' at utils/mknames.pl line 19
Perl can open refs to *scalars*. It won't magic an array into a structured file for reading
after converting it it does what I wanted it to:
```
for my $file (@ARGV,
$doxme? \(join "\n", glob('/sbin/* /bin/*')): undef) {
open my $fh, '<', $file;
...
}
```
https://menhera.hair/git/obsoletion/commit/572bcc1074a4f90b18f80468ff63ebd59f46c1c4.htmlPublished at
2025-02-18 06:51:56Event JSON
{
"id": "1875b41d7c7462ab2ba26e72ceecdc85bf835c2ef012c4f4da56b951dc259521",
"pubkey": "9f8f12d3dbef548f0c2d23696999eeba508ffdd08c71f01408ab7798bbbc30d8",
"created_at": 1739861516,
"kind": 1,
"tags": [
[
"p",
"a7fb0939b2b7ec6b150f6716d1bdf05f60555beeeb1e24fe3b8847d811221597",
"wss://relay.mostr.pub"
],
[
"p",
"9f8f12d3dbef548f0c2d23696999eeba508ffdd08c71f01408ab7798bbbc30d8",
"wss://relay.mostr.pub"
],
[
"e",
"e8f7ce2b8d621be9d1b1df8c62330a2617d5da3c72205640201a92eebce44874",
"wss://relay.mostr.pub",
"reply"
],
[
"emoji",
"marimaricry",
"https://eientei.org/emoji/user/menherahair/marimaricry.png"
],
[
"proxy",
"https://eientei.org/objects/e41919cb-7f55-4d84-9aaa-91985a18a6a8",
"activitypub"
]
],
"content": "so nostr:nprofile1qy2hwumn8ghj7un9d3shjtnddaehgu3wwp6kyqpq5lasjwdjklkxk9g0vutdr00stas92klwav0zfl3m3prasyfzzkts32hu22 now pulls the names to shitpost with from some source files. to avoid duplicates I process them with a perl script and create the one final normalized file. this way I can throw whatever at it without vetting the source files and it'll work out.\nthe script just loops over them:\n```\n\tfor my $file (@ARGV) {\n\t\topen my $fh, '\u003c', $file;\n\t\t...\n\t}\n```\n\n*before* it did that it'd just use whatever's in the /bin/ and /sbin/ on my box using bash globbing. to mimic this behavior I created a source file with contents of these and threw it in the mix, but this lacks the malicious spirit it would emit at me earlier so I wanted to hack something similar back in.\nPerl can open refs to variables as filehandles, so I thought I'd just throw an array with globs in there in the script:\n```\n\tour $doxme = $ENV{DOXME};\n\n\tfor my $file (@ARGV,\n\t $doxme? [glob('/sbin/* /bin/*')]: undef) {\n\t\topen my $fh, '\u003c', $file;\n\t\t...\n\t}\n```\nalas\n\u003eCan't open 'ARRAY(0x6339b212f430)' for reading: 'No such file or directory' at utils/mknames.pl line 19\nPerl can open refs to *scalars*. It won't magic an array into a structured file for reading :marimaricry: \n\nafter converting it it does what I wanted it to:\n```\n\tfor my $file (@ARGV,\n\t $doxme? \\(join \"\\n\", glob('/sbin/* /bin/*')): undef) {\n\t\topen my $fh, '\u003c', $file;\n\t\t...\n\t}\n```\nhttps://menhera.hair/git/obsoletion/commit/572bcc1074a4f90b18f80468ff63ebd59f46c1c4.html",
"sig": "bd6e09b7a02fafbbb018eea275d9a83cf3c2426dc328bcf97ba9e6ba943b0125c7a5bbbc04e6bdbc68babc984229754773726737a91e3fbab26d1ba3dd01feb8"
}