← Home ← Back to /bant/

Thread 23167188

11 posts 14 images 6 unique posters /bant/
Anonymous (ID: SFXUtYVF) United States No.23167188 >>23167193
Statistically what's are super common filenames for images and webms on 4chan
Anonymous (ID: dsfSCjAm) United States No.23167193 >>23167205 >>23167206
>>23167188 (OP)
i always wished i had a mirror of one of the archives
you could whip up a script and find this out very quickly
Anonymous (ID: dsfSCjAm) United States No.23167197 >>23167205
you could maybe get in contact with one of the archive managers & ask, or even ask for a mirror
i've heard they're kind of insane though
Anonymous (ID: SFXUtYVF) United States No.23167205 >>23167216 >>23167257 >>23167287
>>23167193
>>23167197
I just want to stop obsessed schizos from searching up my filenames to show the times I've posted images to prove some kind of point.
How common is it to just use the number 1? Or kek?
Anonymous (ID: ZRopGx0q) United States No.23167206 >>23167216
>>23167193
I look like this
Anonymous (ID: dsfSCjAm) United States No.23167216
>>23167206
mommy..
>>23167205
ah
there's always the good old "1.png" or "image (42).png" or whatever variations

although, i think they can do that with the image itself, not just the image name
Anonymous (ID: YBviNxmM) United States No.23167257
>>23167205
There's a 4chan-x feature that randomizes the file name when uploading
Anonymous (ID: 31ybLrgD) United Kingdom No.23167287
>>23167205
test
Anonymous (ID: DBs78vXm) United States No.23167320 >>23167344
Changing your filenames won't save you.
Anonymous (ID: dsfSCjAm) United States No.23167344
>>23167320
Anonymous (ID: 31ybLrgD) United Kingdom No.23167412
// ==UserScript==
// @name 4chan filename randomiser
// @namespace chan4
// @match https://boards.4chan.org/*
// @run-at document-idle
// ==/UserScript==

document.addEventListener("change",e=>{
if(e.target.matches('input[type="file"]')){
const dT = new DataTransfer;
for(const f of e.target.files){
dT.items.add(new File([f], "17"+Math.floor(Math.random() * 1e14).toString().padStart(14, "0")+"."+f.name.split('.').pop(), {type:f.type}));
}
e.target.files = dT.files;
}
}, true);