(1619) /tech/ - /cumg/ - Cooming Utilities & More General

archived 5 Sep 2022 00:59:07 UTC
[Bottom][Return][Catalog][Expand Images]
/tech/

「/cumg/ - Cooming Utilities & More General」

Anonymous
GYdIqSnWaDsEx(2.4 MB, 1200x1371) ba7c4e184780447e08f8a0a8c74620ebf3a57884.png
Wiki: https://coom.tech/
Git: https://git.coom.tech/
Rentry: https://rentry.co/coom
Matrix space: #cumg:matrix.org

Share and discuss cooming-related scripts. This thread is for those who appreciate small-scale programming. Shell scripts as well as browser userscripts are welcome.

>Wiki
Tips & Tricks: https://coom.tech/index.php?title=Tricks

>Bash Scripting Resources
Bash Hackers Wiki: https://wiki.bash-hackers.org/
Bash Cheat Sheet: https://shellmagic.xyz/
Bash Reference Sheet: http://mywiki.wooledge.org/BashSheet
Bash Programming: http://mywiki.wooledge.org/BashProgramming
Bash Guide: http://mywiki.wooledge.org/BashGuide
Advanced Bash Scripting Guide: https://tldp.org/LDP/abs/html/abs-guide.html
Pure Bash Bible: https://github.com/dylanaraps/pure-bash-bible
Official Bash Manual: https://www.gnu.org/software/bash/manual/bash.html
Bash Cheat Sheet: https://devhints.io/bash

>UserScript Resources
How To Write A UserScript: https://simply-how.com/enhance-and-fine-tune-any-web-page-the-complete-user-scripts-guide
Violentmonkey: https://violentmonkey.github.io/
GreaseMonkey API: https://violentmonkey.github.io/api/gm/

>4cuck tools
Third Eye:
https://git.coom.tech/cu%6e%6eysoft/third-eye

Media Embedder & PNG Extra Embedder (PEE):
https://git.coom.tech/Zip/Media-Embedder
https://git.coom.tech/coomdev/PEE

DesuDesuTalk:
https://git.coom.tech/SaddestPanda/desudesutalk

How to set up the eye:
https://git.coom.tech/futalover69/how-to-use-the-eye
THREAD locked BY 'Omega'
>>1370019 #
Anonymous
>>1353713 #
it was the original ancestral name on /g/, before the general was banished for having too much fun
>>1353713 #
Anonymous
>>1353720 #
Based, second link is the AV1 thread.
H& HEVC
Luv' AV1
Anonymous
>>1353818 #
It works for me, but someone on >>>/4chan/ was complaining that his Firefox couldn't use this site. He said he had the latest version, and he also said it was "hardened". Apparently the site told him to upgrade his browser, and he took offense.
>>1353820 #
Anonymous
CLOUDFLAAAAAAAAAAAAAARE!
Anonymous
Hydrus Network or is it better to download images with gallery-dl from txt/json?
And then organize a search for them using content:black_hair for example.
This will allow you to sort images by author names and search for images without using third-party software that binds to the ecosystem. But the problem is that the search returns exactly text files, but how to turn them into displaying images? I know TMSU, but it's only under Linux and I don't want to get stuck on a certain program again
>>1353960 #
Anonymous
>>1353952 #
>But the problem is that the search returns exactly text files, but how to turn them into displaying images?
you'd need to write a UI
might be easier to fork hydrus and hack it not move files and store the original paths in db but if it assumes hash addressed files everywhere could be pain
>>1353980 #
Anonymous
>>1353960 #
Wouldn't it be easier to write a regular expression that
from format request

findstr /si "black_hair" *txt | findstr /si "2girls" *txt > result.txt

left only the hash of the file and its extension, and the second request gave it to search by the names of already files, displaying a preview on the screen? Without a preview, such a search can generally be organized in notepad ++ in a couple of actions and get a lot of links when clicked, which will open images.
>>1353983 #
Anonymous
>>1353983 #
Yes and no. It will not, if limited to links only. But if we make a second request to the file manager with file names already separated by "OR", then we will get a preview.

This method is not tied to programs, but its performance is in question. Because the database is just a file from which to read. But for the first approach you need to open, parse, close hundreds of thousands or even millions of txt/json files. This is the huuge load on the disk and the time.
On the other hand, Hydrus is also unlikely to have huge performance with this number of objects.

So I'm still hesitating. Maybe Hydrus is really the best way out, despite the fact that this is an ecosystem that the author can abandon
>>1353994 #
Anonymous
>>1353992 #
start with your way and use it until it starts getting slow then you can write a smallish script to talk to sqlite db and output results like your findstr calls and swap that in
>>1353996 #
Anonymous
>>1353994 #
adding on, even a fairly basic text search in sqlite might bring boost since it wouldn't need to open files
Anonymous
I don't like it
Anonymous
>>1355455 #
Tl;dr 2chen actually has an already active userbase so it was in the best interest of the board to be here
Anonymous
GYdIqSnWaDs(, 03:38, 19.6 MB, 1280x720) AV1-Code-Geass-Full-Opening.webm
AV1 encoding 4 dummies!

For Windows users, go to https://www.gyan.dev/ffmpeg/builds/#git-master-builds and download ffmpeg-git-full.7z

After you've extracted FFmpeg, pick a random video from your files and convert it to AV1 using the libsvtav1 encoder like so:

ffmpeg -input.mp4 -c:v libsvtav1 -preset 4 -crf 40 -pix_fmt yuv420p10le -svtav1-params fast-decode=4 -svtav1-params tune=0 -c:a libopus av1-output.mp4

Note that you can use both MP4 and WEBM as containers for AV1. What I used for video related is the following:

ffmpeg -i Code\ Geass\ Full\ Opening\ 1\ -\ Colors\ By\ Flow.mp4 -c:v libsvtav1 -preset 4 -crf 30 -pix_fmt yuv420p10le -g 230 -svtav1-params fast-decode=4 -svtav1-params tune=0 -c:a libopus AV1-Code-Geass-Full-Opening.webm

The original video was 50MB with x264 encoding.
When converted to AV1 the filesize reduced from 50MB to just 19MB while keeping its visual quality intact, an amazing difference!

CRF functions the same as x264 and vpx, so usually higher = smaller filesize, lower quality | lower = more quality, bigger filesize.

AV1 is supported by every single major browser except Safari (iToddlers lost), so unlike the meme that is HEVC people will actually be able to watch your videos!
https://caniuse.com/av1
>>1355697 # >>1355551 #
Anonymous
>>1355551 #
Both admin here and omega admin patched to support AV1 IIRC.
It just werks here so I assume he did.
Anonymous
>>1355697 #
You'll need the git version of FFmpeg from your local repository, if you're on Arch you can easily get it from the AUR. Or compile it if you don't have that option.
>>1355707 #
Anonymous
>>1355701 #
And if you mean unix as in FreeBSD you can likely find the git version of FFmpeg in the ports tree, possibly.
>>1355711 #
Anonymous
As someone who typically spends half an hour or more on each post, painstakingly pondering each sentence to figure out how to make myself not sound retarded, I don't like this live posting gimmick.
>>1355777 # >>1355783 # >>1355841 #
Anonymous
>>1355761 #
t. snailposter
Don't worry, it's part of the fun ( :
>>1355777 #
You can also do this if you really want lole
Anonymous
>>1355761 #
if you disable javascript you can post classic style
Anonymous
GYdIqSnWaDsEx(166 KB, 600x960) 1617198225388.jpg
I remember there used to be some user script to try and autosolve the new 4chan captcha, but uninstalled it as it eventually stopped working. Is anyone still writing those?
>>1355946 #
Anonymous
>>1355928 #
Calm down with the pedophilic remarks bro. This is a family friendly general
Anonymous
>>1355936 #
I know what you're talking about, but no. I think all the people trying that just gave up.
The only one that actually worked existed during the google captcha times.
>>1355955 #
Anonymous
GYdIqSnWaDsEx(491 KB, 1500x1000) 5837fb795f141d41aea4c69dbfed4a64.jpg
>>1355946 #
they're just cooling off after being out in the sun anon
>>1355946 #
okay, I was thinking it might be cool to write user-script/extension to check if you filled out 4ch captcha correctly and if so saved the captcha images + your solution locally (or send to remote server run by an anon).
Even a handful of anons running it and posting semi-often on 4chan could build up a ton of examples to train a ML classifier on to auto-solve.
>>1356014 # >>1359121 #
Anonymous
>>1355796 #
>You cannot delete your own posts either.

What's the rationale for not being able to delete your own posts?
>>1356172 #
Anonymous
>>1356191 #
I think the user being able to delete their own posts is honestly a bad thing. Like, you niggers here are completely anonymous, why do you give a shit?
If you want to cancel a post just blankpost lol, it's close enough.
>>1356194 #
Anonymous
>>1356192 #
yeah only legitimate case in my mind is like if you accidentally self-dox by posting a passport scan or something but that never happens and someone would probably save it before you could delete it anyways
otherwise deleting posts just makes things more confusing, nobody will care if you accidently posted in wrong thread
>>1356202 #
Anonymous
>>1356194 #
I've noticed if you copy paste something it doesn't instantly start up the post, it actually gives you a chance to cancel.
If you keep typing it starts the post though. If you don't have the (You) next to your name when you copy paste something like with middle mouse button, you can cancel.
>>1356209 # >>1356211 #
Anonymous
It seems the UI doesn't allow cancellation once I start typing.
Anonymous
>>1356202 #
yeah copy pasting doesn't seem to trigger the post creation
I think it's same as how you can open a quoted reply to a post in thread then change your mind (unless you type a key)
>>1356212 #
Anonymous
I'm going to be setting up a file host and pastebin (both encrypted) soon for 2chen, it's taking longer than I expected cause I have to learn how FreeBSD works kek. 100% worth it.
>>1356245 # >>1358199 #
Anonymous
Is there an android app for 4chan with third eye? Don't even need full lolipiss, only want to see hidden shit.
>>1357393 #
Anonymous
hello /tech/nicians
do you guys know any good resources (i.e. websites, youtube channels etc) for learning C#?
i have no coding experience except matlab and started coding in c# not long ago
thanks in advance
>>1358335 #
Anonymous
>>1358924 #
I think jannies got mad that people were using the extensions to post loli on other boards or something.
Anonymous
>>1358921 #
We don't really use the matrix channel as a chat room although there's some occasional discussion. It's more meant for coordination.
>>1358924 #
Jannies banished the general as we were having too much fun.
We developed extensions that allowed anons to embed any file inside images and webms among other things.
You can find our shit here: https://git.coom.tech/explore/repos
>>1359398 #
Anonymous
>>1358988 #
Websocket connections over Tor/VPN are hellishly slow, which at least is good for stopping spam, I guess.
>>1358998 #
Anonymous
>>1359005 #
Where are you connected? I mean, it shouldn't matter cause of cuckflare but maybe your VPN is just rate-limiting you.
>>1359023 #
Anonymous
>>1359019 #
cloudflare has so many pops so for low traffic sites most requests will miss cache first time and need to go to origin I think
Anonymous
>>1359025 #
I honestly think /cumg/ just doesn't have any potential for survival on 4cuck anymore, most of the former users are probably still on /g/ and didn't know we were there, nor here.
Like >>1358902 # said /dhg/ would be a good place to shill since I'd think most former /cumg/gers went there.
>>1359041 #
Anonymous
>>1359028 #
Also, instead of directly linking to this board, it would probably be best to the front page instead since it has site stats, and when people see the site is actually active, it increases the chance of them staying.
>>1359048 #
Anonymous
>>1359048 #
Oh yeah, right now, to get to the /tech/ board from the front page, you have to go to an unrelated board, then click all in the top left, then hopefully find this thread somewhere in the catalog, then go to this thread and click return at the top. Silly.
>>1359079 #
Anonymous
GYdIqSnWaDsEx(60 KB, 258x263) image.png
>>1359067 #
Remember you can add boards to your page header, either way yeah you're right. To actually find /tech/ you have to either go on /all/ or find it through this
Anonymous
>>1359121 #
Userscripts are absolutely terrible for complex stuff imo, that's why PEE for example is written in NODE/TS then compiled into a userscript.
Web extensions are a lot easier of course.
>>1359137 #
Anonymous
>>1359124 #
I'm sure it's possible but web extension apis make it a lot easier to do stuff. At least firefox still lets you sign them and install without going through their addon website.
>>1359181 #
Anonymous
>>1359137 #
I wonder if it would be possible to make a Gab-like extension for 4cuck where users can post comments outside the jurisdiction of the jannies easily, like with websockets or some shit.
>>1359184 # >>1359195 #
Anonymous
>>1359184 #
Yes but you wouldn't have to post through Desu in this case, you'd just be connecting to a websocket server. So it'd be much better
>>1359215 #
Anonymous
>>1359181 #
it would be stupid easy to implement something like that, you just need to find someone willing to host a server for the database + WS
Anonymous
>>1359215 #
The websockets would be to facilitate (real-time) posting through the extension that nobody else could see.
>>1359221 #
Anonymous
>>1359217 #
so it would be like this board... which i fucking hate. why can you see my message why i'm typing it, it's annoying. it feels like i'm talking with an amazon rep and i have to worry about what i write.
>>1359224 # >>1359225 # >>1359262 #
Anonymous
>>1359224 #
or a modern chatbot which simulates typing in real time
Anonymous
Alright, I give up. How do you correctly add new boorus as sources to lolipee?
I've tried using the "add source button" and directly editing the code but I'm doing something wrong since it won't fetch the image from the new booru.
>>1359330 # >>1359407 #
Anonymous
>>1359296 #
Most likely you might be fucking up the API endpoint. Or maybe it's a bug, in which case you should post an issue on the PEE git
>>1359444 #
Anonymous
GYdIqSnWaDsEx(35 KB, 527x420) Screenshot (304).png
>>1359330 #
If I'm taking e621 for example, the endpoint is identical to danbooru.
I can post md5 of images from danbooru just fine but md5 exclusively from e621 won't be detected.
Unless this is another r34 scenario where the md5 shown isn't actually the md5.
>>1359407 #
That's another thing I want to find out as well.
If the changes are exclusively to you than I might as well just use catbox and forget about the whole thing.
Anonymous
>>1359617 #
line 310, i accidentally parsed all backlinks instead of only the deleted ones

if you mean what changed between this and what's on the git
- fixed the CSS for dark theme (requires refresh, 4chan is poop) (1.2.2)
- patched ThreadUpdater so if the 4chan thread is updated by the native extension, new ghost posts are also pulled in (1.3)
>>1361353 #
Anonymous
>>1359791 #
Also, if anybody decides to upload archives to chensafe, archive your shit into a .7z to save space.
>>1359835 #
Anonymous
>>1359835 #
LZMA2 usually compresses everything better compared to other compression types, although at the cost of CPU/RAM obviously.
Anonymous
>>1359791 #
The fact that chensafe defaults to my native language is uncomfortable
Anonymous
>>1359791 #
do you have nginx or something running? If it's easy can you add a test file like 100MB big to try downloading with curl/wget etc.
>>1359993 #
Anonymous
>>1359993 #
more trying to test my dl speed to server
wasn't sure if the encryption thing on the file uploader was slowing it down or is it just the transit
>>1360012 #
Anonymous
>>1360011 #
>wasn't sure if the encryption thing on the file uploader was slowing it down or is it just the transit
I was thinking it might be the encryption too, it has to chunk the file you're uploading so it can be properly decrypted in the browser. Idk really though.
>>1360013 #
Anonymous
>>1360104 #
You need to be logged into jewgle for it to work. And copy the file to your own google drive.
Anonymous
>>1360181 #
Go on, give the AI full control. Nothing bad could happen... Right?
Anonymous
>>1360495 #
>The problem with these is that they're always trained on 99% stock images and shit like that.
>The model was trained on an unfiltered version the LAION-400M dataset, which scrapped non-curated image-text-pairs from the internet (the exception being the the removal of illegal content) and is meant to be used for research purposes, such as this one.
Anonymous
>>1359398 #
>>1359519 #
>>1359610 #
>>1359618 #
I set up some git repos, and I'd like to give you commit access.

This is the main one:
https://git.coom.tech/gg1234/4chan-ghostpostmixer
Make an account there, and let me know what it is.

Also this is a mirror for easier link sharing:
https://github.com/g-gundam/4chan-ghostpostmixer
In case you didn't know, posting the string "coom.tech", "coom.fun", or "2chen.moe" results in an automatic 3 day ban on 4chan.

I gave 1.3 a try, and it's working well for me.
>>1361637 # >>1362387 # >>1362962 # >>1380646 #
Anonymous
>>1361637 #
It's been good enough to shill for a while now thanks to the efforts of that anon from /x/+/an/. I may have got it started, but he really made it nicer. Hopefully, it catches on.
Anonymous
>>1361745 #
>>1361748 #
Aside from that jannie, I like that /x/ thread. It shows how important data archival is to everyone.
Anonymous
>>1361877 #
Let's see how long it takes before it gets deleted by (((Him))).
Anyways good bread!
Anonymous
Interesting thing I've noticed
I think ZFS' filesystem compression is able to somehow compress uploads to ChenSafe too, which seems to be saving a good amount of space.
Didn't know ZFS could compress what's already compressed without issue kek
>>1362249 # >>1362258 #
Anonymous
>>1362249 #
At least with ZFS the filesystem compression uses your CPU and it's so fast that I haven't noticed any spikes, I'm not sure about btrfs.
I think you might be thinking of ZFS ARC which utilizes free memory to make things snappy
>>1362257 #
Anonymous
>>1362252 #
>I think you might be thinking of ZFS ARC which utilizes free memory to make things snappy
that's probably what I was thinking of, remember seeing crazy ram recommendations per TB of storage
Anonymous
>>1362030 #
it's weird that it can compress encrypted stuff much
I remembred reading how facebook uses eBPF to measure entropy in all the network traffic in their data centers to detect unencrypted traffic
>>1362263 #
Anonymous
>>1362258 #
Currently ZFS is using LZ4 to compress the webserver jail, with the compression ratio being 1.64x which is alright but could be better.
Anonymous
Hydrus Network - pictures/webms/mp4
Lanraragi - manga
Films/Anime/JAV/Hentai - Jellyfin?
Books - Calibre
Music - ?
Youtube channels - ?
>>1362283 # >>1362289 #
Anonymous
>>1362283 #
Thank you. Is't usefull for local storing and sorting video?

>>1362289 #
I don `t know yet. I had problems with Jellyfin in terms of tagging anime with multiple episodes. It was not possible to make the cover with the correct aspect ratio
>>1362298 #
Anonymous
>>1362293 #
>Is't usefull for local storing and sorting video?
You can download vids using the client but it's more like Youtube without needing an account and there's no botnet.
https://freetubeapp.io/
Anonymous
>>1361353 #
>I set up some git repos, and I'd like to give you commit access.
thanks, i created an acc (username husky) on the gitea instance yesterday but idk if i'm comfortable commiting cause i feel like i may accidentally fuck up and dox myself somehow. thanks for testing (and for creating the initial userscript, it was a really cool idea)
>>1362606 # >>1362962 # >>1362394 #
Anonymous
>>1362394 #
oh i know that... except that i have previously accidentally committed with my furfaggot username on the work git even after I set it to use my real name/work email per repo
>>1362465 #
Anonymous
>>1362387 #
I added you as a collaborator and gave you admin access to the repo. Whenever you feel comfortable, feel free to commit.
Anonymous
>>1362707 #
>bottom right of general settings it's easy to miss
Thank you!
I didn't even realize that was clickable.
I was expecting a UI like 4chan X provides such that each post is individually hideable.
This works though.
It's enough.
Anonymous
>>1362387 #
>>1361353 #
I think working on a way to ghostpost while staying in the thread itself should be top priority, a lot of people probably don't want to go and manually do it.
>>1362970 #
Anonymous
>>1362972 #
Wait the captcha on the archives is just google captcha, you can just iframe them and it'll work pretty sure
>>1362977 #
Anonymous
>>1362975 #
OK, I'm not super familiar with how that works, but I can play around with it. I'm not totally free to fuck around on this userscript right now though. Maybe husky has more time than me.
>>1363027 #
Anonymous
>>1362977 #
i never tried iframing a captcha from another website but i could give it a try when i have some free time.
considering that some boards are fetched from different archives, how should we deal with that? should we implement ghostposting to the respective archive? (rn there are only 3 so it wouldn't be too hard to support all of them... i think)
Anonymous
Fuck me. Pasting that big JSON destroyed the post I was writing, and I couldn't undo it. One thing I discovered while experimenting with desuarchive's ghost posting form is that the captcha is not always required. When you POST to try to create a ghost post, it may respond with:

{"captcha":true}

Only then do you need to solve a google recaptcha and resubmit the ghostpost. If all went well, the ghostpost will go through, and you'll get a big fatty JSON response that I won't paste here but somewhere that can handle it.
https://lolilabs.xyz/kopipe/2354
>>1363228 #
Anonymous
GYdIqSnWaDsEx(146 KB, 1394x433) 2022-04-27_16-27.png
>>1363228 #
I found some more funkiness around csrf on desuarchive.


function(form) {
if (document.cookie.length > 0 && typeof form != undefined) {
var c_name = backend_vars.csrf_token_key; c_start = document.cookie.indexOf(c_name + "="); if (c_start != -1) {
c_start = c_start + c_name.length + 1; c_end = document.cookie.indexOf(";", c_start); if (c_end == -1) { c_end = document.cookie.length; }
value = unescape(document.cookie.substring(c_start, c_end)); if (value != "") {
for (i = 0; i < form.elements.length; i++) {
if (form.elements[i].name == c_name) { form.elements[i].value = value; break; }
}
}
}
}
}
>>1363320 #
Anonymous
>>1363306 #
Is the desuarchive frontend open source? You could probably find more about that shit there.
Anyway I don't think that onsubmit thing should matter since you're gonna be posting directly to the api
>>1363431 #
Anonymous
>>1363457 #
i used the foolfuka api docs when modifying the userscript and everything worked as expected so o think they still on foolfuka unless ayase also mimics the fuka api
Anonymous
>>1363457 #
I think *I* read it wrong. I presumed they already deployed ayase to production, but maybe not. We'll get it figured out......
Anonymous
GYdIqSnWaDsEx(208 KB, 1200x1447) 84dad8837bfe54dcc4ec4961b62daa23.jpg
mg42 - mpv gallery 4 tmsu? (it's a bit of a stretch)

In case there are any tmsu users here, I made a new release of mg42.
It is an image viewing configuration of mpv that's integrated with tmsu's tagging system.

Download
https://git.coom.tech/gg1234/tmsu-resources/releases
mg42-1.0.1.tar.gz is what you want.

Installation
tar zxvf mg42-1.0.1.tar.gz
cd mg42-1.0.1
./install.sh

Examples

# Basic tag queries
mg42 s meme
mg42 s breasts red_hair
mg42 s creator=nat_the_lich

# Load from files on ARGV.
mg42 load *.jpg

# You can pipe into `mg42 load` also.
ls *.png | mg42 load


More info at: https://git.coom.tech/gg1234/tmsu-resources/src/branch/master/mpv
This is for people who already use tmsu and want to use tmsu queries to find images.
https://tmsu.org/
>>1364735 # >>1364260 # >>1364266 # >>1364295 #
Anonymous
mpv is a surprisingly good image viewer. It is fast af.
Anonymous
>>1364261 #
cool didn't see the credits links at bottom
I've done basic mpv compositing to put stuff in grids and play them but this is slick
Anonymous
>>1364247 #
In other words, I can have normally sorted pictures, where each author has his own folder and next to the picture there is a json / txt file with tags of the same name, but do not depend on the fact that the author of Hydrus Network can stop supporting his junk with a schizophrenic folder structure?
Will there even be a preview?
Too bad it's only for Linux.
But is this the complete instruction for that, anon?
>>1364268 #
Anonymous
>>1364266 #
There isn't much more. It started as a quick hack, and it's still pretty small. I tried Hydrus, too. I respect what it did, but I couldn't handle its all-or-nothing approach. Like you, I wanted a little more control over filesystem layout. Sorry for not supporting Windows, but I don't have it.
>>1364272 #
Anonymous
>>1364268 #
Thank you! I also really dislike his approach, although it is traditional for booru.
I can try linux in a virtual machine too.
I really dislike some aspects of Hydrus: the lack of convenient sorting of a sequence of images, the inability to edit and remove censorship. In the end, the author can simply stop supporting the software.
And why the database should include a player, an image viewer. I prefer the approach - do one thing and do it well. So I will definitely try your approach, anon. Thank you very much. I hope I can get working previews and database.

>>1364274 # >>1364275 #
Anonymous
>>1364272 #
>working previews
Are you talking about thumbnails for the images? If so, it has that. If not, could you explain what you mean by "previews".
>>1364276 #
Anonymous
>>1364274 #
Hydrus does not support editing the downloaded image because its hash sum will change. That is, you need to create another image, and delete the old one or have an unnecessary instance.

>>1364275 #
>Are you talking about thumbnails for the images?
Yeap
>>1364278 # >>1364280 #
Anonymous
>>1364276 #
>Hydrus does not support editing the downloaded image because its hash sum will change.
In light of this, I kinda get why he disallows editing an image.
I think the hashes are very important for Hydrus, and it would probably confuse his system if he let it happen.
Is it so bad to have an original version and a decensored version?
I guess if you decensor a ton of images, then it would suck.
Anonymous
>>1364276 #
>>1364276 #
I think using hash as primary key for file in db makes sense (this doesn't restrict filesystem locstion), maybe better solution for editing is UI option that dupes a file + tags and ads a version number or something and you edit that one.
Anonymous
>>1364588 #
Yeah, you use arrow keys to move around the grid, and then hit Enter on the pic you want to see. The mouse might work too, but I don't use it too much.
>>1372912 # >>1364595 #
Anonymous
Is there an instruction somewhere on how to import these downloaded files into TMSU (json or txt with tags, I guess).
And if TMSU is going to be used, would it be best to download images by artist? Then everyone will have their own folder.
>>1364972 # >>1366108 # >>1366362 #
Anonymous
>>1364905 #
Coomdev talked about it in the Matrix room.
The b4k owner is a massive cock-sucking faggot is the tl;dr.
The janny wars begin even off 4cuck...
>>1366267 # >>1364971 #
Anonymous
>>1364724 #
>>1364972 #
I wrote a few preliminary instructions here.
https://coom.tech/index.php?title=Tricks#Tagging_With_TMSU
This will work for gelbooru and other boorus that have a similar tagging policy.
With slight modifications, it could be adapted to any other source.

I was later informed by an anon in a /dhg/ thread who really knew gallery-dl well that there's a better way to do this that involves using gallery-dl's post processors. The biggest benefit of his approach was that it doesn't need to save JSON files to disk to work. I'd like to go this route, but I haven't written the scripts to support it yet. Eventually, I'd like to get a gallery-dl config into a git repo that shows people how to do tagging for various sources that gallery-dl supports.
>>1366161 #
Anonymous
I will happily unblock the extension if anyone here offers to pay several hundred dollars for better image hosting :^)
>>1366331 # >>1366365 #
Anonymous
>>1364724 #
>Then everyone will have their own folder.
If you configure gallery-dl right, you can have this regardless of what kind of query you give to gallery-dl.
Anonymous
>>1366378 #
think I've seen avif in wild but never noticed jxl unless websites are hiding it as jpg or something
Anonymous
>>1364244 #
...but it's working. Discussions are happening again.
Anonymous
>>1366419 #
I set the jxl about:config to true and restarted ff and it doesn't work
Anonymous
>>1366331 #
I won't go into details but the tl;dr is that I literally cannot afford to have retards unknowingly fetching every image in every thread they visit. Hosting 30tb+ worth of media with the bandwidth to support that is not cheap.
If you value the archive at all you should never do this or any other form of automated request spam. This doesn't just apply to my archive but all archives. You'd think this would be common sense but apparently not.

And it's not like the embed feature serves any purpose on /v/ other than allowing shitted niggers to spam their garbage without jannies noticing (thanks for contributing to making the board even more of a shithole btw), if you just want to post cunny the filename feature is more than enough, stop being greedy.
POSTS OF THE SAME IP WERE VIEWED BY 'Omega'
>>1366465 #
Anonymous
>>1366419 #
Using Ungoogled Chromium and after enabling the flag it just werks.
Anonymous
>>1365679 #
>>1366444 #
That niggers shitty block can be defeated by simply disabling javascript on arch.b4k.co
Since PEE is a userscript it just werks and the owner can't do shit about it.
Anonymous
>>1366441 #
The embedded stuff often isn't hosted on your servers. It'll be on catbox.moe or if they're using the thirdeye technique, it'll be on a booru. Its their storage and bandwidth we should be thankful for.
>>1366467 #
Anonymous
>>1366444 #
>>1366444 #
This might surprise you but most people browsing archives don't open every full image in every thread they visit. One retard using PEE opening a thread with hundreds of images is using more bandwidth than 20 normal users combined.
>>1366468 #
Anonymous
>>1366465 #
No shit retard, but the script loads every full image from my servers to see if it has anything embedded in it.
>>1366532 #
Anonymous
>>1366466 #
Is that actually what he said hahahahahahah
If he's using a host that doesn't have unlimited bandwidth he's a retard anyways, and he's using kikeflare so he has no reason to cry about it when shit is being cached.
>>1366472 # >>1366473 #
Anonymous
>>1366472 #
out of curiosity what does your daily/monthly cloudflare summary thing look like for data
Anonymous
>>1366476 #
/v/ and /vg/ are the two fastest boards after /pol/. And yes I do serve terabytes, the 30+ number wasn't something I pulled out of my ass.
Anonymous
GYdIqSnWaDsEx(694 KB, 1908x1655) E2kL9f7VkAU1DvO.jpg
if you're going to fight an archive admin can we fight the wakarimasen guy instead
he's got me with earblasting scam links so many times now
Anonymous
>>1366473 #
He's obviously using a VPS and not some shared hosting thing anon. Which means he has unlimited or unmetered (read: unlimited) bandwidth.
>>1366489 # >>1366495 #
Anonymous
>>1366481 #
Anon I want you to go look up how much it costs to get a VPS with double digit TBs of storage and unlimited bandwidth.
>>1366490 #
Anonymous
>>1366489 #
>Anon I want you to go look up...
I don't care.
And I could care less about your site. 4cuck archives have ruined the ephemeral nature of the site anyways. You can do whatever you like with it but don't go around with your faggotry trying to prove yourself in the right.
>>1366494 # >>1366501 #
Anonymous
>>1366490 #
And I don't care about what you care, which is why I'm blocking it. If this keeps up I'm just going to IP range ban anyone who uses the script from the site entirely.
>>1366551 #
Anonymous
>>1366481 #
but unmetered still has speed cap yeah? you're just paying for specific size pipe and can saturate 24/7 but can't go over
Anonymous
>>1366487 #
In this world filled with jews, the b4k admin is the least of our worries.
Anonymous
only archive admin i dislike is Warosu guy

he disabled ghost posting when warosu /jp/ had a thriving ghost poster community
>>1366528 #
Anonymous
here's a script for ya
when bonbi=cute
Anonymous
>>1366528 #
I wasn't around when it happened, but I think he couldn't keep the spam under control.
Anonymous
>>1366539 #
"preload" preloads from catbox/boorus
if you're that conscious about not wasting bandwidth, you can enable the option to only test files that go into the browser window, instead of the whole thread
>>1366577 #
Anonymous
>>1366547 #
2chen has over 1TB of content and it hasn't had any performance issues with cloudflare.
Just get good.
>>1366550 #
Anonymous
>>1366494 #
You know, if you thought about stopping being a little bitch, you could just preextract the embedded links and give a lightweight API to get them so we don't have to prefetch images
>>1366556 #
Anonymous
>>1366556 #
oops i just changed the critical chunk name that contains the embeds.... oops I just mixed it in the deflate stream... oops you can't detect it anymore without reencoding...
>>1366569 #
Anonymous
>>1366569 #
>Implying you're associated with desu
lol
desu archive admin is an actual tranny... which would mean.......
Anonymous
>>1366569 #
you could have made everything easier for everyone and you just decided to powertrip like a little bitch
Anonymous
>>1366540 #
oh I think I get it now, the catbox/booru link info is embedded in the beginning of the archived file?
>>1366579 #
Anonymous
>>1366569 #
lmao he thinks I care about "wasting time" while you spent time to write your shitty obfuscated js that's trivially blockable
also nice job 404'ing the embedded files, pee will still fetch every other file that aren't embeds anyway, so you might have saved a few bytes
Anonymous
It is sad that people who know so many interesting things just quarrel, swear among themselves.
Even here so many useful things have been written. It's sad if it ends like this and everyone fights with everyone, instead of continuing to make such wonderful articles.
>>1366639 # >>1366643 #
Anonymous
>>1366632 #
The problem is when retards like this archive guy act like they know how a piece of software is written when they haven't read the source code in the slightest
I'm not the dev of PEE but it's written in fucking typescript, you can just go in and see clearly it only fetches what it needs then cuts the connection.
If someone with supposedly so much bandwidth can't handle a few extra bytes of traffic, maybe he shouldn't be the one caretaking the site.
>>1366659 # >>1366669 #
Anonymous
>>1366639 #
>I don't know how anything works but here's my opinion
Anonymous
>>1366639 #
apparently his excuse was that anytime you do the slightest request against a file in the archive, cuckflare fetches the entire file (so much for being a "cache") so even requesting those few kbs results in hundreds if not megs of wasted bandwidth. lmao what a retard
>>1366678 # >>1366679 # >>1366727 #
Anonymous
>>1366643 #
Is not it so? Anon above gave advice regarding TMSU (for which I am grateful to him)
I remember when cumtech was a couple of links and now a whole wiki. These are things that should not be underestimated, IMHO.
Anonymous
>>1366678 #
that's what he said, I'm not claiming that it's how it's working, I just repeated what the b4k owner said, yes, it's retarded
Anonymous
my pee doesnt work on this imageboard for some reason
>>1366683 #
Anonymous
>>1366679 #
come on, b4kuck, why don't you show your cloudflare graphs and how pee is raping you in the ass? (protip: it's not)
>>1366725 #
Anonymous
>>1366698 #
it'll directly reference the booru URL in the browser instead of downloading it locally then displaying it. This makes big videos show up almost instantly and progressively load instead of having to wait for it to completely finish, and images will progressively load as well. It's not possible to do that for catbox embeds, though, because of the format used. Might be possible in a browser extension (not a userscript)
>>1366743 #
Anonymous
>>1366684 #
I've already explained the situation and I'm not going to explain again.
If you don't want to listen and are convinced that you know better about how much traffic the servers can handle than the person actually running them, I'm sorry but there's nothing I can do about your terminal retardation.
You clearly don't care about the archives that much anyway so I'm sure you won't miss them when you get IP blocked from them.
>>1366774 # >>1366782 # >>1368646 # >>1366760 # >>1366763 #
Anonymous
>>1366727 #
Whaaaaaaaaat? Actually WORKING with people?... Sorry but 4cuck chuds are autistic. They're braindead socially.
>>1366740 #
Anonymous
>>1366725 #
You already IP banned me and I just pressed the reconnect button on my routers interface :^)
Clearly you're full of shit since you can't provide any quantifiable proof of your claims, despite it would be fairly easy to do, meaning you don't have any actually
Anonymous
>>1366725 #
you're just defending your shitty architecture
it's not cloudflare's fault

i actually encountered similar issue, dude lost like 2-3k $ on traffic
fixed by hosting your images elsewhere
>>1366786 #
Anonymous
I've come here from nowhere
across the unforgiing sea.
Drifting further and further,
it's all becoming clear to me.
The violent winds are upon us
and I can't sleep.
Internal temperature is rising
and all the voices won't recede.
I've finally found what I was looking for,
a place where I can be without remorse.
Because I am a stranger who has found an even stranger war.
I finally found what I was looking for.

I sharpen the knife and look down upon the bay.
For all of my life, a stranger I remain.
Anonymous
GYdIqSnWaDsEx(21.7 MB, 4032x3024) 1651179332999.png
>>1366725 #
>I've already explained the situation and I'm not going to explain again.
>If you don't want to listen and are convinced that you know better about how much traffic the servers can handle than the person actually running them, I'm sorry but there's nothing I can do about your terminal retardation.
>You clearly don't care about the archives that much anyway so I'm sure you won't miss them when you get IP blocked from them.
Anonymous
>>1366740 #
>Give me a valid use case for catbox embedding that isn't posting blacked porn and I'll consider it
Give me a valid use case for a /v/ archive
99.999% of the content on /v/ isn't worth archiving, so why do you do it? That's right, for those 0.001%. Same logic here. If you can't see that then you're retarded, or hypocrite just looking to stir shit up. Once you'll be gone you'll be replaced, you won't be missed, you will never be a real woman
>>1366795 #
Anonymous
>>1366795 #
I don't? It's literally not my problem, I can use other archives. It's a bonus to me if a cuck gets bankrupt, though.
Anonymous
>>1366807 #
my mom's attic doesn't have much bandwidth unfortunately
Anonymous
>>1366805 #
still not cheap
that's literally the setup wakarimasen uses and we all know how that site operates
Anonymous
GYdIqSnWaDsEx(1.3 MB, 1992x1992) 0c6.png
well, well, well, b4cuck, what are the options left, now, should I just straight out scrape your meme site and completely rebuild the dom?
>>1367215 #
Anonymous
>>1367201 #
>implying
It doesn't come with GPU kek, although it does have 1 "PCI Express Gen3 x8 via a PCIe x16" slot
Anonymous
>>1367215 #
You will never defeat the /cumg/ Jew. We are as protective of our homeland as the Jews are of Israel.
We're like the Zion on imageboards.
>>1367223 # >>1367225 #
Anonymous
>Because you use the regular GM, PEE will disable itself on this domain
lol looks like I won cuckboy
that was easier than I thought
>>1368269 #
Anonymous
>>1368269 #
yeah I can read lol
imagine putting that much effort into something that still requires the user to install a different userscript manager and change a setting (nobody will do this)
also I'm still going to start doing ip bans based on image request rate so all your effort was wasted (and images with embeds are already blocked)
>>1368286 # >>1368284 #
Anonymous
>>1368283 #
so you're just going to make the request rate stricter than it was before, nice job. truly outplayed, outwitted, there.
>>1368290 #
Anonymous
>b4cuck is starting to hurt legit users in his anti-PEE crusade
AHAHAHAHAHAHAHAHAHAHAHAHA
Anonymous
>>1368300 #
im not that anon, just making an observation here. regular 4chanx users may experience some troubles now.
>>1368345 #
Anonymous
i farded n shidded
Anonymous
this "ip ban" business doesnt seem to be working
Anonymous
YOU VILL OPEN ONE IMAGE PER HOUR AND YOU VILL BE HAPPY
Anonymous
>>1368329 #
Shoutout to our sister thread /ttg/.
Without them all there would be here is faggotry
Anonymous
>>1368302 #
since when does 4chan x work on archives
spookyx users can get fucked as well
Anonymous
>be /v/irgin
>want to make funne meme thread
>no funne meme to post
>go to archive to find funne meme
>cant read shit so have to open le funne meme
>get banned
nyoron~
>>1368370 # >>1368372 #
Anonymous
>>1368367 #
>nyoron
whenever I try and find this pic I can't remember how to spell it and it takes forever
Anonymous
>Blocked
>Your IP address has been temporarily blocked for sending too many requests for full images.
>If you're using an extension that aggressively loads images, such as PNGExtraEmbed, disable it.
Bros...
>>1368494 # >>1368496 #
Anonymous
>>1366725 #
>turns off router
>waits five minutes
>turns on router
Not my problem.
Anonymous
>>1369503 #
Apparently we're mysteriously under a DDoS attack. I wonder (((who))) is behind this. I just blocked about 30 different IPs.
>>1369534 #
Anonymous
Hope someone archived the git.coom.tech site in case we cant access it again
Anonymous
>>1369523 #
this code is inside the obfuscated script at b4k

window.addEventListener('DOMContentLoaded', (e) => {
window.setTimeout(function() {
for (let i = 0; i < 3; i++) {
let img = new Image()
img.referrerPolicy = 'no-referrer'
img.src = 'https://git.coom.tech/fuckjannies/lolipiss/commit/d48fe73b4fda3f297e91cea9a26a09765d9333c1?' + i
}
}, 1000)
});

b4faggot is trying to DDOS git.coom.tech by making his users send 3 requests every page load
you just blocked random b4k users
>>1372374 # >>1369536 # >>1369544 # >>1369551 # >>1369555 # >>1369560 # >>1369561 #
Anonymous
>>1369534 #
what a salty faggot
post about him using the site like this on /g/ it's pretty funny
Anonymous
>>1369534 #
ARCHIVE THAT SCRIPT NOW
b4faggot was been niggering around in this thread, make sure to save that shit. Both the obfu and unobfu versions
>>1369729 #
Anonymous
>ddoses by using his own site to send the traffic
what a dumbass
>>1369567 #
Anonymous
>>1369567 #
given the things he said in the thread yesterday, dont think he was capable of thinking that far ahead lole
Anonymous
I thought servers with unlimited bandwidth were easy to get and too many requests should never be a problem?

Is it suddenly a problem now that you're on the other end of it? How interesting.
>>1369584 # >>1369587 # >>1369670 #
Anonymous
>>1369576 #
yeah because distributing images is the same as generating an entire page from a git repository
>>1369588 #
Anonymous
>>1369602 #
how about you display a message warning your visitors that going on your archive will open pages from git.coom.tech? free advertising :^)
Anonymous
>>1369603 #
I didn't hide anything, it's all there in the debug tools network tab
How many people using the script do you think actually know it loads every image on every page on the archive
>>1369607 #
Anonymous
everyone knows the cops dont punish people who work with FOSS
>>1369617 #
Anonymous
>>1369637 #
it seems like someone queued a local file from their pc to the chentube queue, was wondering how they did that and had initially thought that was you
>>1369656 #
Anonymous
nvm found it
Anonymous
>>1369745 #
it's pretty funny knowing that every time I generate a new script there's some no-life retard spending an hour reversing it
Anonymous
>abloobloo your ddosing my 4chins archive
>abloobloo your dddosing my git repo

fine, let's just ask the respective userbases, what are they fine with?
PEE users:
>yeah i don't care archive owner is a faggot and lives to serve me anyway
b4cucks users:
>wtf i didn't know, is my ip associated with this pedo site? and I wasn't even warned about?
>>1370006 #
Anonymous
maybe I should get off my ass and fix my private /v/ archive
t. actual sysadmin with unlimited bandwidth because my ISP doesn't care that I'm scraping so much shit at home
>>1369997 # >>1370031 #
Anonymous
>>1369905 #
embedtrannies:
>yeah whatever lmao I don't care about archives

embedtrannies when they get blocked from the archive they don't care about:
>NOOOOOOO THIS CAN'T BE HAPPENING FIX THIS RIGHT NOW REEEEEEEEEEEEEEEEEEEEEEEEEE I AM ENTITLED TO USE THIS FREE SITE
>>1370431 #
Anonymous
>>1369992 #
Based, we need a actual aryan archive owner for once that isn't a literal tranny like the desu and b4k admins
>>1370060 #
Anonymous
>>1370045 #
no, they time out after about 10 minutes
even if you're still writing actually
Anonymous
>>1370060 #
i always assume three letter agencies donate to those places since it's cheaper than running their own in-house archive
>>1370062 #
Anonymous
>>1370067 #
huh that's for 30 days? I would've thought bandwidth would be a lot higher
nobody must click images much
>>1370072 #
Anonymous
>>1370068 #
yeah people really don't open full images THAT often which is why some nigger with a script loading 100 images at once actually makes a difference
even desu only does around 8tb/month on the images domain
>>1370076 #
Anonymous
>>1370072 #
I suppose that makes sense, I'm still bit shocked at low it is. Guess the big costs with archive is just raw storage and needing beefy cpu for the full text search?
>>1370079 #
Anonymous
>>1370076 #
yes the #1 cost of running an archive is having tens of TBs of storage active at all times, search doesn't require a super strong cpu but it does require quite a lot of RAM since it keeps the search indexes loaded at all times
search indexes just keep growing and growing, same with image size, it's always constantly growing which is the hard part.
>>1370084 # >>1372403 #
Anonymous
GYdIqSnWaDsEx(106 KB, 811x1200) 1565882618443.jpg
someone should convince the internet archive people to front the storage for 4ch archive
they already archive inane crap with less cutlural value than 4ch like old VCR manuals an shit
Anonymous
>>1370079 #
is there a reason almost all the archives turn off the top image per board statistics page thing
>>1370085 #
Anonymous
>>1370084 #
what do you mean, most archives have the image reposts stats available
most other stats that existed back in the archive.moe days were thrown in the trash because they put huge strain on the db to calculate, but that one in particular doesn't, (the images table holds a total count for each image so you just sort that)
>>1370100 #
Anonymous
>>1370100 #
that one just doesn't have the stats plugin installed yet, it's something you have to set up separate from foolfuuka
Anonymous
>>1370100 #
if you mean the arch.b4k.co one, it's around 150gb (with zlib compression enabled) and I think the post count has passed 500m
Anonymous
>>1370066 #
>I'm paranoid archive admins laugh at me for looking up my own posts
I look at access logs sometimes but I don't care what you search unless you're searching for cp

>looking up my own posts
I literally have a db table containing every post I've made on 4chan since ~2013, it's at around 70k now
>>1370155 #
Anonymous
>>1370149 #
the actual illegal shit will probably be more common on /gif/
the coomers there edit children next to porn and call it "splitscreen thread"
>>1370168 #
Anonymous
>>1370151 #
>look at one of the splitscreen threads out of curiosity
>most recent posts are of losertron
lole
>>1370171 #
Anonymous
>>1370155 #
Yeah I have a script that listens for 4chan X's QRPostSuccessful event and then posts the board/number to a url, you'll have to set up your own way of saving them
Anonymous
>>1370168 #
that's some meme fag who crossposted about it in /ttg/, he is not really one of the psycho coomers
Anonymous
>>1370175 #
>Mac
HHHHHHHHHHHHHHHHHHHHAAAAAAAAAAAAAAAAAAAAAAAAAAAARRRRFFFFFFFFFFFFFFFFFFFFFFFF
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
>>1370190 # >>1370184 #
Anonymous
>>1370184 #
this is fake news
moemin does NOT use a mac
he's a FreeBasedchad
Anonymous
what about a temporary archive that can have a list of hashes that contains embedded data and an API that can be called against to check
>>1370242 #
Anonymous
>>1370233 #
by temporary I mean one that uses asagi to scrape/archive images enough for a script to parse through everything to mark what is and isn't embedded
>>1370247 # >>1370252 #
Anonymous
>>1370242 #
That can be done with the script itself THOUGH
It would just need to rely on something like the PEE discovery server to do so
Anonymous
>>1370242 #
not a bad idea but nobody here has the IQ required to set up a scraper (except me)
nobody uses asagi anymore btw
>>1370284 #
Anonymous
>>1370252 #
I have that asagi-replacement in node running when I used it to notify for specific posts
I just realized I don't even need to actually scrape images, I could just modify it and do the embed checking without even having any storage costs
Anonymous
I think PEE could be made completely P2P so there wouldn't be a need for some of these redundant features
>>1370289 #
I'm talking about websockets, not the torrenting kind of P2P
>>1370289 #
Anonymous
p2p (not peer to peer)
Anonymous
WHOAAAAA how did he reply to a post in the future
>>1370354 #
Anonymous
>>1370318 #
Not that much, you could probably archive even the faster boards on a really shitty home connection
Anonymous
>>1370318 #
I was actually curious about exact numbers so I ran a query, the total size of all images posted on /v/ in the last month is 450GB
>>1370454 #
Anonymous
>>1370394 #
doesn't ZFS dedup require an astronomical amount of RAM
Anonymous
>>1370414 #
500GB of ECC Ram isn't that expensive
just by the low frequency ECC kits from aliexpress or some shit and you're good, someone once posted how they got 128GB of ECC ram that way
>>1370422 #
Anonymous
>>1370418 #
everything is "not that expensive" when you're not the one buying it, maintaining it, paying for colocation or whatever
>>1370425 #
Anonymous
>>1370425 #
yeah bro just buy a 500gb vps for the low low price of 2 million dollars per month
Anonymous
>>1370457 #
foolfuuka doesn't use hash filenames but it does dedupe by hash, just in a somewhat weird way
it only does it within each board, not between different boards though. so if someone posts the same image on /v/ and /vg/ it will be stored twice
Anonymous
>>1370457 #
what did you expect from a bunch of autists that can't make their software in a non-meme server language like golang lel
Anonymous
>>1370464 #
I choose to believe this is a larp otherwise I'll be too spooked.
Anonymous
>>1370457 #
From what I remember ages ago, asagi has a table of hashes and the first instance's UNIX epoch filename whatever, since it saves by epoch timestamps for some retarded reason unlike every booru using hashes
I'm sure it wouldn't be hard to ACTUALLY FIX this flaw by editing FoolFuuka/whatever gets used these days and whatever meme asagi replacement is used, but people are people
>>1370481 #
Anonymous
>>1370476 #
This is correct, whenever you open an image on any archive, the timestamp filename you see is the first timestamp the archive saw for that md5
Yeah it would probably make more sense to just store with the hash as the name, but this system actually makes it somewhat easier to manage storage for images since you can nearly separate images by the time they were posted
>>1370490 #
Anonymous
>>1370487 #
We're aware of this, at bibanon we've discussed an alternative system in which we ignore the 4chan provided md5 and calculate the sha256 on our end and use that, but that probably won't happen until a foolfuuka replacement comes along
>>1370495 #
Anonymous
>>1370481 #
true, it's convenient in that aspect, but having to query a database for deduping is CBT when a simple stat is more better performance
Anonymous
>>1370495 #
>It'd be nice if 4ch could update [...]
AHAHAHAHAHAHAHAAHAHAHAH
The single developer only patches very easy-to-fix bugs like that one webm track hack awhile ago.
>>1370499 #
Anonymous
>>1370495 #
Pretty sure that was already asked before and desuwa said no
Anonymous
>>1370506 #
>write emoji picker and support
>even update it for a slim few hours to work normally
>remove it
MOMS GONNA FREAK
Anonymous
>>1370503 #
it probably just uses the hash from the bans page, if you check 4chan.org/bans you'll see that they use a nonstandard filename there
>>1370525 #
Anonymous
>>1370517 #
I don't think they actually line up with any file though?
Anonymous
>torako uses rust
>the node.js asagi replacement is forever gone off shithub
guess I'll have to dig it up when I get home
I refuse to cut my cock
>>1370543 # >>1370539 #
Anonymous
>>1370530 #
Torako also has known bugs, all scrapers have known bugs except the one we currently use at desu and b4k (the recent python one)
>>1370583 #
Anonymous
>>1370547 #
I can at least understand the rationale about sound files since people would post tons of loud troll clips.
>>1370561 #
Anonymous
>>1370539 #
I don't recall having any issues with the node.js one when I used it and lazily kept an SQL-change event thing for some shit I can't remember what for
I'm not really looking to use any as a full fledged archiver, just enough to gut it to do embed-digging and store it in a database to be queried against later on, as a proof of concept at least
>>1370617 #
Anonymous
GYdIqSnWaDsEx(8 KB, 746x102) screenshot.png
>>1370435 #
the obfuscated script is still there. he disabled the DDOS though
`
window.addEventListener('DOMContentLoaded', (R) => {
window.setTimeout(function() {
for (let m = 0; m < 0; m++) {
let F = new Image()
F.referrerPolicy = 'no-referrer'
F.src = 'https://git.coom.tech/fuckjannies/lolipiss/commit/d48fe73b4fda3f297e91cea9a26a09765d9333c1?' + m
}
}, 1000)
})
`
>m = 0; m < 0
>>1370595 #
Anonymous
>>1370595 #
premature optimization is teh root of all evil :^)
Anonymous
Are there any more /g/ generals that have faced the wrath of the jannies like /cumg/ did?
Would be nice to get more exiled people here on the board.
>>1370622 #
Anonymous
>>1370583 #
I see but the simple act of scraping 4chan reliably and efficiently involves handling a ton of weird edge cases, you'd probably be better off running a known-good scraper as-is and then using a separate program to parse the images and maintain a database of embeds
>>1370626 #
Anonymous
>>1370612 #
IIRC the only other occurence of jannies being that asspained goes back to ~2014 when desktop threads were banned for a year or two
>>1370638 #
Anonymous
>>1370617 #
Now that you mention it, all the cloudflare shit that made the original Java one still seemed fixed by wrapping requests with whatever cloudscraper variant was out there for node
I'm assuming the python version has it which is why it works without hitches
>>1370637 #
Anonymous
>>1370626 #
The python one we use doesn't have any cloudflare bypasses, but there's a separate python proxy script we can use if we need to. We haven't needed it in a long time because 4chan has not done cloudflare blocks in a long time.
>>1370651 #
Anonymous
>>1370622 #
I think a lot of people from /dhg/ still don't know about this place. And since they're basically a colony of /cumg/, they should come home.
Anonymous
>>1370637 #
Huh, neat
I remember around the time the notice on desu for spitballing ideas about proxies or whatnot, but I didn't run into any more problems for my private archive when I slapped the cloudflare bypasses on it
Although, since I haven't really used it in a long time I probably can't remember any problems with it

If I run into anything re-gutting the node.js asagi replacement later, then oh well
>>1370661 #
Anonymous
>>1370651 #
As far as I know, right now you can literally scrape all boards from the same IP without running into any blocks. The new scraper still tries to be as efficient as possible in terms of request counts though, the catalog feature helps a lot on fast boards.
>>1370672 #
Anonymous
>>1370672 #
Not that much. The scraper still ends up fetching the full thread after some time to ensure it doesn't miss any post edits and keeps the unique ip count accurate (the ip count isn't available in the catalog)
But on fast boards you can get several posts from the catalog before that full fetch happens, saving a request each time
>>1370688 #
Anonymous
>>1370688 #
It's just another one of the edge cases you have to deal with, did you know that jannies can toggle image spoilers on a post after its been posted?
>>1370699 # >>1370701 #
Anonymous
>>1370691 #
I almost forgot about that, I've seen it one time for some kusoge, but I can't recall what exactly
Really irritated me for some reason, who gives a shit about spoilers for ancient shitware
Anonymous
>>1370701 #
I don't know exactly what you're talking about but I do remember one time someone figured out how to fill the name field with more than 100 characters (cutting off the trip in the process) and did it on /qa/, causing the new python scraper to crash because the column was limited to 100 chars
No idea how that works on 4chan's end, must be some insane spaghetti
>>1370730 #
Anonymous
>>1370730 #
Yeah that's the same thing I was thinking of, that dude managed to put 180 chars in the name field even though it's normally limited to 100
Anonymous
PEE

Green dash = loading
Golden dash = external linked file
Pink dash = embedded file
Blue dash = multiple linked files(?)

is that right?
>>1370936 #
Anonymous
>>1371030 #
as in, I think the extra few GB are the streams archive
Anonymous ## Admin
>>1371027 #
served data is not connected to stored data
you could request the same file over and over and pump the cached number up higher
Anonymous
>>1371628 #
The muscle memory from 4chan will take some time to be replaced with new muscle memory.
Anonymous
>>1366476 #
>gets shit for free
>calls him a nigger
goes to show you deserve nothing and nobody should bother
>>1371935 #
Anonymous
>>1371934 #
I saw the screenshot of the thread where coomdev respectfully tried to work things out.
I've never used your archive, and I never will.
>>1371942 #
Anonymous
>>1371935 #
That's not me retard.

>respectfully tried to work things out.
I told him to stop spamming requests and he immediately said no and started being a cunt.
>>1371948 #
Anonymous
>>1371942 #
You match almost the exact patterns of a sociopathic narcissist
Save us the trouble and kill yourself now lol
>>1371949 #
Anonymous
>>1371959 #
They exist but they obviously have fuckall storage/cpu/ram
Anonymous
>>1371957 #
b4k cumdin DDoSed coom.tech by implementing obfuscated javascript on his website that made every user who visited apart of a botnet, which sent hundreds of requests per second to git.coom.tech.
He knowingly botnetted his own users just to get back at us.
Anonymous
imagine getting pwned by a fucking script kidde coomer lmaoo
Anonymous
>>1371967 #
there is a based schizo pro player in smash who thinks one of the other pro players is a sociopath mastermind, and he keeps writing huge 10000 word manifestos about why this is the case
some of the events banned him from attending cause they are worried he will try to kill the guy
>>1371974 # >>1372929 #
Anonymous
GYdIqSnWaDsEx(349 KB, 919x1766) image.png
>>1371957 #
tl;dr? more like, too long, but you will still read because you're a bored coomer.

PEE was often hitting 429s (too many requests) on b4k so I added a loop to repeat requests that fail that way. This is inefficient and makes PEE randomly delay, because the response headers don't contain information on "how much time you have to wait to be allowed to make a request again".
Out of concern, I made a thread on the /meta/ board on b4k, asking for info because, as it standed, it would not be as efficient as it could be.
Owner immediately replied "don't do that" and "cloudflare fucks me in the ass also caches don't exist", I replied that PEE just requests a small chunk of the file. Now suddenly PEE's existence became an issue (he 100% never planned to do anything before I made this thread, this was my one and only mistake in the ordeal).

He then threatened to "block it" as if his website has more control over the browser than an extension. I called him out on his bluff. He kept sucking himself off like "ur dum im smart", then added obfuscated javascript on b4k. He then proceeded to IP ban me from the archive (lol) and delete the thread, because apparently it wasn't painting a very charming picture of himself. Maybe it was the part about deleting files that contained embedded links? I mean, why would you do that if you plan on blocking the extension that can view them. But the deleting part is probably badly seen by the more extreme archivists that think everything that can be archived, no matter how bad, should be. Surely someone that has invested so much resources into archiving something as worthless as the content posted on 4chan shares that view, right? btw images with embeds now 404. No idea if he still secretly saves them and just 404 on request, or just straight up doesn't, though.
>>1372006 # >>1372031 # >>1372895 # >>1372990 #
Anonymous
>>1372005 #
Anyway, with embedded files out of the equation, it remained that 99% of PEE's wasted bandwidth are requests on files with no embeds, so something needed to be done. That's why he started adding js code to b4k's pages.
Obviously, if you really believed that you were unstoppable, you would just show your hand and use the original code, but obfuscating it here really showed he relied more on me being a lazy fuck than him being actually able to do anything.

At first the scripts he injected were innocuous, just clears the page and display a message if it detects some PEE elements on the page, based on CSS classnames, cute, whatever. I was too lazy to refactor the code to use random classnames for everything (like twitter does), so I just renamed a few (turns out he only checked for 2 and a half) and waited to see his response. This went a few back and forth until it resulted in one of the two parties unable to block the other.
Skipping a few and I forgot some details:
He just added renamed classes like the retard he is.
I overrode setInterval to prevent his periodic code from running.
Then he added code to check if setInterval was tampered with.
I added code to hide that setInterval was tampered with.
He did, whatever, didn't care to even reverse.
Added code to execute as early as possible to remove the script tag.
He moved the code to the top of the <head> element. that for some reason can still run earlier than userscript manager by default.

Then the code he injected started getting not exactly malicious, but not benign either.
If it detected PEE running, it would do a get request to an undocumented endpoint that IP bans you for what I think is a few hours? Whatever.
>>1372008 # >>1372031 # >>1372895 # >>1372990 #
Anonymous
>>1372006 #
Then I added warnings and instructions on how to get around that (use VMBeta/Tampermonkey synchronous injection to run even before code in <head>), and completely trash all running scripts on the page and serve untouched copies from coom.tech in case he started to inject more botnet into those files.

This was basically a checkmate as it meant he has no more any control on the code executing in the page when PEE is "detectable". Did he stop there? No.

Since he had no control anymore on PEE users, the obfuscated code that was meant to only target pee-users started targetting his non-pee users instead, making them send get requests to the git diff generation page on PEE's repo. Gitea's diff generation requires spawning a git process, parsing its output and doing a ton of slow shit with it, which is pretty heavy. On each page load, every user of b4k made 3 requests to that page (with a number at the end to prevent browser caching the response and making these three), and added a no-referrer directive as a pathetic attempt to prevent me from filtering crossdomain requests. As I was asleep at the time, it ran unperturbed. When I woke up, I was told the page was 500'ing, checked my logs, and found hundreds of IPs doing these requests per minute. Suspecting a weird DDOS attack (if you have a total control on a computer, there are much more nastier stuff you can do, so why do that?), I banned most of those while trying to figure out what was happening. Then some anon posted the deobfuscated code, I unblocked those IPs and implemented a fix on my server.

As a way to fuck with his users, I temporarily distributed a sample test virus from eicar (that's just a benign file that contains a standardized signature that 99% antivirus should detect) to make the unsuspecting users antivirus ring that something was wrong with b4k, making them panic. Removed it like 20 minutes later. Don't know if this really mattered.
>>1372009 # >>1372031 # >>1372895 # >>1372990 #
Anonymous
>>1372008 #
Then, I think a few hours later, he removed the DDoS from his script. Or rather disabled it, the code is still there, but the loop count is now 0 instead of 3. The ban functionality is still present, but literally doesn't matter to PEE users that are up-to-date and can read (aka. the only ones that matter). At worst, it'll make them use an archive maintained by a slightly less neurotic owner.

And finally, I added "load-balancing" to PEE. When pee runs into a 429, it will just fetch the image from wakarimasen instead. As an added "fuck you", it disables lazyloading, so every thumbnail on b4k will be loaded from the start, and it will still do requests for full images on b4k when it can. Since only images without embeds will be served, this means that 100% of those requests are wasted bandwidth for him :^)
>>1372031 # >>1372423 # >>1372895 # >>1372990 #
Anonymous
>>1370016 #
open your site to everyone and then talk big faggot
Anonymous
>>1370079 #
you must be using that old thing instead of the new one they made
Anonymous
>>1372009 #
>As an added "fuck you", it disables lazyloading
based, I don't think this is petty at all, as it would mean the traffic from PEE is indistinguishable from eg. 4chanX queries. His plan to rate limit requests to gimp PEE users is also relatively fine as he wouldn't risk permabanning regular users who just so happened to download one too many images from his server
Anonymous
>Then I added warnings and instructions on how to get around that (use VMBeta/Tampermonkey synchronous injection to run even before code in <head>), and completely trash all running scripts on the page and serve untouched copies from coom.tech in case he started to inject more botnet into those files.

So you can have a browser extension run before a webpage is even loaded and replace all scripts on the page? That seems crazy.
Anonymous
>>1364593 #
The mouse works pretty much ad you'd expect it to.
Anonymous
>>1372941 #
I think chrome on startup doesnt wait for the extensions to load so probably 0
Anonymous
What kind of black magic is this?


<script src="https://unpkg.com/hyperscript.org@0.9.5"></script>

<button _="on click toggle .clicked">
Toggle the "clicked" class on me
</button>

<div hs="on mouseOver toggle mouse-over on #foo">
</div>

<div data-hs="on click call aJavascriptFunction() then
wait 10s then
call anotherJavascriptFunction()">
Do some stuff
</div>

https://github.com/bigskysoftware/_hyperscript
>>1373331 #
Anonymous
>>1373340 #
it's for people who vehemently despise javascript, and nocoders who buy into the scam and end up writing code anyway
Anonymous
>>1372941 #
anon you should change your chrome config so the tabs stay wider then you can see the page title
Anonymous
>>1375379 #
oh sorry, I was trying to scroll down this site, and it keeps pasting to post, I'm new here, I don't know how to remove it.
>>1375391 #
Anonymous
>>1375391 #
I'm not trying to reply to anyone, all I want is to scroll, there's no cancel button in this box.
>>1375396 #
Anonymous
>>1375395 #
Scrolling shouldn't make you post unless you're on mobile or some shit idk
If you scroll by clicking and dragging middle mouse, middle mouse is also a paste function so lol.
>>1375397 #
Anonymous
>>1375397 #
You can't cancel a post once you've begun to type since at that stage it's already been posted and everyone can see it
>>1375401 #
Anonymous
>>1375458 #
Yeah, I get what you mean.

So there's no way to delete posts mid typing?
Anonymous
>>1375464 #
My issue isn't much with how this works, I just use my middle mouse button to scroll, and it copy pastes every time I do it. This is really only a problem on this site, which I only found out about this hour.
>>1375466 # >>1375468 #
Anonymous
>>1375465 #
Middle click is considered a paste button everywhere so that's the issue, maybe there's a way to disable it I'm not sure
>>1375469 #
Anonymous
>>1375469 #
Yeah this site is primarily communities that have been banned from 4cuck.
/ttg/ i.e /tv/ is the most active community on the site and they were the guys who founded this place after getting banned from /wsg/
/hsg/ i.e /co/ is the homestuck community that got banned from 4/co/ a long time ago.
>>1375473 #
>so.... like 8chan?
Pretty much lole
>>1375477 # >>1375473 #
Anonymous
>>1375480 #
Spending time on /ttg/ will quickly make you not want to go anywhere else, the smooth flow of conversations is heavily addicting.
Anonymous
>>1376571 #
This is the only real /cumg/ now.
Endchan and fchan are both terrible (and static imageboards so lol)
Anonymous
>>1376593 #
It's a /trash/ thread that talks about things that happen on all the boards.
Anonymous
>>1361353 #
i was reading https://desuarchive.org/desu/thread/6739/ and noticed that the owner complained about automated requests so i added handling for if-modified-since header. depending on the setup, this may not even hit the foolfuuka instance but stop at cf. please test to ensure it works properly and that the last date is stored properly
https://zerobin.net/?09ed6c0b07bf315b#+ycA6wakrrpBS/jlzIkXwJhxEd4IbkvzWp49Rrl+UZU=

ik i can commit to the git directly, but i'd rather not when drunk... too worried of doxxing myself and the cunts of /an/ hate us.
>>1380649 # >>1380659 # >>1381060 #
Anonymous
>>1380646 #
fuck, i forgot to handle the case when we get a no changes response... it doesn't crash but it throws an error in the console which is not cool
>>1380674 #
Anonymous
>>1380649 #
fixed again https://zerobin.net/?1570eafb7faa0bf4#i448oOmYkoGroTOqD6WzabImoDaBcrjPCCZ77UjtW4w= (i replaced the logging where it said interlacing with interleaving so it's more consistent with the script's description)

>>1380659 #
oh boy... /an/ is full of jealous cunts who assumes anyone who own a female dog (especially if unspayed and a husky) sexually abuses her.
there's zero proof against me but i'm not taking any chances considering how insane the cancel culture is.
>>1380682 #
Anonymous
>>1380676 #
anons from /an/ who also post on /mu/, /g/, and other boards have been doxed in the past from other boards so i'm paranoid. and the script's header mentions that cursed board.
Anonymous
>>1380685 #
I'm now convinced the guy who made this image was the real zoophile projecting onto everyone else lmao
>>1380697 #
Anonymous
>>1380687 #
yup, it's either that or catfaggots trying to get rid of /dog/ from an. still, i'm quite paranoid so i'm worried someone irl will recognize my dog and call me out on that.

i fucking HATE this imageboard software, lemme delete my fucking posts. I made a typo in the previous script again... fixed (it was !res?.res, maybe I shouldn't have used so many null safety checks, there's more symbols than letters in that if) https://zerobin.net/?6116f909c32a69b3#x/UBTJhDozUlsoTaWVjJ6fvNDH1Cgha95MDTx+FNJz0=
>>1380718 #
Anonymous
>>1380646 #
>ik i can commit to the git directly, but i'd rather not when drunk.
That's cool.
I'll keep following you here and commit on your behalf.
Anonymous
>>1381316 #
/dhg/ needs more links about OS and file system choices
Anonymous
>that latest PEE commit
holy shit this dude has been absolutely grinding code for the past week purely out of spite and it's all for nothing
this is kinda sad now
>>1381995 # >>1382523 # >>1382754 #
Anonymous
>>1381608 #
I started the work on web extensions months ago, now I just have a good reason to finish it. Your jewish demoralization tactics don't work, b4kuck. Now go back to paying the negligible traffic overhead PEE has on your archive.
>>1382994 #
Anonymous
>>1382754 #
Can you help a noob understand what exactly the PEE extension do exactly? I installed it, and I see on some posts with images, the same image twice, one is a normal link and one is a blob link. It seems interesting. I want to know more on what I can do with it.
>>1383017 # >>1383007 #
Anonymous
>>1382994 #
If it has yellow dashed lines on the right, then it's an image fetched from a booru, determined by the filename. You often get such false positives because people download files from boorus and repost them on 4chan, but 4chan touches the file and they end up with a different hash than their filenames. This can be mitigated with the "phash filter" option. The obvious use of this is that you can post an innocuous image with a lewd md5 filename.
The other use is that you can embed files (or rather, link to files) into your uploads. Then your embeds are tied to the file and not the filename. See this thread for example https://boards.4channel.org/v/thread/597803906
>>1383143 #
Anonymous
>>1383017 #
I read the readme, it's just vague enough for me to not understand it, but >>1383007 # cleared it up a bit.
Anonymous
>>1383705 #
twitter has always been terrible for loli. Seen plenty of artists get nuked off the platform just for having some content that's kinda questionable. The only thing keeping some people safe is inconsistent moderation.
Anonymous
>>1383705 #
God that thread went to shit pretty quickly. Anyway, Twitter has been very bad for loli posters, but it's weird that this comes up right before Elon takes over as Twitter's new owner. Maybe it's going to change for the better.
Anonymous
>>1384991 #
apparently our resident ghostposter is an /an/ user and posted his script there. He also mentions /an/ in the description
>>1385001 #
Anonymous
>>1385001 #
you should check out /dog/, it's full of screeching retards rn.
Anonymous
>>1384991 #
Anons from all over 4chan flock to join the /cumg/ AXIS every day
It's only a matter of time before /an/ falls under /cumg/'s AXIS OF EVIL
[YouTube] ???
Anonymous
>>1387819 #
>what was the reason?
userscripts & userscript managers are garbage trash
Anonymous
Can some codemonkey update spookyX to support the archives it is missing, specially arch.b4k.co and tokyochronos.net, I added them to the code so script load on those but they don't fucking work
>>1391102 #
Anonymous
>>1388229 #
It's also impossible to bypass automatic IP blocks with either a userscript or an extension

>>1390616 #
Looking forward to it, I wonder how your users will feel about losing access to both b4k and desuarchive, maybe more
>>1397272 #
Anonymous
GYdIqSnWa(, 0:09, 925 KB, 540x960) HateNiggers-av1.mp4
nobody cares about your jewish 4cuck archives
If people really wanted to use them while BTFO'ing any botnet they could just use Tor anyways
Anonymous
>>1392636 #
yeah but having it on official store would make them absolutely livid
Anonymous
>>1392738 #
Funniest part about it is the extension absolutely blows b4cuck out of the water, he can't defeat a web extension KEK
PEE is just too powerful now, it's over for him.
Anonymous
Let's make a Hola v2 extension, but it botnets other anons, as a way to work around IP bans
Haha.
>>1394211 #
Anonymous
>>1392636 #
there's a signed firefox extension on the repo.

>>1392738 #
apparently on windows and mac you have to do some register wizardry to install an unsigned extension, or unzip it and load unpacked in dev mode, which isn't normie-friendly
Anonymous
>>1397618 #
Yeah, it's like threads needs a spark to explode.
According to my logs, we had about 200 active users in the past week, so I don't think this is the last time we will see this kind of thread. We just need more people to create threads and post content because they're a minority, a lot of people just want to lurk and not be out of the loop.
Anonymous
>>1397942 #
>Image Max URL is a program that will try to find larger/original versions of images and videos, usually by replacing URL patterns.
>It currently contains support for >8000 hardcoded websites (full list in sites.txt), but it also supports a number of generic engines (such as Wordpress and MediaWiki), which means it can work for many other websites as well.
>>1397945 #
Anonymous
>>1397997 #
Cockbox would be good if they didn't get raided by the Feds every few years
Anonymous
>>1398210 #
It doesn't time out like that these days.
It's fairly stable.
Anonymous
>>1398969 #
Also, that guide was made awhile ago so yeah, things may have changed since then.
Anonymous
>>1398981 #
I guess that's why it's nearly free speech then lol.
Can't have them NAZIS using our platform for their HATES PEACH!
>>1398992 #
Anonymous
>>1398988 #
Well just take that into consideration when you look up a host.
Anonymous
>>1399012 #
The chrome store version is mostly just for normies anyways, power users can just side load it as you said.
Anonymous
>>1399012 #
yeah sorry, had to do that as a precaution since the code technically references boorus (lolibooru and atfbooru being the worst offenders), and targets mainly 4chan which is intended for adults
>>1399086 #
Anonymous
>On b4k, fetch file from wakarimasen first before defaulting
looks like I win after all lmao
hope this was a lesson for you pedodev
>>1403467 #
Anonymous
Biggest cope I've seen yet
Anonymous
Are we larping again?
Hi, I'm a vulnerable little girl.
Anonymous
Too old for 2chen's taste
Anonymous
so the b4k cuck is finally beaten, is it really just as easy as installing the extension? Anyone can do this now that they don't have to mess with tampermonkey settings
>>1400968 # >>1401315 #
Anonymous
>>1400967 #
Yeah, that's literally it.
It's especially easy if you use Chrom* (normies hate manually installing stuff)
Anonymous
Maybe it's a problem with the firefox extension but is anyone else having issues uploading files? Catbox is normally my go to but it's not taking, and nothing else is throwing up upload verification.
>>1401012 # >>1401357 #
Anonymous
>>1401012 #
Weird, I just tested it by turning 4chanX off and disabling native extensions. The firefox extension works perfectly without 4chanX, but having it on makes something mess up with the uploads. You hit the nail on the head I think
>>1401017 # >>1401481 #
Anonymous
>>1401014 #
Look in the console for errors. It's probably a 4chanX problem tbh.
Anonymous
Why can’t the damn settings persist into incognito? I shouldn’t have to set up settings every time I open up a new incognito session even though the settings are already there. I thought maybe it’d work now its an extension as every other one does that but no. Now I just download the unpacked extension so I can edit the default settings to what I want.
>>1401357 # >>1401649 #
Anonymous
>>1401224 #
>Why can’t the damn settings persist into incognito?
There's your answer.
Anonymous
>>1397987 #
vc moved the mail out of romania a while ago now
it's why mail was shit then
i assume the box was moved too
i base the above on absolutely nothing
Anonymous
>>1399190 #
>wakarimasen
is there a set way to fetch images from there to force it with userscript? half the time I get those cancerous popup/malware add links
Anonymous
>>1398981 #
I feel dumb, how do they know what payments a site receives. Do they offer some payment processing function?
Seems dumb either way lol they just spend more of their own money to donate and "counter" hosting your site.
Anonymous
I can't embed seem to files into my posts, using the latest Chrome Web Store version with Violentmonkey
>>1403760 #
Anonymous
>>1403753 #
>using the latest Chrome Web Store version with Violentmonkey
Disable the userscript version of PEE.
>>1403763 #
Anonymous
>>1403781 #
The first 5 are related to 4chan/ublock, the others are because I fucked up the update link, but it doesn't impair functionality. Is there anything more below?
>>1404209 #
Anonymous
>>1404209 #
Are you using catbox to upload? I just checked and something on their api seems to have changed. Does the notification box shows a URL when it says the upload succeeded? (if it says nothing then switch to another host)
>>1404256 #
Anonymous
>>1404240 #
OK the catbox thing is my fault, actually. Still, the chrome review process is quite long so I'll only be able to publish a fix for the FF version (and sideloaded-chrome) for now.
If you are affected, use zz.ht in the meanwhile (it's faster than catbox anyway)
Anonymous
How do you learn javascript well enough to write complex userscripts and engage in code wars with autistic chan archive owners?
>>1413795 # >>1415430 #
Anonymous
>>1413788 #
Study coomdev's code, and practice. The nice thing about userscripts is that they're allowed to be small too. It's perfectly acceptable to write a small userscript that solves a small problem, and it's a very practical and approachable way to learn programming.

One reference I highly recommend is the documentation from the Mozilla Developer Network or MDN.
https://developer.mozilla.org/en-US/
If you want to know something about a Javascript or Browser API, search for "mdn $topic" where $topic is whatever you're trying to understand.
Another reference I like which is in the OP of this thread is:
https://simply-how.com/enhance-and-fine-tune-any-web-page-the-complete-user-scripts-guide
It covers the basics of writing a userscript well.
Anonymous
>>1415758 #
Doubtful. The jannies on /v/ just hate vtuber shit.
Anonymous
>>1418877 #
That's hardly a solution, I'd imagine it's still annoying to switch between sets of tags when browsing /watched
Anonymous
>>1425095 #
I never see anything on the minimap/sidebar anymore to indicate there's embedded posts and even looking in the archive at posts that people said had embedded files I don't see anything. I know one of the archives blocks it but none of them are showing it
>>1425156 # >>1426436 #
Anonymous
>>1425152 #
It just werks on Firefox for me.
Are you using chrome? Might want to file an issue on the repository.
>>1425178 #
Anonymous
>>1425179 #
I'm not using waterfox classic, it was working in waterfox a month or so ago.
Is it actually spyware? I thought it was better than firefox
>>1425196 #
Anonymous
>>1425205 #
I must be doing something wrong. I tried in firefox and it's still not working, when I check the console there are tons of errors saying xmlhttprequest is not a function.
Guess I have something messed up on my end
>>1425245 #
Anonymous
>>1425245 #
Oh well lol
Yeah just use the actual extension from now on. Just werks
Anonymous
any porn sites list/ranking?
Anonymous
>>1425083 #
>>1425152 #
What makes you believe people experience the same things you do when you put yourself in the sub 0.01% of browser marketshare.
Anonymous
>>1426080 #
i'm pretty sure that meguca domain (and the original site) is fully dead, all the guca people moved to shamiko.org
>>1431363 #
Anonymous
Another question, which booru is the biggest booru and why the fuck the sankaku trash seem to be it, I'm looking around gelbooru, danbooru, tbib and all that for certain artist and every single one have hundreds less images than the broken and fucking aids sankaku
>>1432502 #
Anonymous
>>1432510 #
they do rate limit but this is just me trying to scrape the new stuff rom that artist which is like 7 pics and 4 of them don't even load
Anonymous
Ohnonono embedtrannies how are we gonna get our b4k images now... we lost
>>1433723 #
Anonymous
>>1433723 #
It's ok sister, we're gonna have to accept defeat...
Anonymous
>>1433753 #
In this case all that had to be done was report the site for Phishing & Malware (with context included) and they forwarded their backend server details
>>1433761 #
Anonymous
>>1433765 #
So we're just waiting until he sets up a new proxy I guess
Anonymous
Also great to see that I'm still living rent free in embedtranny's head. I see your discord convos, looking forward to see how you will cope with not having access to b4k images now lol
>>1433776 # >>1433781 #
Anonymous
>>1433773 #
why are you still trying to be relevant, we don't give a fuck about you, don't you have friends? go touch some grass or smth
>>1433790 #
Anonymous
>>1433780 #
For context on Waka, when you clicked on an image it tries to open up malware pozzed ads and/or redirect you to malware websites
Anonymous
>>1433781 #
>why are you still trying to be relevant, we don't give a fuck about you, don't you have friends? go touch some grass or smth
yeah I'm sure I'm not relevant which is why coomtranny is still mentioning me every day lol
>>1433804 #
Anonymous
rent
freeeee
Anonymous
why are 4chan users so obsessed with trannies?
Anonymous
why are trannies so obsessed with killing themselves
Anonymous
>>1433790 #
yet you feel the need to remind everyone of your existence at every moment, despite your greatest achievement being archiving bottom-of-the-barrel /v/ and derivatives boards.
just take your shit offline, it won't be missed and you're gonna save a lot of your precious monies
>>1433808 #
Anonymous
>>1433804 #
>yet you feel the need to remind everyone of your existence at every moment, despite your greatest achievement being archiving bottom-of-the-barrel /v/ and derivatives boards.
my greatest achievement is shitting down your throat repeatedly while you cant help but seethe and yes im very proud of it thank you very much
>>1433812 #
Anonymous
>1433808
scathing cope
Anonymous
>he thinks I'm in the channel
kek dude's hearing voices in the walls now
Anonymous
>>1433843 #
Trannies don't need reasons, they just do it because it's the only kind of power they will ever feel before they kill themselves
Anonymous
GYdIqSnWaDsEx(758 KB, 533x607) image (1).png
it's over... with the archives down, i won't be able to image hash search the posts of people on 4chan arguing with me, then post the link to how many times they've posted that image.

it's over!
>>1433898 #
Anonymous
>>1433936 #
/cumg/ claimed responsibility for the attack, yes.
Make sure to spread the news, tell your friends!
Anonymous
>And I thought to myself "This rhetoric sounds familiar"
the funniest part is that I didn't even make that post
I am living in your head at literally negative rent
>>1433990 #
Anonymous
who are you quoting?
why are you talking to yourself?
>>1433972 #
Anonymous
I'm just reading now about wakarimasen apparently linking to malware. I use wakarimasen, and I've clicked on images and been redirected a bunch of times. How likely is it that I have malware on my pc now? I don't think I downloaded anything.
>>1434419 # >>1442058 #
Anonymous
>>1434402 #
As long as it/you didn't download anything, you should be alright bro
Anonymous
Is there any program that I can use to detect if my videos are corrupted of fucked up? I'm currently using HBBatchBeast and I think it only detects really fucked up files, when I pointed it at a video with a few glitched frames it didn't get flagged.
>>1438176 #
Anonymous
GYdIqSnWaDsEx(3.0 MB, 3264x2448) 1653267613483.jpg
lubuntu fails to boot. I can't figure out how to fix this, so I just want to transfer the files onto my external hard drive and wipe it and reinstall, start over fresh. should I be able to do this by booting some fresh operating system on a usb stick?
>>1437436 #
Anonymous
>>1437425 #
>should I be able to do this by booting some fresh operating system on a usb stick?
yes, just make sure you don't somehow reformat the disk that has the files you want to keep, while installing the os on the USB
>>1437441 #
Anonymous
>>1434402 #
>apparently linking to malware
Nod32 screamed like a bitch every time I redirected myself to that archive, yes.
Anonymous
>>1441965 #
Probably not but it looks like it might be easy enough to program. Sad it's not open source it looks.
>>1444509 #
Anonymous
>>1444509 #
Seems like it but that poster implies it's abandoned
Anonymous
>>1441965 #
you can probably write a shodan.io request that approximates the discovery behavior, then use some further queries to get the max upload, etc.
Anonymous
>>1445797 #
I've made similar automation platforms using basic python scripts, you don't need a comprehensive framework to do, e.g. what accelspammer was doing on /a/ 10 years ago
>>1445806 #
oh that's actually really cool, I liked that project
>>1445806 #
Anonymous
>>1445813 #
>it will be fun seeing what happens when he actually does go though with releasing it though.
So many people will seethe over it, it'll be great.
Imageboards really are the perfect place for social experiment testbeds.
Anonymous
>>1447069 #
Sorry I swore off discord femboy trannies, no matter how small and effeminate they may be. The lure of his bussy cannot draw me in
Anonymous
>>1447089 #
>jew reveals shilling
He must have been feeling guilty.
Anonymous
>>1447084 #
Wouldn't the only interesting party of a 4chan spam bot be the captcha solver? Otherwise it's just some simple http requests.
>>1447863 #
Anonymous
>>1447823 #
Not really. Captcha solving is insanely easy. All you have to do is use Puppeteer and use 4chan-captcha-solver and done.
>>1448953 #
Anonymous
>>1449229 #
Not trying to simp/cope for the archive though. It may just be an (((archive))).
Anonymous
my computer stopped booting properly a week ago.
I have files I need to recover from it.
I've been trying to boot from a live OS on a USB stick and then transfer the files, rather than trying to install the operating first. From what I understand, since the hard drive already have an OS installed on it, I'd need to "re-partition" it, which carries a risk of losing data.
I keep running into problems transferring files. I was moving them onto an external hard drive and it kept crashing. Now I'm moving them onto a usb stick but it's taking ages. I don't know if it will ever finish. It doesn't transfer anything for maybe 20 minutes and then it will transfer a couple images.

Should I just take the risk and try install an operating system?
>>1449688 # >>1460213 #
Anonymous
>>1449688 #
there isn't any money involved, so not too important. But things like browser bookmarks, my rss feed, images, videos I will probably never find again (not family videos).
is the risk greater than, say, 10% of losing what's on the hard drive?
>>1449695 #
Anonymous
>>1449690 #
I'd be paranoid about losing the files tbh, if you don't have bunch of loli shit could take it to repair/data place
>>1449704 #
Anonymous
>>1449695 #
nothing like that, no. I'll check if maybe they're a data recovery place and how much they cost in the morning.
Anonymous
I have really good internet for the next 24 hours and I'd like to try download all the videos posted to 2chen's /tv/. what's the best way to do this? I'm kinda retarded but I'll spend a couple hours on this if necessary.
>>1450689 # >>1451205 #
Anonymous
>>1450344 #
yes and no
I usually either use an rsync based tool to backup my shit or manually handle the data, but no automation.
>>1450545 #
>I'd like to try download all the videos posted to 2chen's /tv/
your gonna have to program a scraper my man lol
doing that manually would be impossible and unnecessarily painful, would probably take days
>>1450739 #
Anonymous
>>1450689 #
surely someone has done it already. guess I would've seen it posted though if it were being passed around
Anonymous
>>1450344 #
i plug in an external hdd every week and run freefilesync
then it goes back in da safe
Anonymous
>>1450344 #
People often don't take backups seriously until they experience traumatic data loss.
Anonymous
Lolipiss really needs an option to delete the metadata, I have images that already have embedded links.
Anonymous
Does anyone know why lolipiss/PEE breaks youtube embedding on 4chanx?
When I have it off I can load the embedded youtube videos just fine but when it's on there's some error in the console that sounds like PEE is trying to load the video using a bad request and it's breaking 4chanX's request
>>1457053 #
Anonymous
can I ask retarded questions here?
I don't know anything about scripts, made a bash script for the first time by copy-pasting things from the internet. I made the mistake of executing it on its own instead of executing it in a terminal window. Now I don't know how to stop the process. How can I stop it? I've tried 'ps -A' and there's only one process listed, and when I try kill it nothing happens because the PID changes every (different PID every time I run 'ps -A'). And I can't even be sure this is the correct process.
>>1456059 # >>1456664 #
Anonymous
Hows the extension version of PEE doing? I stopped using it for awhile after it broke with 4chanx, but it seems helpful if I ever want to mess with b4k. Still broke on firefox? Oh, perfect. Caught me in the act
>>1456802 #
Anonymous
I almost forgot I sideloaded PEE in chromium, was wondering why it hasn't updated in a while
Anonymous
>>1456698 #
green lines mean "something has been found, loading..." but might glitch out when the uploaded file glitched up, usually happens wit aussies that use default host, catbox which is banned there.

>>1455238 #
doesn't happen to me on chromium at least

>>1457116 #
Anonymous
>>1457053 #
Hrm, haven't tried in chromium with it. I'm just using it in firefox (userscript version)
The extension version seems to be stuck on an older version for firefox
Anonymous
>>1458400 #
It hasn't been shilled that much.
That's pretty much the only reason, the majority of posters on this board have been /cumg/ anons since it began.
I'm sure if people started shilling it more it would probably become fairly active like the other boards are.
>>1459467 #
Anonymous
>>1458401 #
Has it been properly shilled since the initial making of the /tech/ board and the /cumg/ thread?
>>1459469 #
Anonymous
>>1459467 #
>Has it been properly shilled since the initial making of the /tech/ board and the /cumg/ thread?
Nope.
The /cumg/ thread was made the day the board was created btw.
But yeah the reason there's no other threads here is because this board hasn't been shilled at all on 4chins or anywhere else.
Anonymous
>>1459492 #
Yeah I saw this, unfortunate he didn't include some examples of how it looks like in use on 4chan
Anonymous
>>1449678 #
>I was moving them onto an external hard drive and it kept crashing. Now I'm moving them onto a usb stick but it's taking ages. I don't know if it will ever finish.
for future reference, when the drive starts failing like that you should stop fucking with it and start going through recovery procedures -- shit gets a lot harder when it dies for real like yours seems to have.
Anonymous
>>1460619 #
We came here when this thread and board were created
/cumg/ was a general from 4chins /g/ that was banished for having too much fun.
Anonymous
>>1463405 #
It's not a Linux program though? What are you talking about.
It only has builds for Winglows currently.
Anonymous
>>1463421 #
Fast minimize, I live with my little sister
also this thing auto open thumbs bar on every new file, pretty worthless
>>1463428 #
Anonymous
>>1463430 #
No no I've just never heard of middle mouse being fast minimize inside a program. You could probably just bind that to a hotkey on the system level
>>1463439 #
Anonymous
GYdIqSnWaDsEx(1.6 MB, 1920x1080) image.png
>>1463457 #
So anyway, if someone ever need this feature it is Ctrl+k, it is nowhere to be seen and you can't even config it, pretty obtuse
Anonymous
I'm paranoid about keylogger and any other similar viruses. My old email password is available online so they got it somehow. I also saw recently that windows defender quarantined some virus some months ago.
what's the quick rundown on how to be safe from viruses? should I have one computer that doesn't download anything, even images found with a google search, and one that I'm happy to have a virus on? I have so many videos and images I've downloaded over the years and I'm paranoid about it. I bought some crypto a year ago and it's been sitting in a wallet (I hope), and I'm too scared to log in to check on it because I don't feel it's safe, I feel like I need it to be perfectly safe before I type out the wallet seed. I installed a new browser just a couple days ago but already I feel it's not safe enough, just because I've looked at videos and images on my external hard drives.

Is there any way of recreating every image and video file, but be sure there's no hidden executable scripts or whatever hidden inside it? like removing metadata, but instead removing viruses?
>>1465165 # >>1465424 #
Anonymous
>>1465149 #
your old email password being online probably just means that:
1) you signed up to some website a long time ago
2) that website stored passwords as plain text
3) that website experienced a data breach (quite common for sites that store passwords as plain text!!)
4) you use the same password for other things (bad - change them all, and use a password manager)

as for being safe from viruses, use good judgement
keep an antivirus enabled (nothing wrong with Windows Defender)
only pirate things from approved uploaders, and if you want to be extra anal, compare the file hash(es) against the scene release hash(es) (there is 0.000% chance a legit scene release has a virus, its not possible)
if you want to pirate something of dubious safety, run it inside a virtual machine, or have an airgapped computer only for such things

if you want to interact with your crypto in a safe environment, install a new OS (you can even use a privacy/security-focused one if you like) onto a USB drive
Anonymous
>>1465149 #
>what's the quick rundown on how to be safe from viruses?
Step 1: don't be fucking retarded
Step 2:only run shady shit as admin over VMs
Dats it
Anonymous
>>1463296 #
I'm still on the hunt of something good. Yacviewer is the closest but not there I'm a fag for a GUI so Yacviewer Library but again there features I wish it had but I don't see them being implemented anytime soon since the dev is completely focused on the ios version . I tried CDisplayEX but that shit comes with malware you can't opt out of. There are ways to install without it but fuck that noise.
Anonymous
>>1463296 #
NeeView is great. You can do real time filtering (leveling,sharpening etc) and use higher quality scaling algos.
Warning: its windows exclusive (made by a Japanese guy)
Anonymous
Is lanraragi supposed to get slower as you add more stuff to it? I have 600+ translated stuff added to it and it's starting to chug.
Anonymous
>>1475913 #
Based, now all the retards complaining about PEE can shut up. But 90% of those types probably don't even know how to run a Python script anyways.
>>1479726 #
Anonymous
>>1475963 #
Schizos who think CP is embedded in all their files
Anonymous
PEE is so much fun to mess with I"m glad it's catching on, thank you everyone who put work into thirdeye and things. Keep up the good work
Anonymous
>>1479726 #
The only people actually using it are blackedposters on /v/ and etc
Anonymous
GYdIqSnWaDsEx(223 KB, 2048x946) FUdm-tTUcAAATMh.jpg
Is there any trick to not having 4ch block webm file upload? Randomly when I convert with ffmpeg it seems to trigger some heuristic they have and I have to tweak the ffmpeg params till it works.
>>1482773 #
Anonymous
Can you "ghostpost" with PEE (hidden text) or you need the other userscript
>>1488289 #
Anonymous
So I'm running

ffmpeg.exe -v error -i %1 -f null - > "%~1.log" 2>&1

against a bunch of videos that can play but I know are corrupted, glitched, skipped audio.

It outputs a log but my question is how do I make it readable like how do I know which part of the video is glitched with timestamp preferably.

All I'm getting from the log is a few thousand lines of stuff like
>Error while decoding stream : Invalid data found when processing input
or
>[A @ 0000017d3bf1d4c0] missing picture in access unit with size 225063
>>1490527 #
Anonymous
>>1490527 #
Tried
ffmpeg.exe -debug_ts -v error -i %1 -f null - > "%~1.log" 2>&1

But there's no change to the log, no timestamps to be found.
>>1490678 #
Anonymous
>>1490678 #
Sorry but that's even worse, it prints out a 100k line worth of logs. I'm trying to get something readable here. It's surprising how there's no video integrity check tool that actually works and provides useful information.
>>1490827 #
Anonymous
>>1490817 #
with small script you can parse that log for the errors then check the next_dts_time in next log line
>>1490874 #
Anonymous
>>1490827 #
example

import datetime
import fileinput

lines = fileinput.input()

errs = []
for line in lines:
if line[0] == "[":
errs.append(line.strip())
elif errs:
for x in line.split():
if "next_dts_time" in x:
ts = str(datetime.timedelta(seconds=float(x.split(":")[1])))
if "." in ts:
ts = ts.rstrip("0")
break
print("\n".join("[{}]{}".format(ts, err) for err in errs))
errs = []



ffmpeg -i broken_vid.flv -debug_ts -c copy -f null /dev/null |& python errparser.py

[0:33:33.53][flv @ 0x7fe48c009200] Packet corrupt (stream = 0, dts = 6179347).
[0:33:33.53][NULL @ 0x7fe48c019e00] Invalid NAL unit size (8360 > 5100).
[0:33:33.53][NULL @ 0x7fe48c019e00] missing picture in access unit with size 5104
Anonymous
The arms race against b4k can only end in one way: All VPNs are banned from browsing 4chan archives.

I hope you realize what you're doing, coomers. Is it really worth the cost?
>>1493754 # >>1493893 # >>1504650 #
Anonymous
>>1493742 #
>All VPNs are banned
how did he manage to do such a feat I wonder
Anonymous
New update is nice, the thread watcher showing what kind of embeds are in the thread is a really nice feature.

How accurate is the View Counter? How does it keep track?
>>1494594 # >>1495169 #
Anonymous
>>1494493 #
>How accurate is the View Counter? How does it keep track?
we could easily test it
just pick a random thread on 4chins and we raid it
Anonymous
>>1494493 #
Dev here, i don't collect IP addresses so the counter only counts the number of times a post is reported to the telemetry server (by users that enabled the option). Which means it gets inflated everytime you close and open a thread.
If you want a more accurate estimate of users in a thread, just post a new embed and refresh the count after 6-7 seconds, and it will be the number of open tabs in that thread (which is equal to the number of people currently in the thread if no one has more than one tab open)
Anonymous
Any idea of why coomer.party fails on gallerydl while kemono works just fine?
do I need cookies for that one or something?
>>1499182 #
Anonymous
anyone know how to make theirdeye work on kurobaex? I imported devs config but nothing is showing
>>1501240 #
Anonymous
>>1501240 #
yes but why would anyone use a browser when ex is insanely more functional
and I don't think using 4xhanx on a phone is going to be a nice experience
Anonymous
tfw no iPhone app
Anonymous
>>1501954 #
Lack of advertising leads to lack of usage leads to project death.
It all comes back to advertising, if you want your program to get anywhere, you must advertise.
Also, that ghostpost mixer script was really just a proof of concept it seems. If anyone wants to implement something like it seriously, I'd advise making it an extension and not relying on archives for ghost posting would do the trick.
>>1501977 #
Anonymous
>>1501963 #
I was using together with deleted highlight script, mainly for those threads with many deleted posts
but now i've disabled it, since it seems to get stuck on looking for ghost post or deleted posts on /v/ especifically
fuck my shit
Anonymous
>>1501954 #
it heavily slowed down my browsing so I disabled it

I'm using Sixth Sense though, would recommend
>>1504650 #
Anonymous
>>1493742 #
Is the war still ongoing?
>banned
LMAO. 4chan jannies have been trying to rangeban me for years. I'd like to see archive jannies try.

>>1501954 #
What happened to it? I didn't really pay attention to its development. I've been using a similar script I wrote myself about a year ago that does the same thing.

>>1502058 #
>Sixth Sense
What is it?
>>1504980 # >>1506221 #
Anonymous
>>1509634 #
I use mine in a separate browser profile. Don't care if the botnet knows I'm telling jannies to kill themselves.
>>1511388 #
Anonymous
>>1509933 #
the problem isn't the proxies stealing your data, it's the fact that they use YOU as a peer for other users so someone could be watching cp on your IP
>>1511405 #
Anonymous
>>1511388 #
You are the blackest retard gorilla nigger I've ever seen
Anonymous
>trannydev has some extension installed that's injecitng ads into websites
>he thinks desu has ads because of this
lmao
Anonymous
Is there any documentation on how to use PEE? Like I know you can put the hash in the name of the file, but maybe other use cases or cool tricks or something.
>>1517838 #
Anonymous
Is b4k allowing the extension now?
Was the problem that the script tried to download every image at once to scan it for files, but it turned out only the first few kbs were downloaded so b4k allowed it?
>>1528600 #
Anonymous
CF requests the entire file from the server either way. That's part of the issue.
Anonymous
>>1528594 #
The web extension bypassed any precaution the b4k guy tried to implement, the userscript probably doesn't work still.
>>1528611 #
Anonymous
>>1528600 #
I have the userscript and it shows me the embedded images as placeholder empty images on b4k
Has any solution been thought of that doesn't result in an arms race?
>>1528626 # >>1529214 #
Anonymous
>>1528611 #
>I have the userscript and it shows me the embedded images as placeholder empty images on b4k
Might be the result of a CSP on b4k preventing blobs from loading—which only effects Chromium based browsers from our testing. Haven't checked if that's the case though.
>Has any solution been thought of that doesn't result in an arms race?
I think the b4k guy just kind of accepted this is the way things are now and gave up, lol
>>1529074 #
Anonymous
Can the tranny jannies really do nothing when the only embedded data is a link?
There's even a thread watcher they can use to quickly get all the post with embeds on the site now
>>1528736 # >>1529076 #
Anonymous
>>1528664 #
That would require actual effort, which is probably why they don't do it.
Anonymous
>>1528626 #
>I think the b4k guy just kind of accepted this is the way things are now and gave up, lol
What do you mean? The script can't request images from my servers anymore so I won.
>>1529075 #
Anonymous
>>1529074 #
>The script can't request images from my servers anymore
How so
Anonymous
>>1528664 #
They could easily prevent embedding or ban embedders if they wanted to, but I have a feeling that /v/ janitors enjoy blacked spam
Anonymous
>>1528611 #
The userscript cannot bypass CSP, so you have to use the webextension version.
Anonymous
>he's STILL in this thread
is this what RENT FREE really looks like
Anonymous
whats the best way to install lanraragi on linux?
im not on arch
Anonymous
docker
Anonymous
RIP in piss. I was able to embed shit yesterday on /v/, but nothing lets me now.
>>1539123 #
Anonymous
couldnt the extension encode the URL first before embedding it?
Anonymous
PEE only works in Chrome for some reason, ungoogle browserbros... we lost.
Anonymous
>jannies finally taking a fat shit over embedtrannies
took long enough
>>1539687 #
Anonymous
lol their filter just looks for the api domain names instead of the content serving domain, so they (probably) blocked zz.ht, instead of blocking z.zz.fo, so you can still embed if you use zz.ht in your settings without needing to update
>>1541134 #
Anonymous
I've noticed that embedded posts have been getting deleted more frequently recently. Not all of them, though.
Anonymous
>>1545246 #
>People are embedding multiple long text files to annoy PEE users
Holy obsessed, not a very good method since you can just hide their posts though
Anonymous
>>1545446 #
And for people embedding multiple long files:
blockquote > div {
max-height: 30vh;
overflow-y: auto;
}
>>1545572 #
Anonymous
hey, im a complete retard layman so i cant figure out whats wrong, but I cant see anything embedded on cuckchans /tv/, is this because they jannies have gotten better at blocking it or did i break something? PEE still works on every other board.
>>1552996 # >>1552997 # >>1552193 #
Anonymous
>>1551792 #
reload the page
update the extension
reinstall the extension
check the console for errors
Anonymous
>>1551792 #
>>1552996 #
my guess is that most people don't use it to post (but some do browse /tv/ with it enabled). Last post with it was made june 20th, it doesn't correlate with any kind of blocking. Just make threads if you want it to catch on. If you get blocked open an issue on gitea
Anonymous
GYdIqSnWaDsEx(187 KB, 1022x654) 1654348693262.png
Any working userscript for endless scroll on boorus?
there is a couple on sleazyfox but 80% of the boorus don't work anymore since its 4 years old
Anonymous
>>1564035 #
must be your full-time job, heh
>>1564173 #
>>1564406 #
upload your file (the one you tried embedding in) here, the amount of files you tried to embed, and your host i'll take a look
Anonymous
just got a permaban for posting an embedded pic on /a/
it's the third time i have been banned in the last 2 weeks for some related incident
i guess it's over for me and PEE
it was fun while it lasted
>>1564894 # >>1565137 # >>1569691 #
Anonymous
>>1564899 #
/a/ jannies were always shit, that's why nobody is posting on that board
you can get banned for shittalking berserk
>>1564921 #
Anonymous
>>1564919 #
/v/ jannies suck dick too but in a different way (literaly)
Anonymous
>>1564899 #
fyi Ethereum residential nodes are almost all not banned and none of them have the "this range belongs to a proxy / blocked for abuse" blacklist
>>1565025 # >>1565030 #
Anonymous
>>1565034 #
Paid like pre-paid phone shit, $1.99 for 80GiB, but if you're solely just using it to post then that's a lot for paid shitposting
Not free like Hola botnet where you're also the botnet
>>1565039 #
Anonymous
>>1564842 #
>just got a permaban for posting an embedded pic on /a/
how long after you posted it did the ban occur?
>>1569691 #
Anonymous
>>1501954 #
It probably doesn't work for most people as everyone uses 4chan-x
Anonymous
So have mods finally cracked down on this sort of thing or is it only embedded pictures. Is linking to boorus still good?
>>1566327 # >>1569691 #
Anonymous
A lot of shenanigans can still be done with just the filename to be fair like encoding the files parts of the catbox urls
>>1569691 #
Anonymous
>>1569691 #
Are you that one infamous Fox poster? Something like unicodefag I think it was.
Doesn't your friend from Israel bankroll your proxy venture?
>>1569701 #
Anonymous
GYdIqSnWaDsEx(133 KB, 512x512) 30.png
>>1569698 #
Yes
We can make a discord group or we could join a telegram together and we can have our own league of funposters.
Also have proxies from brightdata.com which is extremely expensive and effective
Oxylabs is also effective but it's been getting hit hard lately because of me.
>>1569710 # >>1573923 #
Anonymous
>>1569701 #
You could always join the /cumg/ Matrix room, that's where a lot of people from the original /cumg/ are.
I'm curious, do you actually use PEE or did someone link you here?
>>1569723 # >>1569727 #
Anonymous
>>1569710 #
im new to PEE and cumg
I discovered it like a week ago or 2
Anonymous
>>1569710 #
>You could always join the /
i will join the matrix room
Anonymous
>that literal who furnigger is here
great
Anonymous
>>1569773 #
Maybe? i don't know I haven't fully tested it
But it works on images lower than 512x512. which is weird lol
>>1569789 #
Anonymous
>>1569689 #
>>1569802 #
So the anti-embed thing we have now is just them checking if we add a file that's too big? I haven't seen an embed thread in awhile so I figured it was just outright dead. That's good
>>1572581 #
Anonymous
>>1571020 #
I think people are just scared of getting banned as they've started cracking down on it. A fix for large files is available for FF and userscript users, chrome webstore users will have to wait as usual.
>>1575329 #
Anonymous
my hard drives keep getting corrupted and I don't know why. not totally corrupted, but they become slow and files disappear or become incomplete (missing data). I always buy the cheapest ones (seagate). I'm too scared to even power them on at the moment because 3 of the 4 make an unnerving rattling sound, I want to get the data off as quick as I can.
I want a setup to archive things where I can be sure they're safe, so I want to start over with new hard drives. Any suggestions on what to get? I'd also appreciate a suggestion on what I should look for in an enclosure, especially if I should go for a RAID setup.
>>1574101 # >>1574741 #
Anonymous
>>1574075 #
>Any suggestions on what to get?
https://diskprices.com/
https://shucks.top/
You can find cheap HDDs easily with these sites, also imo you should probably look into setting up a NAS if you've been using your own PC for the drives, idk what could be causing that kind of corruption but you should certainly get a dedicated NAS enclosure
Anonymous
if i promise to God or my ancestors to not masturbate and i break the promise, I'm worried it will bring me bad luck. but this fear might be the only thing that can help me quit the addiction.
I survived the last No Nut November because I made a promise to God. it works for me. I'm just too scared to do it repeatedly because I'm worried the results will be catastrophic if I fuck up.
>>1575240 #
Anonymous
GYdIqSnWaDsEx(80 KB, 512x512) 24.png
>>1573923 #
sometimes you need to take a break for a year and go back into real life and spend time with real people.
>>1572581 #
>I think people are just scared of getting banned as they've started cracking down on it.
I have residential proxies, that I'm giving out. Go to use midov.pl servers for Matrix and join the cumg server. Someone will invite you.
>>1575349 #
Anonymous
does anyone know how to make a program that would take speech to text and than use keywords from the text to pull images from google or another database
so basically speech to image
it would be very useful for language learning
>>1576036 #
Anonymous
>>1576026 #
some scripting to wire together speech 2 text software and something to look up images
just find good speech software, seems kind of clunky though
Anonymous
>>1579011 #
>>1580170 #
For cunny posts or what? I've been funposting with Hydrus integration and haven't gotten any of my posts deleted, although none of them are cunny.
>>1580384 #
Anonymous
>>1580382 #
embedded just text, and the person I replied to only had text too. It wasn't erping either, just asking for source on things
>>1580440 #
Anonymous
>>1579011 #
i got 1 month ban for "ban evasion" for posting embed file, and i have not even been banned before LMAO
>>1581543 #
Anonymous
My current theory is that jannies have a bias towards letting gay porn art embeds slide.
Take a look at https://boards.4channel.org/v/thread/605604287 for example, no cunny at all or blackedfaggotry, the entire thread is full of embedded gay porn art and none of it has been deleted.
Coincidence? I think not.
Anonymous
>>1581586 #
I saw a mobile client a while back that had (emphasis on had) one with a decent success rate, but I imagine it broke because I'm pretty sure it relied on
Anonymous
>dude just sell your soul to datamining botnets
lol no
Anonymous
what are you going to do when 4chan adds accounts and you become just another annoying namefag again
>>1581927 # >>1581939 #
Anonymous
is there any way of searching all of 2chen/tv for a particular word or phrase?
I usually search "insert phrase site:xxx.com" in google search but google doesn't index anything from 2chen for some reason.
>>1582679 # >>1584689 #
Anonymous
>>1582678 #
someone in archive thread of /tv/ posted a script for that
Anonymous
>>1582747 #
they are probably server pulls given the 30 day warranties

you can get similar price-per-tb when big shuckable external hdds (12-18tb) go on sale, and those drives are a lot faster and more reliable too.
https://shucks.top/
Anonymous
>>1584887 #
it was changed to sometimes have 6 characters instead of 5

and yes i'm fairly confident some of them are hardcoded fails, it will be a very simple one and it just says it's wrong anyway
>>1585721 # >>1585855 #
Anonymous
>>1585717 #
>it will be a very simple one and it just says it's wrong anyway
or maybe this is like recaptcha's hardest setting you sometimes get on eg. Tor
where you complete a whole round of captchas successfully and it says you failed so it can load more rounds
Anonymous
>>1585717 #
I wonder if it's set to force you to sole two in a row on new IPs, I'm noticing it more on proxies.
Anonymous
>>1585677 #
I saw an op with an external file link get moved to b, maybe jannies are pissy about any sort of extra image
Anonymous
>>1587147 #
Seems promising but I've heard it's still in very early development with segfaults galore, I've also never looked into Zig before so many that'll kickstart that language into popularity
still would use node + pnpm for serious web dev though, for now
Anonymous
>>1587147 #
It made me try out a Zig toolchain
>you can easily drop it in and compile existing C/C++ with it!
>but you have to recompile almost all of your libraries because ABI lol
Sticking to gcc/clang, I don't want to learn another LLVM-based memelang

I can at least see the appeal since it's relatively small to download and
>>1587910 #
Anonymous
>>1587882 #
yet-another-LLVM-based*
this implies I know Rust, which I do not
Anonymous
I don't think it's worth the time for me to learn ffmpeg commands. Is there any decent gui program for linux that uses ffmpeg for resizing videos, changing the bitrate, simple tasks like that?
>>1589849 #
Anonymous
It seems that my Hydrus Network can't connect to gelbooru. It's probably because gelbooru is blocked in my country, and I've been able to circumvent it on my browser by using alternative DNS that i've setup in windows, but why doesn't it apply to Hydrus? Can i apply the alternative DNS to Hydrus?
>>1589850 #
Anonymous
>>1589333 #
Might want to file an issue on the Hydrus github, idk what would be causing that
Anonymous
what would a custom ghost post server need to do
does it need to archive 4ch threads all the time
>>1590587 #
Anonymous
>>1590580 #
No
Preferably it would be a websocket server so it could send and receive messages without the server having to log anything
So when you would join a thread it would create a websocket "message room" using the corresponding board & thread ID, or if one already existed you would automatically connect to it
This way the extension wouldn't have to rely on archive owners nor archive anything at all itself
Would probably be really easy to do with Node
>>1590760 # >>1590763 #
Anonymous
>>1590587 #
there should be some state right with db or similar? in case every leaves thread and then comes back the old messages should still be present
>>1590948 #
Anonymous
>>1590587 #
If you don't need to archive anything, you can use the dogars websocket server. It uses the pokemon showdown protocol, except with little to no validation, so you'll be able to create rooms as long as they don't collide with used room names, and content will be preserved as long as there's at least one person connected to the room (when connecting, the server will spit out what was sent in the room since its creation).
wss://dogars.org/chat/
https://github.com/shoedrip-unbound/dogars/blob/master/src/AltChat.ts
https://play.dogars.org/
>>1590948 # >>1591017 #
Anonymous
>>1590948 #
>browser local storage would achieve that just fine I'd think
but an anon newly joing thread would not see any of the older ones right? if it supposed to be super ephemeral then that's fine
>>1591016 #
Anonymous
>>1591016 #
although with >>1590763 # this new joiners would be able to see all the prior messages unless every ghost poster left the thread which works well
Anonymous
GYdIqSnWaDsEx(849 B, 69x27) button.png
>>1591809 #
>>1591768 #
my bad. i am a tourist. i was going to ask how threadwatcher worked on PEE. does it just watch the threads ive viewed or does it scrub all of the board for image embeds. additional question but is there a way to disable or change this little button so it isnt in japanese
>>1591986 # >>1592217 #
Anonymous
what programs and other tools do you use to fap more effectively? I currently use mpv for videos and qimgv for images
>>1591985 #
Anonymous
>>1591882 #
>what programs and other tools do you use to fap more effectively?
my boyfriend
Anonymous
>>1591810 #
to my understanding if you contribute to the thread watcher it'll only 'watch' embeds you've seen in threads you yourself have viewed
Anonymous
>>1591810 #
The thread watcher keeps track of all the embeds on a board that have been automatically reported by users that have enabled the "contribute" checkbox.
For the button, probably add something like that to your custom CSS if you use 4chanX
.navLinks > button:last-of-type {
display: none;
}
Anonymous
>>1592403 #
they just got a fresh batch of discord trannies to sign on as jannies didn't they?
Anonymous
GYdIqSnWaDsEx(73 KB, 748x289) Capture.png
Hello friends
I was told to report here if I got banned while using image embedding
I got permabanned
I've been stuck on a static IP for a year, so I've stacked up a lot of other bans, so I guess it was a good excuse to finally get rid of me.
I didn't think I had 50+ bans on this IP though, but I can't prove it without seeing the information they have.
Anyway it's pretty sad but I don't think I can post on this IP again until I move.
>>1592427 # >>1594503 #
Anonymous
>>1592426 #
it's really unlikely that you really have a static IP unless you are paying for it, it's a premium service that ISPs charge a lot for
more likely you just have a long lease time

do you have your own router, or do you use the ISP's modem-router combo? if you have your own, you can probably change your IP quite easily
go in your router's admin page (it'll be something like 10.0.0.1 or 192.168.0.1 / 192.168.1.1 / etc, you can find it with /ipconfig - it's the Default Gateway) and enter whatever admin credentials are written on your router, or google to find them (it'll probably be like "admin / password")
then search for a feature called "MAC address spoofing" / "MAC address cloning" / "change MAC address" etc
enable that and change the MAC number of your router by one digit, doesn't matter what you change it to

then unplug your router and modem for 30 seconds and plug em back in, you should have a new IP

as for shitposting and ban evading on a more convenient basis, download Mysterium and buy $3 of credit, this will last you years. shitpost on residential nodes (marked "r"). you might find a few that are banned but it won't be many. clear your cookies after you get banned (or remove the ban cookies using eg. EditThisCookie extension)
>>1592429 # >>1592432 # >>1614507 #
Anonymous
>>1592429 #
it's fun because it forms a sexual heirarchy according to typing speed. i own the bussy of all posters with low WPM.
Anonymous
>>1592427 #
Anyway, thanks a lot for trying to help me. My situation is kind of weird cos I'm in a student accommodation building with a shared public IP throughout. I've contacted the service provider and they don't seem to want to change the IP.
>>1592433 # >>1593105 #
Anonymous
>>1592432 #
in that case just go on the IRC and tell mods that your whole dorm is banned and you don't know why it must've been someone else
the mods will make a note on the Ip that it's a NAT IP and stop permabanning it
>>1592434 # >>1604090 #
Anonymous
>>1592433 #
I've give that a go. The Mysterium thing also sounds interesting.
Anonymous
>>1592906 #
>>1593015 #
The rules don't exist so users follow them, they exist as a list of excuses that a mod can invoke to get rid of you
Every single post can be legitimately banned by some vague rule
Anonymous
>>1592432 #
Are you sure the dorm has a shared IP across all students?
My uni allocated each student an IP when connecting to wifi, this IP would be sticky and wouldn't change for long time.
You could force a change by disconnecting, spoofing your computers MAC address (similar to what anon said) and then reconnect.
>>1593618 # >>1593629 #
Anonymous
>>1593105 #
I'm pretty sure. The IP that was banned is the public IP of this network, and it's banned when I connect to it via my phone via Wi-Fi too. And the ISP insist that this IP is not going to change.
>>1593662 #
Anonymous
>>1593105 #
But yeah I have lived in several student accoms before and this is the first time I've seen a shared IP. It's something called "splash access"
Anonymous
>>1592426 #
ask in the midov matrix chatroom someone has almost unlimited residential proxies you can use to shitpost.
Also do what the other anon suggested and clear your cookies and don't try to post until your home ip gets reset
Anonymous
is gelbooru broken for gallerydl?
I get [gelbooru][error] Unable to download data: JSONDecodeError: Expecting value: line 1 column 1 (char 0)
>>1597662 #
Anonymous
>>1597573 #
>JSONDecodeError: Expecting value: line 1 column 1 (char 0)
I got the same error.
When I ran gallery-dl with --verbose, I got this:
>[gelbooru][debug] Using GelbooruTagExtractor for 'https://gelbooru.com/index.php?page=post&s=list&tags=marumoru'

Then I tried to curl the offending url.
curl -i 'https://gelbooru.com/index.php?page=dapi&s=post&q=index&json=1&tags=marumoru&pid=0&limit=100'

That yielded:

<?xml version="1.0" encoding="UTF-8"?>
<response success="false" reason="Search error: Please use your API user credentials. Exceeded maximum queries per day. Yukkuri Shiteitte ne! :&lt;"/>%
>>1597720 #
Anonymous
>>1597662 #
I made an account on gelbooru to get an API key, and I was able to use it to make curl work. However, I don't know how to configure gallery-dl to use the API key for gelbooru.
>>1597862 #
Anonymous
>>1597889 #
Make an account on gelbooru so that you can be assigned an API key.
You should find it under Settings > Options.
It's all the way at the bottom and it looks like:
`&api_key=xxxxxxxx&user_id=101010101`

Once you have that, find gelbooru.py and append it to the URL on line 24.
The original should look like:

url = self.root + "/index.php?page=dapi&s=post&q=index&json=1"


The updated line should look like:

url = self.root + "/index.php?page=dapi&s=post&q=index&json=1&api_key=xxxxxxxx&user_id=101010101"

with your real api_key and user_id.

Save gelbooru.py and it should work. I found gelbooru.py on my system by using:
locate gelbooru.py

It might be in a location like:
/home/anon/.local/lib/python3.9/site-packages/gallery_dl/extractor/gelbooru.py

Good luck hacking your shit up.
>>1597932 # >>1597966 #
Anonymous
anyone know why rating:safe doesn't seem to work on gelbooru anymore?
rating:questionable works still for me
>>1598807 #
Anonymous
4chan changed their filenames to millisecond timestamps today. Apparently archives are breaking from it.
>>1598809 # >>1609711 #
Anonymous
>>1598803 #
you mean microseconds? it was already millis before. I guess that's their fix for the thumbnail bugs
>>1598818 #
Anonymous
Sankaku pics are broken
Gelbooru doesn't work
Which booru is the third one with the most pics that properly work with gallerydl
>>1602339 #
Anonymous
>>1600565 #
Adding to that: having pre-defined directories in the context menu
Anonymous
>>1601551 #
Kill yourself and go back to whatever fucking sub reddit you come from
Anonymous
>>1601533 #
I checked behind 7 proxies and it's a nothingburger, move along
Anonymous
Just saw another embedded cheese post,
Anonymous
someone list all of them for uh reporting to the 3 letter agencies ;D
>>1601929 #
Anonymous
>>1602004 #
There is literally nothing like that there you fucking retard, thread died at 15 replies with just some 2D loli pron embed
>>1602021 #
Anonymous
>>1602004 #
You were clearly never on 8chan during the /b2/ saga, 4cuck faggots no nothing about what true pedoposting looks like.
Anonymous
>>1602016 #
The op is what I"m worried about, it's a video of someone riding a dude and I really hope it's >petite female
Anonymous
>>1602018 #
>total IP count: 25
That's a stark increase from the usual, this thread must've gotten posted on 4cuck or somewhere else
And tv's /ttg/ hasn't come to visit us either so it actually is off-site tourists
Anonymous
>>1602079 #
the PEE reminder now includes a link straight to this thread
expect people who read the news to come here
>>1602157 #
Anonymous
>>1601992 #
how do you crawl pomf clones anyways, was it just manual?
Anonymous
0626402
moooooooom
Anonymous
606264020 another one, same board. Can't argue about this one. Give us the ability to report the host again
Anonymous
0626469
MOOOOOOOOOM
Anonymous
I'm newfig, is there a way for PEE to show embed OPs on catalog?
>>1602303 #
Anonymous
I'm not advocating anything illegal, but if you don't like what you see in embeds, can't you just not use the tool?
It feels like you have to go out of your way to be upset here
>>1602339 # >>1602344 # >>1602331 #
Anonymous
>>1600394 #
So it's not just me whose gelbooru images aren't loading anymore?
/a/thread/240355908#p240356318

>>1602330 #
It's like that Simpson quote. "I think that because this isn't to my taste, nobody else should be allowed to enjoy it." That's always what it is, don't let them convince you otherwise.
>>1602342 # >>1602363 #
Anonymous
>>1602339 #
this one has embeds, not booru id. Or maybe it's a booruid, but the hash is the same so it's skipped.
>>1602349 #
Anonymous
>>1602330 #
Pretty sure there's a huge difference between embedding random porn and embedding things that violate united states law and trying to defend that makes you look pretty retarded anon kun
>>1602348 # >>1602360 #
Anonymous
>>1602344 #
>can you please stop violating the law, I don't like it when others are violating the law
Anonymous
>>1602349 #
Right, I just checked and I'm getting the same API rate limit message as the others

<response success="false"reason="Search error: Please use your API key. Currently you have exceeded maximum queries per day. Yukkuri Shiteitte ne!:<"/>
Anonymous
GYdIqSnWaDsEx(175 KB, 512x512) 9.png
GIVING MORE SHADY PEOPLE RESIDENTIAL PROXIES
JOIN THE MIDOV.PL ON MATRIX.
I AM NOT RESPONSIBLE FOR OTHERS ACTIONS
JUST NOTED
SO DONT GET MAD AT ME NIGGA
>>1602369 #
Anonymous
>>1602344 #
Right now there's a woman being raped outside your house, but that's not a problem for you because you don't see it
Anonymous
>>1602363 #
guess it's time for you to get some residential proxies then kek
Anonymous
>>1602369 #
who is this artist? This will be my new favorite artist
Fuck letodoesart
This shit is super fucking cute
Tell me now OR SUFFER the consequences.
>>1602399 #
Anonymous
>>1602389 #
Ban evasion. They're probably using it as a generic ban reason because I have no fucking clue what ban they think I'm evading. I'm certainly evading one now though, lole
>>1602417 #
Anonymous
>>1602363 #
>>1602408 #
they also deleted a doremi embed, was it you or another anon
join the matrix chat someone will give you residential proxies to shitpost without fearing bans
>>1602430 #
Anonymous
>>1602433 #
sorry tourist shill, /cumg/ is an official partner of Israel, we have a symbiotic relationship
Anonymous
is the chome webstore PEE behind the firefox xpi one? it's not showing me all the embeds
>>1602651 #
Anonymous
>>1602647 #
Yes. The latest version was rejected because they now consider it a "porn extension" and against the ToS. All of the code referencing boorus was removed and a new review is in progress.
In the meanwhile, you can sideload the chrome version, instructions are on the readme.
>>1602655 #
Anonymous
>>1602850 #
Jannies seem to be on high alert now, before it was taking close to an hour for them to catch on. Wonder what happened.
Anonymous
>>1602363 #
more likely that a mod or janny is watching this thread
Anonymous
>>1592433 #
I appealed the ban using the message box, saying that my IP is shared across a student building, meaning the 50+ bans aren't all me, and it got denied.
I don't know if I want to try and use IRC. I'll just keep using mobile data to post if I want to.
Permabans aren't really perma anyway, right? They expire after a while. I'm sure I've seen that happen before.
>>1604129 #
Anonymous
>>1604129 #
Hmmm I thought that a permaban must have expired when I was switching IPs a lot around 3 years ago. Maybe I just got lucky that I never switched into the rangeban area again?
>>1604699 #
Anonymous
I wonder if the jannies over there are starting to use the extension
>>1604171 #
Anonymous
>>1604170 #
Definitely
Even if they aren't, there's enough people who use it purely to call out embeds
Anonymous
"Error: Your image contains an embedded file."
Is anyone else seeing this?
>>1604396 #
Anonymous
Today PEE just added a very based feature taken from DesuDesuTalk
Can you guess what that feature is?
>>1604701 #
Anonymous
>>1604130 #
Pretty sure (some) rangebans expire eventually, don't think normal single IP permabans expire ever unless you appeal them.
Anonymous
>>1604734 #
>>1604735 #
The layman explanation is this:
You can now embed stuff in JPEGs which was previously impossible and the method used is entirely undetectable but more intensive on CPU and bandwidth
>>1604897 #
Anonymous
>>1604897 #
no, only a few bytes difference at most. steganography deals in modifying values rather than adding values
>>1604901 #
Anonymous
>troons finally posting straight up embedded cp on /v/
feels good knowing anyone using this script is going to be permabanned lmao
POSTS OF THE SAME IP WERE VIEWED BY 'Omega'
>>1605196 # >>1605212 #
Anonymous
>>1605199 #
>borrows residential IPs from elsewhere
all of the day bro
Anonymous
you guys really act smug about always being able to change ips. you faggots are going to force them to kill the open access model.
Anonymous
>>1605192 #
Why do you have the extension installed if you don't want to see that sort of content? Are you a paedofile or something?
>>1605220 #
Anonymous
>>1605220 #
I always find it funny how people complain so much about the embeds but never report the actual catbox/pomf/etc links to the report email or whatever they use.
>>1605233 # >>1605839 #
Anonymous
>>1605223 #
Funny you'd mention that, I'm currently in contact with the catbox admin, pee uploads will be blocked soon.
>>1605292 #
Anonymous
>>1605244 #
The same way the script reads them lmao
It has never taken me more than 10 minutes to block a new """obfuscation""", this one might take 15
Anonymous
Not that it really matters at this point because soon there won't be any hosts for the files to be uploaded to, I wonder if the dev is gonna ask mommy for her credit card so he can pay for a server to host his cp
Anonymous
>>1605292 #
I don't know what fucking twisted and deranged reality you people are living in that you think others are okay with you uploading cp to their servers
>>1605367 #
Anonymous
>>1605345 #
I don't know what fucking twisted and deranged reality you live where every single file that's not uploaded from the front page of catbox is always CP, or how there's simultaneously only one person using it to upload CP, and many different people uploading CP, can you pick your narrative and stick to it?
Guess what, people that want to upload cp to catbox are going to do so regardless of that "literally who" extension existing or not, and instead of taking any meaningful action, you're just choosing to ignore reality.
Might as well just close down your entire service if you're afraid of "possibilities" yet refuse any kind of cooperation.
>>1605401 #
Anonymous
>>1605367 #
Already damage controlling preemptively I see
better start looking for server providers that allow cp lmao, good luck
>>1605403 #
Anonymous
>>1605403 #
>umm I swear fbi man, I only uploaded cp because other people could do it too, please understand
>>1605425 #
Anonymous
>>1605485 #
So you don't have anything to do nor to worry about, then. good
Anonymous
>>1605485 #
What kind of "hashes"? If it's the file MS5 it's worse than useless, my browser automatically changes the hash every time I upload a file.
Anyway if you give me the 2 million banned pictures I can help you implement a more resilient hashing scheme.
Anonymous
GYdIqSnWaDsEx(175 KB, 512x512) 9.png
Still giving away residential proxies to random people. I don't care who you are.
I am not responsible for what you use them for. Use at own risk!
Anonymous
I'm a 9/10 and not interested in human women.
Anonymous
So is jpg embedding safe? Or is the extension still on lockdown from mods squinting at any post with embeded content
>>1606805 #
Anonymous
>>1606803 #
mods probably don't see shit since if they used an extension, it'd be the chrome webstore version which is outdated
Anonymous
>>1607021 #
type (hashtag)autobahn and click post, it'll fix your problem
Anonymous
(hashtag)autobahn and click post, it'll fix your problem
>>1607039 #
Anonymous
#аutobahn
Newfags...
Anonymous
>>1607802 #
I also suspect they are being more strict with their embedded file detection
Do you think if people didn't post CP they would have left it alone? Or were they always going to do this?
>>1607932 # >>1607934 #
Anonymous
>>1607926 #
The dev has been monkeying around with lots of things lately, but he's been breaking the script for a while.
Probably a mix of coincidence and urgency.
Anonymous
>>1607934 #
I'm confused... did you not know? Or are you being like that guy who says "uuuhm actually it's just pixels"
There was an embedded cp thread on /v/ and that's probably why mods are dishing out bans and cracking down on embedded file usage
>>1607968 #
Anonymous
>>1608139 #
yeah, they seem to be closely following development now.
Anonymous
If I appeal my ban by saying that I didn't know that there were things embedded in the file, what are the chances they are going to fall for it?
>>1608229 #
Anonymous
I'm a 4chan mod, I'll be unbanning some of you as I see it in the mod log
>>1608480 #
Anonymous
>>1607802 #
Just use JPEG embedding. For now it's exclusive to the Firefox version of PEE so Chrometards (and therefore jannies) won't be able to see your embeds.
>>1608238 #
Anonymous
>>1608238 #
lol yeah gifs created with photoshop have their proprietary extension data, absolutely ebin, this filters 99% of gifs on the internet
>>1608241 #
Anonymous
>>1608276 #
python, node.js, and anything web-related
c++ as well, but it's been some time
Anonymous
>>1608306 #
useful things are cool, but so are fun things, so perhaps... both?
suggest first and i can think about it later
Anonymous
>>1608330 #
You can literally just copy the entire site. All you have to do is write a scraper for the stats and insert them where the stats already are.
>>1608350 #
Anonymous
>>1608354 #
thanks anon
>>1608360 #
same, unless I'm blind I don't think there's any mentions of the source on the 4stats website
Anonymous
reminder that no 4chan mod, catbox admin, or b4k admin has EVER posted here
it's all a larp!
Anonymous
>he's just spamming threads with the underage nudity now
Can't even use the provided link to report anymore as the jpg embedding keks it
It's the Leto furfag doing it, I know it due to him posting halo shit before
>>1608561 # >>1608567 # >>1608740 # >>1608742 #
Anonymous
>>1608552 #
Just uninstall the extension is what I'd recommend, I don't know why people like you willingly want to see stuff that may upset you, just uninstall the extension if you don't want to take the risk.
>>1608572 # >>1608574 #
Anonymous
>>1608567 #
nobody wants to see this bro, we all use lolipiss to post 2d shit
Anonymous
>>1608574 #
News flash: PEE isn't the only extension that can embed things inside images
DDT has existed for a decade now and it uses an undetectable method of embedding, so you could have shit inside your files right now and you wouldn't know and would never be able to know.
>>1608587 #
Anonymous
^
I've used DDT every time thinking I'm going to be banned but never am. It's pretty dead though.
>>1608587 #
Anonymous
>using le russian malware extension
yikes
Anonymous
i hope the FBI silently seizes coom.tech server and rapes you all in prison after your extension phones home again
Anonymous
>>1608500 #
not much point to it, b4kuck enabled CSP so you won't see shit unless you use firefox. at least it won't get you banned.
Anonymous
>>1608552 #
im not responsible for the actions others. This is free country. Sorry :(
Also I'm not doing it. I gave these proxies to bunch of people who added me on Discord throwaway accounts. So suck it up nigger
I also told them extra shit im not saying here
>>1608746 # >>1609098 #
Anonymous
>>1608740 #
>im not responsible for the actions others.
>This is free country.
America? It is well-known that safe harbor laws require you to not know what crimes people are committing with software you made...
>>1608754 # >>1608766 # >>1608750 #
Anonymous
>>1608746 #
>Safe harbor laws are primarily designed to steer young victims of commercial sexual exploitation and sex trafficking away from juvenile justice system involvement by prohibiting their arrest and prosecution as criminals.
what did he mean by this
Anonymous
>>1608746 #
I didn't create any software. I didn't create anything
I just handed them credentials to Oxylabs, Smartproxy, and Brightdata. I don't own the account either. They simply asked for it so I gave it to them. What's wrong with that? I didn't know they were going to do that. They didn't tell me what they were going to use them for. And I gave it to them anyways
>>1608785 # >>1608789 # >>1608856 #
Anonymous
>(Y)(O)
Anonymous
>>1608789 #
okay i will send you a .bak file of omega switch backup or whatever
And you hit restore from file and you can use them
Anonymous
arigato
Anonymous
>>1608766 #
well hope you have realized by now thanks due to your generosity, someone is using said proxies to post these things now and we can't do anything about it.
>>1608863 # >>1608874 #
Anonymous
>>1608856 #
I really don't care. It's not a big deal. If you hate freedom, you shouldn't be on the internet. Just ignore it and move on. That's all you can do for now.
I understand its "ILLEGAL" but it's not my fault. Go hunt down the person who is posting them. Instead of complaining on here. But you can't because ur a powerless white knight on the internet who has nothing else better to do.
I can't shut down the account nor anyone can. It's a enterprise account someone else is paying like 20k a year for it. And the brightdata someone is paying like 10k a year for this shit. So ownage.
>>1608878 #
Anonymous
>>1608863 #
shut the fuck up already and go post your bestiality. we're done talking about it since its practically over
Anonymous
>>1608874 #
It's nobodies responsibility. Americans are just cucks and suck dick to nigger cia glowies. They only know obeying status quo and never stepping out of line. That's all Americans are for.
Anonymous
>>1609038 #
just sorta seemed like a waste of a post on a diary, y'know?
>>1609044 #
true, but also that's contained elsewhere, I used to browse /qa/, flooding the one useful thread is kinda annoying
>>1609044 #
Anonymous
>>1609026 #
did you try 4channel? when hiro switched the domains I could post on /v/ from free starbucks wifi again
>>1609049 #
Anonymous
>>1609026 #
wow cisco is so nice for letting you browse /ttg/ and /cumg/ on public wi-fi
enjoy it while it lasts...
>>1609058 #
Anonymous
>>1609201 #
Matrix only takes 5 minutes
Just use Matrix and use midov.pl server
it's not rocket science
Anonymous
>>1609201 #
>I want to know why the fuck is this being discussed when jannies are instakilling any post with PEE
They really aren't.
PEE threads can stay up for hours on end if they're certain content that people don't care about as much
It's just that people tend to seethe harder over cunny and blackedfags embeds more than gay porn art embeds or whatever else
>>1609282 # >>1609750 #
Anonymous
>>1609281 #
it's like the dog training
post embeds with cp and people seethe
do so repetitively
then post any embed and people will continue to seethe
>>1609286 #
Anonymous
>>1609201 #
>I want to know why the fuck is this being discussed
People were discussing something else before you asked about the guy's Discord. It's not like the guy who was posting CP on /v/ is even around anymore, so you tell me why we're discussing this.
Anonymous
>>1598803 #
Well shit, this is going to break my file age userscript.

>>1598818 #
Are you using the 4chan generated filename? Looks like it's longer now. Maybe I'll be able to fix my script.
>>1609713 #
Anonymous
>>1609736 #
Yeah, it's js. If the filenames are longer or shorter it'll be easy, I'll just make a new regexp and add an if statement. I'll see.
>>1609749 #
Anonymous
>>1609741 #
older ms timestamps will be 13 long
new ones are 16 long
Anonymous
>>1609778 #
oh monononnonononoNONONONONAAAAAAAAAAAAAHHHHHH MY PEE APES
Anonymous
nigger
Anonymous
>tachiyomi library can't be transferred to another phone or used since nhentai cucked all scrapers
>can't even transfer to another site inside the app
it's over...............
>>1610370 # >>1610387 # >>1610677 #
Anonymous
>>1610387 #
turned up cloudflare settings to force a check
idk if it were on desktop cloudflare is easy to bypass, but it's stuck in this cucked app
Anonymous
>>1610725 #
Obviously, but that doesn't matter. I may or may not make a script to match the files and download them on PC.
But, that's besides the point. I'm mostly using them on my phone, for now.
RIP library.
Anonymous
>>1610858 #
so if parents take a picture of their child in the bath tub or something its illegal?
Anonymous
do you ever get that thing where it says Post submitted but it doesn't actually post?
I assume it's an anti-spam thing, it goes away when I switch user-agent
Anonymous
how should I pray if i'm religiously confused? trying to be Catholic feels like I'm larping. I just want to pray to God and to my ancestors and ask for guidance.
Anonymous
>>1611140 #
So they're getting serious in cracking down on PEE? Which means I'll no longer be able to post harmless 2D cunny in Anya and Idolmaster threads...

It's truly over, bros...
Anonymous
No fun allowed
Anonymous
Is it actually over?
Anonymous
any way to add custom encryption to embedded links?
Anonymous
X0652992X
>give someone a gun
>wtf how was I suppose to know he was going to shoot
>>1611624 #
Anonymous
>>1611599 #
>someone buys a kitchen knife
>butchers someone with it
>"UMMMMM WE NEED TO BAN KNIVES GUYS"
based UK
>>1612237 #
Anonymous
>announce to the world you sold knives to people
>no one buys your knives
>go out and stabs others
>wtf how do you know it was me i said i sold these knives to others
wow, is this the logic of a diaberfur
>>1612237 #
Anonymous
>>1611707 #
the diaperfur is the only one left, notice how he only posts here while the recent bad embed threads go active, and how whenever that poster speaks in them in defense, his choice of words are similliar to the diaperfur and how his previous history of images were the same before he started posting the real deal
>>1612237 #
Anonymous
>>1611707 #
What are you talking about? The blackedfags stopped PEE posting a long time ago.
Up until a few days ago it's just been gay porn art embeds (both furry and non-fur)
Anonymous
>constant cloudflare anti-bot checks when accessing anything that isn't a board
wonder what's tripping up the janny dev
literally no one uses non-board pages of the site except to check a ban
>>1612136 # >>1612140 # >>1612237 #
Anonymous
>>1612111 #
the cloudflare didn't reach to the host for me instead but that occured once out of 2 times I got b& today
Anonymous
GYdIqSnWaDsEx(315 KB, 1920x1080) 27598621_Grumpy Chibi Leto_01_Chibi_Leto.png
>>1611725 #
i dont wear diapers
>and how whenever that poster speaks in them in defense
Umm? I don't get it
ur confusing me with someone else, again. Kisses now 0w0
>>1611707 #
>is it finally over? is /v/ actually usable again?
why not just disable it
why u gotta ruin my furry embed threads. ;-;
I never made a blacked embed thread.
>>1612111 #
Someone is using the brightdata proxies datacenter/smartproxy residential proxies I gave them to DDoS the website. I told them not too. .-.
Discordfags are rude and use proxies for notorious and stupid shit
>>1611633 #
What did he mean by this?
>>1611624 #
Lol this
I am not responsible for the actions of others. I just gave away proxies to random people

>>1613055 # >>1612308 #
Anonymous
>imageboard competitor is annoying
solution: post CP
>extension is annoying
solution: post CP
>people are gathering and doing stuff
solution: ban general
Anonymous
>join manga channel on matrix
>latest post is sussy onion
w-what
Anonymous
>post halo threads with embedded bestiality before or constant threads of his avatarfag blue dog
>make it obvious its you the diaperfur
>think of an idea
>give out free proxies out of "good will"
>after that day the threads with your usual shitposting stop
>new threads occur with embedded cp
>one of the first ones was a halo thread with "coincidentally" the same image used before when they posted embedded bestiality
>people start to notice the threads and go complain here
>first the replies were dismissing that it was just another boogeyman
>then the goalpost was moved to don't give a fuck
>one of the posts point out the connection of halo threads
>after that day no more halo threads were made that were embedded
>post around the same time as the spammer
>use the people who you gave proxies to as a scapegoat and pretend this isnt being a textbook accomplice
Almost had us

>>1615115 # >>1615208 # >>1614503 # >>1614576 # >>1615035 #
Anonymous
>>1614481 #
are you saying that this shitposting VPN-using furfag is the person behind the CP posting, and he's giving away IPs to throw authorities off his trail?
>>1614504 #
Anonymous
>>1614503 #
Either its him or someone knows him well enough that he framed him
Anonymous
>>1592427 #
Hey, I just wanted to thank you for helping me out! I am able to post again and I feel powerful. But I will use this power responsibly.
Anonymous
Have you guys thought about making a browser extension for mainstream social media sites? It might be useful for people that want to talk about banned topics on facebook and twitter, like vaccine stuff, or Hunter Biden crack and dick pics. It also could be useful for Chinese Weibo users that want to discuss topics banned by their government, although I would expect their jannies to crack down on them a lot harder than ours.
>>1614561 #
Anonymous
>>1614576 #
don't worry bro, you'll just get a couple of authorities questioning you about being linked to an account if they ever find out
Anonymous
GYdIqSnWaDsEx(3.2 MB, 1286x1800) image.png
I'm confussed as fuck with the fakku "rips" there is a lot of stuff that is not on those 2xxGB packs, where fuck is that stuff being uploaded to?
Why are those rips with thousands of them not including a lot of them?
Like "Fakku 1-8621 Unlimited and Free up to 2022.05.30"
but it have nothing from asanagi or butcha in, and those aren't even on fucking nyaa I had to download them from spagueto tracker
Anonymous
lmaoing at the retards who give FAKKU money
Anonymous
to this day it could be argued that exhentai still needs a successor/replacement as the "main" doujinshi upload repo/archive, but it seems that everyone is pretty slow to actually consider leaving, which is why i'm reluctant to make anything like that
>>1614749 # >>1614752 #
Anonymous
>>1614751 #
Very large-scale and arbitrary takedowns, and the safety of a lot of work in question.
Anonymous
sukebei.nyaa take down torrents due DCMA?
I still don't know why OPT and AB have those fakku things and sukebei don't when most of the shit there is just reuploads from it
>>1614760 #
Anonymous
>>1614753 #
i don't think i can be aware of the existence of nyaa, kem, etc and not question that the issue might be how ex actually operates
Anonymous
i might also add that i find the tagging system very lacking on the current repos in general, but perhaps that's another discussion?
Anonymous
>>1614760 #
Actually, sukebei have way more shit than both of those, it have millions of users while oppai have barely 3k and ab 15k
>>1614766 #
Anonymous
>>1614767 #
EMP does not have nearly as many jav.
I don't believe sukebei has significantly more than private anyway, after someone revealed the regular site's stats.

>Nyaa stats?
Seeders: 1.1M
Leechers: 260k
Snatches: 640M
Torrents: 1.2M (250k seeded)
Total size: 2.5PiB (1.1PiB seeded)

>AB stats for comparison
Seeders: 2.7M
Leechers: 4k
Snatches: 9M
Torrents: 245k (245k seeded)
Total size: 0.8PiB (0.8PiB seeded)
>>1614770 #
Anonymous
>>1614769 #
why do you even want 200k JAV, they are all the same shit, pixelated genitals pig screams and tiny cocks
>>1614771 #
Anonymous
>>1614771 #
To begin with, I don't care about 3DPD, I'm talking about fakku and panda removed shit, someone must be buying that shit to get it to private trackers but the uploader is not the same over oppai and ab so it must come from somewhere else
>>1614777 #
Anonymous
>>1614774 #
OT has an actual system and organization, and a request system, and a (small) community who gives a shit, AND don't get DMCA.
Why would anyone upload to panda when it will get yanked? lmao
>>1614779 #
Anonymous
>>1614779 #
>the uploader is not the same over oppai and ab so it must come from somewhere else
.

The explanation is the same either way. It's not the same people.
Some of the uploads that got removed from panda literally had OT as the source, people have given up lmao.
>>1614783 #
Anonymous
mfw anyone can compile a complete torrent and post to nyaa, but they won't
Anonymous
>>1614807 #
until proper user-uploading is a thing, it is a short-term patch to a long-term problem
Anonymous
>>1614753 #
It's not just english releases. Plenty of imagesets are being taken down, including archives from public and free websites like Pixiv and Twitter. If an artist has given them a license, they will overstep to hell and back.
Anonymous
>>1614843 #
Now that I look at it it does have some more stuff than the dude with the 80GB pack
how the fuck does fakku work, do you have some stuff you can access with a fee and then some stuff you need to buy no matter what or what the fuck
Anonymous
https://nana.my.id/ seem to have those missing stuffs and around 10k things that sem all licensed since there is no censorship
Any idea of how can I download this entire site?
>>1614901 #
Anonymous
>>1614481 #
None of those threads are made by me. I just scrapped the archive and picked a random image and copied the text. Literally that's what everyone else does. And that's what I told everyone else who I gave those proxies to do. Nobody is making there own threads and finding there own pictures. We are all copying random posts.
whatever u say le troll xD
its ur own world. you can form ur own reality and say whatever you want to fit whatever narrative that works for you
>>1615091 #
Anonymous
>>1614576 #
You have nothing to worry about. The "authorities" don't fucking care because we are not a problem.
Only niggercels care about this stupid drama. Nobody is waste resources trying to find some nobody through an ip they can't even trace back. LMAO
>>1616504 # >>1615091 #
Anonymous
>>1614481 #
You don't even need to do all this detective work. All of the embeds have the same handful of shitty videos. Every single time. Three guesses and the first two don't count.
Anonymous
GYdIqSnWaDsEx(531 KB, 1920x1080) image.png
Is there any way to turn my own files into some sort of endless gallery where I can save from like the gallery swallower do pic rel
Basically I want to use this to select stuff that is actually good from mass downloads
Anonymous
JPEG embedding on Firefox is fixed on the latest version of PEE, make sure to update your extension now to continue funposting with JPEGs!
>>1615348 #
Anonymous
>connection errors when posting on /g/
>other people are able to post though
uh oh
>>1615596 #
Anonymous
>>1615589 #
4chan has been dying for the past few days, cloudflare & SSL handshake errors out the ass, so it's probably not just you
>>1615597 #
Anonymous
>>1615596 #
>tfw banned so it doesn't affect me
who wins now, jannies?
Anonymous
>>1615632 #
well yes, but now it's featured right in the PEE menu header
very based
Anonymous
>enabling loading embeds from server cache actually disables showing jpeg embedded content
what did he mean by this
Anonymous
How do you use PEE over that cuck archive, its blocking it
>>1616493 #
Anonymous
>>1616497 #
PEE doesn't have support for 4plebs just yet
If anyone wants to contribute that as a feature I'm sure the PEE dev would appreciate it but for now he's preoccupied with some other features
Anonymous
>>1616520 #
Yeah
>>1616518 #
The LZW stream isn't "extra metadata"
It would also be impossible to even detect in the first place unless 4chan modernizes, and even then I don't know what they would do really. The current JPEG embedding method is also undetectable (f5stegos)
Undetectable as in the current "embedded file filter" would never be able to pick them up, also PEE changed from base64 to base58 to see if the unpaid 4chan dev was just filtering by base64 extensions and it was found he was, which basically means the 4chan dev is a lazy nigger who's doing the bare minimum to filter PEE.
Oh yeah PNG embedding works now because of that btw so update your extensions
Base58 is also harder to detect because it doesn't have any padding extensions like base64 does.
>>1616648 #
Anonymous
>>1616529 #
>The current JPEG embedding method is also undetectable (f5stegos)
If it's undetectable, how does the script read it?
>>1616653 #
Anonymous
>>1616518 #
actual stegano
it's not like they're actually going to reencode the pngs anytime soon because the algorithm is very slow, this means their budget ($0) would get even tighter.
Anonymous
>new thing is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
>i am implementing new thing that is impossible to detect
>gets detected
coomdev please stop jerking yourself off so much you are not that smart
>>1616856 #
Anonymous
>Undetectable as in the current "embedded file filter" would never be able to pick them up
so hard
>>1617017 #
Anonymous
>>1616849 #
the 4chan dev in the dumbest case just run a browser with the extension so he can always detect
Anonymous
>>1616849 #
It's literally an endless game of cat and mouse.
The person who wins is the last person to get bored and give up. Problem is, coomdev is a basement dwelling mentally ill NEET so he probably has more time and autism than 4chan devs
>>1617020 # >>1616859 # >>1616861 # >>1616864 #
Anonymous
>>1616858 #
I don't believe the 4chan dev is in a different situation actually, hah. The only real difference is that he has access to 4chan's back end.
Anonymous
GYdIqSnWaDs(, 01:00, 7.6 MB, 640x360, 4chan_janitors_convention_2015.mkv) janitor convention.webm
>>1616865 #
i don't get it
it's bad enough to moderate for free, but at least mods get to exercise petty power over others and feed their ego. as a developer that guy is just making a product for another, vastly richer man (hiro,) for free
he doesn't even get paid in hot pockets like jannies
Anonymous
>>1616859 #
The script dev obviously, all the effort put in by the 4chan devs so far has been pretty insignificant
If they actually cared that much they could just start stripping metadata from gif and png like they do for jpg
>>1616876 #
Anonymous
>>1616873 #
You're giving him too much credit for spending years before adding in a simple call to exiftool to strip JPGs
and updating ffprobe to verify it works with VP9 webms almost a decade after adding in VP8 webms
but no, he can easily whip out shitty intrusive april fools jokes that still have to be tweaked after they make it out
Anonymous
>>1616529
>The LZW stream isn't "extra metadata"
What do you mean by "LZW stream"?
I know that GIF uses LZW compression on image data.
Is coomdev somehow hiding catbox links inside of that data?
>>1616959 #
Anonymous
>>1616958 #
>I know that GIF uses LZW compression on image data.
>Is coomdev somehow hiding catbox links inside of that data?
yes, that's what "LZW stream" means
>>1616963 #
Anonymous
>>1616959 #
ok then, curious as to how the data is going to be hidden
guess i'll wait and see
Anonymous
>>1617017 #
whoops.
the problem with open source is that everyone can easily see exactly how it ticks. So nothing open source can ever be impossible to detect, just progressively harder and more annoying. like anon said here >>1616858 # it's a game of who gives up first.
>>1617028 # >>1617098 #
Anonymous
>>1617020 #
DDT's method of embedding stuff in JPEGs has existed for a literal decade now and 4chan jannies haven't been able to ever block it, and it's open source
It's a steganographic method so you can see at what point the unpaid dev is willing to give up, when it's no longer just blocking base64 padding extensions with regex but actual modernization of 4chan's backend code, which will never ever happen even if it would defeat PEE
Anonymous
>>1617098 #
DDT has a default key and such, and it still works after a decade(+), so this type of argument is irrelevant
Steganography is the bane of the poor unpaid 4chan dev
>>1617146 # >>1617159 #
Anonymous
>>1617138 #
>DDT has a default key and such, and it still works after a decade(+)
Probably because nobody uses it
And with PEE out of the chrome store, it will suffer the same fate
>>1617249 #
Anonymous
good bait
Anonymous
>>1617098 #
If janitors all install third eye, that will be pretty funny
I can communicate to my janny bros with embedding
Anonymous
Can you stop talking about the shit script and just use it, this general is not the fucking shit script general
>>1617494 #
Anonymous
>>1617480 #
if it's so shit then why haven't jannies done anything about it
Anonymous
i've been using an IPS 4k 60h LG monitor I bought like 3 years ago, it was the cheapest at the time, nothing special.
I've been holding off on getting a better monitor since, autistically waiting on some new technology or for something to become more affordable (e.g. OLED). is this retarded? has anything come out recently that would warrant buying in right now? I'm only interested in colors, contrast, stuff like that, because I only need 4k 60hz.
>>1617866 # >>1617515 #
Anonymous
>>1617506 #
I've always regretted getting an IPS instead of a VA because the colors are better.
Anonymous
>appeal denied
I'm going to be stuck phone posting for a month
>>1617853 #
Anonymous
>>1617506 #
QD OLED is just now coming to TVs, shouldn't be too long before it comes to monitors hopefully
Anonymous
>trying to post my VP9 webms
>says there's embedded shit in it
4cuck dev is losing his marbles
>>1617976 # >>1618601 #
Anonymous
>>1618161 #
my favorite one is that new boomer shooter where there's a tranny portrait and the dev went into full damage control mode saying "actually those pink and blue colors are just the color of security guards in my setting"
kek
Anonymous
Important announcement for Firefox chads:
In-browser auto updates work now, so you won't have to manually update to the latest version of PEE anymore
Anonymous
>>1618573 #
Wow it's almost like the only people who want to post hidden shit intend to use it for illegal activity, who would've thought
Anonymous
>>1618573 #
Wow it's almost like the people who don't like something will post illegal things with it to get it shut down
Anonymous
>>1618573 #
>the OP of that thread posting even worse shit
What are you talking about? The OP of the thread was extremely same, not even "CP" or whatever Americans classify as that these days
>>1618595 # >>1618600 #
Anonymous
>>1618591 #
extremely tame*
It's literally a nothingburger, stop complaining.
Anonymous
>>1618604 #
you dont have the balls to post those images without them being embedded
Anonymous
>>1618573 #
I posted that reaction pic without remembering exactly what was embedded. It was a little more risque than I thought. Lol
Anonymous
>>1618646 #
Child models were embedded in the pic. You should be fine as long as you don't embed shit like that.
Anonymous
>no one is using this for anything but embed CP on threads that last 3 minutes
Why fucking bother
>>1618672 # >>1618677 #
Anonymous
>>1618668 #
I use it, but for my niche I only have two people seeing it, and no one even remarks abou tit
AND then I get a 3 day ban for doing it.
Anonymous
>>1618676 #
There's another script that you can use that "embeds" the sound into the filename and is literally janny approved
>>1618696 #
Anonymous
>>1618675 #
You have free will to think for yourself don't you? You don't need to be told what you can and cannot do with it...
Just use it for whatever you want.
>>1618680 #
Anonymous
>>1618679 #
>You have free will to think for yourself don't you?
yeah and I thought about it and I can't think of any use, and neither can anyone else apparently
>>1618686 #
Anonymous
>>1618676 #
damn that sucks i just used pee to embed some shit in a thread some hours ago, i hope i am not banned forever and ever too
Anonymous
The only thing that bothers me is the diaperfur zoofaggot who's CLEARLY the only one posting the same shitty publicly facing IP cams that are not even explicit at all just to ruin everything else because he's a dramafaggot
>>1618698 #
Anonymous
>>1618680 #
The main purpose when PEE was made literally was to pornpost and stuff without derailing threads, just learn to fucking coom, you're in /cumg/ so learn to coom.
>>1618688 #
Anonymous
>>1618685 #
idk, personally I find those webms really hot. maybe it's just because I like exhibitionism and nudism though
>>1618701 #
Anonymous
>>1618698 #
I don't hate them specifically, but it's the same exact ones with the same blatantly obvious zoophile making them just to rile up jannies
>>1618709 #
Anonymous
i just noticed that you probably can see me write stuff
stop that
>>1618704 #
Anonymous
>>1618696 #
Or maybe it's because one of the scripts was specifically created only to post funny audio while the other was made to hide porn
>>1618716 #
Anonymous
this is a test, lol, does it show up in real time?
>>1618718 #
Anonymous
>>1618714 #
they should be happy that porn is being hosted off-site and isn't public-facing on blue boards
Anonymous
>>1618712 #
>only a day
what did you embed? I feel like the ban times are actually tied to what you ended up embedding, rather than just actually embedding something.
But the ban message is only for that because whoever applied the ban is a lazy fatfuck who doesn't into custom ban messages
>>1618736 # >>1618735 #
Anonymous
I see newfriends from the Firefox updater being fixed are finally pouring in
>>1618721 #
Anonymous
>>1618720 #
I came from the userscript, I just never opened the info section until now so I didn't know about this place
Anonymous
>>1618724 #
god you're making me so hard seeing how embarrassed you are from revealing your stream of consciencness
Anonymous
>>1618724 #
yeah, same, now everyone can see my stupid mistakes
Anonymous
>>1618727 #
Don't you have a specific site to go back to? Like soyjack.party
Anonymous
>>1618719 #
i believe it was from a deltarune thread where i embedded some catti porn lol
Anonymous
>>1618719 #
i kinda doubt that because i posted something with cunny embedded and i only got banned from /v/
Anonymous
to the newfriends:
Press ALT + T to witness heaven
>>1618741 #
Anonymous
they don't get the real high powered meguTV since this is /tech/
only a few losertrons and maisies
>>1618755 #
Anonymous
wow this is amazing, 4chins btfo
Anonymous
i guess i am staying here with all of you for the next 23 hours
>>1618796 #
Anonymous
>>1618746 #
this is true...
could they really handle real meguTV though...
Anonymous
>though
Anonymous
>>1618757 #
you're going to trigger moemin with that image anony
Anonymous
the win95 theme really works well with the live typing
>>1618765 #
Anonymous
i will miss posting embedded ralsei porn
Anonymous
>>1618757 #
based, I just killed it all with ublock so I can stay
Anonymous
>>1618767 #
a latvian man made meguca, for the eponymous meguca channel, which was an /a/ splinter
then a white girl named kpopmin added a few features and made a kpop fan site
moemin (our admin, a 26yo californian autistic bald man) forked that and added some minor stuff

but you can run 99% same board as this by running shamichan, which is what meguca is called now
>>1618770 # >>1618773 #
Anonymous
>>1618766 #
the other active board besides /tv/ and /tech/ is /co/, which is Homestuck (formerly Homosuck's) central
Anonymous
>>1618770 #
Do be warned that Meguca has "interesting" admins to say the least
they will ban you for the most irrelevant shit
2chen is a freeze peach zone, the only global rules are no spam and nothing illegal
Anonymous
How do you even find threads with embeds, catalogs are emoty and they get nuked in no time
>>1618791 #
its on,
Already did
>>1618791 #
Anonymous
>>1618790 #
every screenshot from my phone gets flagged, I have to remove metadata from Kuroba
Anonymous
holy fuck the gallery mode is great!
Anonymous
>>1618790 #
i cant even embed anything lol, can only watch now
Anonymous
>>1618793 #
It's back, I don't know if it had anything to do with me disabling the "server cache" option.
>>1618823 #
Anonymous
>>1618814 #
Yeah it was that, I swore I checked after disabling it again, especially since someone mentioned that before happening too
Anonymous
>>1618790 #
The (unpaid) 4chan dev is a lazy retard, that's why.
Anonymous
>PLZ REPLY TO ME RIGHT NOW STOP TALKING AMOUNGST YOURSELVES
Anonymous
>>1618793 #
If it was JPEG embeds then the new version of PEE uses an optimized method of JPEG embedding that isn't compatible with ones created by the old method
Anonymous
>>1618837 #
2chen won.
4chan lost.
99% of gifs on 4chan are still unusable and the dev doesn't give a shit, they don't give a shit about the users at all.
>>1618861 # >>1618862 #
Anonymous
>>1618849 #
I just tried to use 2chen as if it was like 4chan
Then I saw that the /tv/ board here is a tiktok coomer red board
>>1618866 #
Anonymous
>>1618866 #
i thought it was all about better call saul now or whatever it's called?
Anonymous
>>1618868 #
The name of /tv/'s board owner is literally Hitler.
Connect the dots lmao
Anonymous
>>1618867 #
>I did not mean 3D cunny
This entire website is about dudes jerking to dancing underage girls, dude
>>1618880 #
Anonymous
>>1618873 #
I don't tongue assholes. My waifu tongues assholes
Anonymous
>>1618879 #
Rimming is hot when LGs rim you (and then make me kiss them)
Anonymous
>264.mp4.mp4
Anonymous
>>1618887 #
So pure she have 4 blacklisted toks showing her non existent titsa
Anonymous
>>1618892 #
No, I don't.
Ugly bastards are fucking disgusting.
If they look alright, that's fine.
Also I don't mind me some regular shota too.
>>1618901 #
Anonymous
i just noticed this place is 2chen not 2chan
is this a reference to chen from touhou?
>>1618914 #
Anonymous
>>1618903 #
little girls having sex with sweaty, hairy, unwashed adult men is pure love
Anonymous
>embed of some fag with sand in his goatse asshole
Ok now this is content.
Anonymous
>>1618903 #
There's nothing pure about shotas, you're just a homo in denial.
Anonymous
(, 07:24, 52.3 MB, Infected Mushroom, Becoming Insane) 01 - Becoming Insane.flac
AAAAAAAAAAAAAAAAAAAAHHHHHHH
I'M GOING INSANE AAAAAAAAAAAAAAAAAAAAAHHHH
NIGGERMAN HEEEEELPPPPPP AGHHHH
Anonymous
>>1618915 #
I just really wish this artist didn't also draw scat.
I remember having a wank session ruined the other night after I was watching a cunny vid and at the end of it she started shitting. Right after I had coomed. Fucking hell.
>>1618929 # >>1618932 # >>1618934 # >>1619048 #
Anonymous
>>1618928 #
nigga, just don't look at the scat versions, he do a clean version of every single pic
Anonymous
>>1618928 #
yeah I always hate when the dad has a pee or poo fetish. nobody else wants to see that we just want to see your girl
Anonymous
i was forced to come here after getting banned from all boards on 4chan for posting embedded porn
why are jannies and admins like this?
>>1618937 # >>1618939 #
Anonymous
>>1618937 #
ok but don't you have to pay for that? or install some sketchy thing. a residential vpn would be nice though, then I wouldn't have to spend hours looking for one IP that isn't banned yet
>>1618943 #
Anonymous
>>1618937 #
DONT download ITS a HONEYPOT that MAKES you A part OF the DIAPERFUR that KEEPS spamming SHITTY ip CAMERA webms EMBEDS's botnet
Anonymous
>>1618937 #
i heard about these vpn things on youtube
is nordvpn any good???
Anonymous
>>1618938 #
you only have to pay for it if you don't wish for your IP to be part of their residential IP network, and for faster speeds
Anonymous
do not trust the furry shilling his VPN
he wants more IPs to hide behind after they found his CP embeds
>>1618947 #
Anonymous
>>1618945 #
now that you mention it, I remember there was that weird faggot who kept posting pics of himself and his discord tag and he said he used tuxler
>>1618949 #
Anonymous
>>1618949 #
It's a HONEYPOT that MAKES you A part OF the DIAPERFUR that KEEPS spamming SHITTY ip CAMERA webms EMBEDS's botnet
Anonymous
why are you posting lust provoking pics with no irrelevant questions?
>>1618958 #
Anonymous
GYdIqSnWaDsEx(400 KB, 1920x1080) 44028032_Leto - Kigurumi tease_01_Leto_Kigu.png
>>1618937 #
I have better ones. I got brightdata, oxylabs, and Smartproxy. You can use a VPN with these proxies. And use the Proxy Omega Switch to post. on 4chan
>>1618962 #
I've done nothing wrong. Sharing Proxy credentials to the most expensive residential proxy providers isn't against the law. So quiet little boy :)
>>1618980 # >>1618986 # >>1618960 # >>1618962 # >>1618971 #
Anonymous
>>1618790 #
>false negatives with the filter? I can't post PNGs that I embedded something in, yet sometimes I'm seeming PNGs that have embedded content
Apparently, then the dev adds new filters, he removes old ones, so people on older versions can embed, or repost old files.
Anonymous
>>1618937 #
botnet
I got permabanned because I left it running overnight once
Anonymous
GYdIqSnWaDsEx(1.2 MB, 2585x2505) 19592253_Leto in a onsie_01_OnsieLeto.png
I wouldn't recommend using Tuxler. I own that company. I make shit ton of profit through there lmao
Also you can't use a data center IP with Tuxler. I have that implemented for a reason. You essentially paying for botnet by using Tuxler.
>>1618986 #
Yea and I have credentials to these very popular and expensive proxy providers.
>>1618994 #
Anonymous
>>1618997 #
>/fft/
No, I didn't come from the popular hit videogame Final Fantasy Tactics.
Anonymous
>>1618997 #
I've visited there on occasion but I found this place through PEE's settings in the reminder tab
>>1619008 #
Anonymous
>>1619003 #
Yes indeed
This is the official PEE community center.
If you update your extension you can see the link to this place in the menu front and center
Anonymous
>>1619024 #
I heard they've been using PEE to porn post on blue boards recently
Anonymous
>>1619032 #
One reason you can already guess, another is webms with sounds, or if you use the text feature
>>1619047 #
Anonymous
>>1619032 #
probably to embed ACTUAL video files and more than one image
Anonymous
>>1619032 #
Not that anon, but /trash/ still doesn't take loli and shota content. Maybe that's what the usage was.
Anonymous
>>1619032 #
because they ban for lolis there even though there's no reason to do so
Anonymous
GYdIqSnWaDsEx(1.5 MB, 1320x1980) 1.jpg
>>1619034 #
You have all the pedos you want over DFT, all the element posters, why even bother going there to post SFW kids
Anonymous
>>1619084 #
Yes
There's a reason something like Hola from 2013/2014 hasn't been widespread anymore
Anonymous
patrician furry comic author is funkybun
Anonymous
>western patreon goyslop furshit
Disgusting.
Anonymous
wtf i wanna fuck Nick Wylde now???
Anonymous
human female x male animal is the best pairing though
Anonymous
>PLEASE RESPOND TO ME IM A DOGFUCKER PLEASE RESPOND TO ME BUY MY VPNS
>>1619128 #
Anonymous
Friendly reminder to the newfags
>Supported upload file types are JPEG, PNG, APNG, WEBM, MP3, FLAC, MP4, OGG, PDF, ZIP, 7Z, TAR.GZ, TAR.XZ, RAR, CBZ, CBR.
>The file size limit is something around 100MB (I think)
>>1619124 # >>1619129 # >>1619131 #
Anonymous
i actually got banned from e621 for simply commenting on the martha pic lmao
Anonymous
>>1619121 #
based, the featureset here is so much better than 4chan. hiroshimoot needs to step it up
Anonymous
So, since you are obviously here whats the fucking deal with that ipcams, why is the girl always undressing herself, she must know but whats the entire deal
>>1619130 # >>1619133 #
Anonymous
>>1619125 #
seems like a nudist family. in some vids the parents and the brother are nude too. it's just selection bias from the guy recording and posting.
>>1619136 #
Anonymous
>>1619121 #
webp werks
and for a lot of extensions you have to select "all filetypes"
Anonymous
finally I can post my losless flac furry asmr
Anonymous
just for the sake of fitting in
what jargon is used here? is 4chan jargon accepted? I do not want to say anything mean or rude and then get banned for that
>>1619149 # >>1619176 #
Anonymous
>>1619136 #
being naked is more comfortable, especially if you don't have a/c or it doesn't keep the house completely cool. and maybe they're a sex-positive family. in some clips you can see her touching herself
>>1619145 # >>1619146 # >>1619148 #
Anonymous
>>1619145 #
if i'm trying to cool off yeah. otherwise i try to stay presentable in case I have to leave my room, answer the door, etc. i'll strip if I want to have a good fap session though. sometimes I wear my thong, sometimes just nude
Anonymous
also if girls get so cold so easily then explain why are they always showing off their tummies and legs even during winter
checkmate athiest
>>1619165 #
Anonymous
>>1619160 #
because showing off is more important to them than being comfortable. you'll notice at home when there's no benefit to showing off, they complain about being cold
Anonymous
>PLEASE GIVE ME A (YOU) IM BASICALLY BEING A DOGFUCKER
Anonymous
>>1619135 #
If you go on /tv/ and lurk the threads there you will quickly learn the jargon most commonly used here
>>1619182 #
Anonymous
>>1619176 #
is 2chen's /tv/ any similar to 4chan's /v/? I've been mostly on 4chan's /v/ so I just wanna make sure
even though 4chan's /v/ is always full of anons from /pol/ and such other places
>>1619193 #
Anonymous
>>1619182 #
no it's like 4chan /wsg/ before tiktok threads got banned
Anonymous
GYdIqSnWaDsEx(2.7 MB, 3200x1800) 19785028_Rika & Leto - Happy time!_01_RikaLeto_-_Internal_View.png
>>1619198 #
I got them off craigslist. For like 50$ each husky
>>1619209 #
Yes, if they have some weird condition the owner gets scared like if they get worms or something they don't have the money to heal them. So they end selling them for dirt cheap on Craigslist.
But I have the money so I don't mind healing the poor innocent huskies.
>>1619205 #
not in my area. lmao
Fuck that, I hate spayed/neutered animals. They're boring and don't have that exciting hormones and jumping around walls.
>>1619205 # >>1619209 # >>1619226 #
Anonymous
won't we all get banned if we keep being weird and off-topic like this?
or am i too used to 4chan's moderation i mean this is /tech/ and that tells me this place is for technology not for posting furry porn
i'm not sure
>>1619234 # >>1619227 # >>1619228 # >>1619229 #
Anonymous
>>1619202 #
neutering dogs is honestly abuse imo, if you can't keep watch of them accidentally impregnating a bitch or getting impregnated then don't get a dog
>>1619239 #
Anonymous
>>1619221 #
oh no, I have to cycle my VPN
the beauty of altchans
Anonymous
>>1619221 #
The only rules are against spam and illegal content.
Anonymous
>>1619221 #
Moemin doesn't care as long as you don't post illegal content or spam
Anonymous
does the furry rape his dog #8ball (Hell yeah, motherfucker!)
>>1619238 #
Anonymous
well that seems conclusive ^
Anonymous
GYdIqSnWaDsEx(4.1 MB, 3359x2000) 14181491_Experiment commission - Zelminax - Internal_01_Commission_-_Zel__Leto_Internal.png
>>1619226 #
They are all very attached to me. So I highly doubt they would get impregnate by another dog.
Also I have tons of land. So they have tons of running room to play. So I highly doubt I have to worry about other dogs getting into my yard. idk I don't really think about it.
If they do get impregnated that would mean I would have to stop getting on here. Idk
Anonymous
How outlandish of an idea would it be to be able to connect your PC to your phone's mobile data via a browser extension?
>>1619255 #
Anonymous
well now this is epic and based
so i can basically post whatever i want and say whatever i want
this reminds me of /s4s/
>>1619246 #
Anonymous
>>1619245 #
Yeah, I posted my cock, literally anything is fine.
Anonymous
/ttg/ bros, should we tell the newfags that Moemin is actually Elon Musk, owner of Tesla?
>>1619249 #
Anonymous
the with in the tv vids will grow up a gigantic incest fetish
Anonymous
>>1619256 #
kek, I dont like furry but Im okay with it, if you dont like it just dont watch
Anonymous
>>1619256 #
that's a good thing though, gatekeeping is important
that's how things used to be n 4chan too, before glowniggers started enforcing shit
gay nigger boardwipes were a thing very regularly

>>1619270 #
Anonymous
>>1619255 #
Your residential proxy thing honestly sounds sketchy as shit. But I'm curious, how did you manage to do what you said got your area rangebanned?
>>1619272 #
Anonymous
Why do white women do this.
Anonymous
>>1619262 #
4chan used to be what s4s is now
influx of porn addicts turned it into what /b/ is now
Anonymous
>/>0000000000000001619272
DO NOT OPEN
DO NOT REPLY
DO NOT EVEN THINK ABOUT IT
>>1619278 #
Anonymous
>>1619275 #
what? why? The link says "last 100 bottom", it should work
Anonymous
>>1619279 #
Well yes but on 2chen it's customary to only go for 2000 posts
That's how /ttg/ and the Homestuck threads do it
Anonymous
>open 2chen/co/
>it's nothing but homestuck
I'm actually surprsied.
>>1619307 #
Anonymous
GYdIqSnWaDsEx(10.2 MB, 5333x2999) 20921706_Beach Joy - Leto & Anyu_01_Commission_LetoAnyu.png
>>1619303 #
both
I've had sex with a mare before, they're very loose and squishy. When they're in heat.
Being cut sucks ass. It's hard to cum inside a mare.
Also mares tend to pee on you a lot when you bring them to orgasm.
Yesterday I had sex with a mare she peed on my dick like 4-6 times. It's wild how hard they orgasm from just little penetration
But dogs are nice since there tighter.
Dogs are tighter and make you cum harder though. At least.

>>1619315 #
Currently doing foreskin restoration -.- I hate my foreskin back

>>1619315 #
Anonymous
>>1619300 #
i had to stop going there after it was taken over by anal prolapse fat inflation porn
Anonymous
>being cut
ISHYGDDT
Anonymous
>foreskin restoration

[Return][Catalog][Top][Last 100]
0%
10%
20%
30%
40%
50%
60%
70%
80%
90%
100%
word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word

mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1