Tool Others F95Checker [WillyJL]

5.00 star(s) 25 Votes

malaac2025

Active Member
Mar 17, 2024
918
731
Did you consider that maybe your socks proxy isn't working? Or isn't configured correctly? Also, it is authenticated or not?

and yes, mega is not supported by integrated browser, the integrated browser is a smaller browser will less features, it doesn't support many types of videos for example and mega does some weird stuff it seems. What you should do is setup a download manager like jdownloader2 that adds links when they are copied to clipboard, then you can middle click the download in f95checker and it will unmask the link then copy it, thus adding it to jdownloader2
I have verified verified it is working.

Tested in Apps
Firefox Extension - Proxy Container
Qbittorrent
FMD2
JDownloader 2

This is a NordVPN paid proxy server. I tried several of the other US proxies same error in this checker.
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,502
1,326
I have verified verified it is working.

Tested in Apps
Firefox Extension - Proxy Container
Qbittorrent
FMD2
JDownloader 2

This is a NordVPN paid proxy server. I tried several of the other US proxies same error in this checker.
you still have not answered, is it authenticated? does it need username and password?
 

doitm8

New Member
Aug 7, 2019
7
5
For some reason i cant use RPDL anymore, i get this error message anytime i try downloading from the app

Code:
Traceback (most recent call last):
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 271, in open_torrent_file
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 246, in get_torrent_file
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 232, in has_authenticated_tracker
bencode2.__bencode.BencodeDecodeError: invalid bencode prefix '{', index 0
 
  • Like
Reactions: Aksher

GrammerCop

Well-Known Member
Donor
Mar 15, 2020
1,903
1,865
For some reason i cant use RPDL anymore, i get this error message anytime i try downloading from the app

Code:
Traceback (most recent call last):
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 271, in open_torrent_file
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 246, in get_torrent_file
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 232, in has_authenticated_tracker
bencode2.__bencode.BencodeDecodeError: invalid bencode prefix '{', index 0
Be sure to include the version number. It really helps.
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,502
1,326
For some reason i cant use RPDL anymore, i get this error message anytime i try downloading from the app

Code:
Traceback (most recent call last):
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 271, in open_torrent_file
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 246, in get_torrent_file
  File "D:\a\F95Checker\F95Checker\modules\rpdl.py", line 232, in has_authenticated_tracker
bencode2.__bencode.BencodeDecodeError: invalid bencode prefix '{', index 0
Your token has expired. I added code to handle this happening and refresh the token in latest beta. If you don't want to update you can just clear the rpdl token and log in again
 

GAB

Salty Montrealer
Donor
May 10, 2017
2,439
18,513
not sure if this is a realistic request but would it be possible to get alerted when a thread has an update in its changelog?
for exemple a game thread has an update, f95checker will show the version naming changes and if I want more details, I'd press the button to see solely that game within f95checker only to see the changelog and the new version is not included in the changelog

it's a very situation element and since f95checker will not alert me about it, there will be no way to be notified if/when new text is added to the main post of the game thread until possibly a new version is out
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,502
1,326
not sure if this is a realistic request but would it be possible to get alerted when a thread has an update in its changelog?
for exemple a game thread has an update, f95checker will show the version naming changes and if I want more details, I'd press the button to see solely that game within f95checker only to see the changelog and the new version is not included in the changelog

it's a very situation element and since f95checker will not alert me about it, there will be no way to be notified if/when new text is added to the main post of the game thread until possibly a new version is out
i suppose detecting changelog changes clientside and showing them in the usual update popup would be viable, but the root problem remains unsolved.

there is no way to know if changelog has changed on f95zone without requesting the full thread from the forum. and the whole point of the cache api is *not* doing that, because that means DoSing f95zone. the cache api uses every single context clue available to know when new info is available, but there is no context clue for changelog changes. so if youre lucky: a review is added that changes the forum score and thus triggering cache invalidation which means all new data is fetched and so also a new changelog (or any other similar thing like a tag being added or game/dev name changing, as those can be detected without fetching the full thread), or worst case scenario: no externally noticeable change is made to the thread until the cache expires, which means the changelog could go undetected by the cache api for an entire week even if it was added already to f95zone.

i have no way of fixing the root problem with that unfortunately.
 
  • Like
Reactions: GAB

ascsd

Member
Jul 26, 2021
104
83
C++ is an awfully messy and overengineered language, if im going low level i want it to be dead simple too and i want my code to do what it says, C++ doesnt do those.

only things im missing out with using C instead of C++ are standard library extras, of which i would only use std::path, std::string and a few containers like std::vector and std::queue, but nothing that cant be done in C, C++ just comes with them built in; im already using cwalk and some extra handling of my own for paths, for strings vectors and queues there is M*LIB.

and, it didnt influence the decision but, yeah most of the libraries i use are in C: libcurl, glad, sdl3, sqlite3; the only one in C++ is imgui, and for that im using the official dcimgui auto-generated bindings by the imgui team so thats basically C too.

im sure it would make some more efficient and get the job done quicker, but i couldnt stand developing in C++ to save my life.

also, ive been using C for the past 2 and a half years now with flipper zero firmware development, but that didnt cause my hatred for C++, only the interest in C.

the only other option i wouldve maybe considered is rust, but ive never used rust and also i generally dont like "magic" in programming, everything about rust sounds like magic and "trust me bro".
fair enough, my preconcieved notion was c needs alot of boilerplate to achieve the same thing that was abstracted away in c++. But ive also heard others mirror your sentiment about how messy c++ is
i guess simple but slower beats faster but convoluted

looks like ill just try "vibecoding" w go and learning from what the ai spits out
 

WillyJL

Veni, vidi, vici
Donor
Respected User
Mar 7, 2019
1,502
1,326
fair enough, my preconcieved notion was c needs alot of boilerplate to achieve the same thing that was abstracted away in c++. But ive also heard others mirror your sentiment about how messy c++ is
i guess simple but slower beats faster but convoluted

looks like ill just try "vibecoding" w go and learning from what the ai spits out
i hear good things about go, sounds like a solid compromise. me, ill stick with simple and slow until ai takes my job (if ever, i dont believe it will happen ever)

and yeah C does need more boilerplate often, but much of that boilerplate is already written by others thankfully. M*LIB especially makes it a lot less painful for me.
 
5.00 star(s) 25 Votes