Welcome Guest ( Log In | Register )

90 Pages V « < 71 72 73 74 75 > »   
Closed TopicStart new topic
> New Search Engine, No Read, Only Post

 
post Nov 20 2022, 19:50
Post #1441
Manafeed



Lurker
Group: Lurkers
Posts: 2
Joined: 4-March 14
Level 240 (Destined)


Alright after testing it out for a bit, if we can't get the page numbers back for speed, can we at least get more than:
<<First <Prev Jump/Seek Next> Last>>

Jumping ahead by two or three pages as we could before was just a feature I used all of the time since I keep tying to use it now.

<<First <3Prev <2 Prev <Prev Jump/Seek Next> 2Next> 3Next> Last>>

For the other issue of not being able to jump to page 14829 or so to rate random hentai from the past/update tags/etc.:
Workaround....there were what like 30000 pages if you had 25 items on each page:
Click on Last,
Multiply the page number you want (so like 18000 since that's where the good stuff is) by 25 (#of searches per page) and put it here https://e-hentai.org/?prev=________

Unless you are searching by tag...then I really don't understand how to use this site anymore.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 20:19
Post #1442
-terry-



Veteran Poster
********
Group: Global Mods
Posts: 2,750
Joined: 9-August 19
Level 500 (Ponyslayer)


QUOTE(Devoruku @ Nov 20 2022, 20:36) *

Ummm.... What in Gods name is going on here?
Now since everyone and their cat is already throwing their (well deserved) hatred at the new search system I might as well make my comment on it.

While I enjoy the new smoother and cleaner HUD design for searching, to be honest the new search engine is a load of poop - I honestly cannot think of any better way of saying it. For starters the page system was extremely well designed as is since it was easy to navigate as a simple anon on the site. You didn't need to know dates and times and reference numbers just to find a specific artbook or doujinshi, however now the site runs like a image randomizer. The site navigation has no support for new or random users.

While my personal opinion likely doesn't matter to the site-admins as a random anon however I would rather have the old stuff back, I feel like I am scrolling through a low-quality rule-34 porn site with no design or user compatibility. Even low quality scan sites have better navigations.

How exactly did pages help you find a specific gallery? Pages move all the time, something that was on page 30 a week ago won't be on page 30 today, with date/gid it will stay in the same place.
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 20:29
Post #1443
Devoruku



Lurker
Group: Lurkers
Posts: 2
Joined: 29-July 22


QUOTE(255555555 @ Nov 20 2022, 18:19) *

How exactly did pages help you find a specific gallery? Pages move all the time, something that was on page 30 a week ago won't be on page 30 today, with date/gid it will stay in the same place.


Simple, since the galleries were organised by Visible numbers it made locating them much easier. Even if you lost the item (for example some art on page 2 that later moved to page 7) it was still easy to locate due to the numbers. Another reason was that it allowed for faster jumps, lets say you had a search with 300 pages with and loads of galleries and you browsed up to page 147 - now it is impossible to relocate that page since it does not exist anymore.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 21:07
Post #1444
-terry-



Veteran Poster
********
Group: Global Mods
Posts: 2,750
Joined: 9-August 19
Level 500 (Ponyslayer)


QUOTE(Devoruku @ Nov 20 2022, 21:29) *

Simple, since the galleries were organised by Visible numbers it made locating them much easier. Even if you lost the item (for example some art on page 2 that later moved to page 7) it was still easy to locate due to the numbers. Another reason was that it allowed for faster jumps, lets say you had a search with 300 pages with and loads of galleries and you browsed up to page 147 - now it is impossible to relocate that page since it does not exist anymore.

Sure its easier to remember a page number but its not that big of a problem to remember a date instead.
Or better, just bookmarking it in the first place.
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 21:55
Post #1445
Brufh



Newcomer
*
Group: Members
Posts: 23
Joined: 30-January 10
Level 52 (Journeyman)


Page Counter Script

This isn't really a replacement for proper pagination, but it does get a little annoying when you search a tag, you get thousands of results and you have to mentally divide it by 25 (rounded up) to get an accurate number of pages for said result.

The script doesn't work when you get the "Found many results." from using multiple tag filters with a lot of results. Can't really do anything about that since the script just takes the total number of results and they just aren't available.

And obviously it doesn't track your movement through the pages.
(We tried using GM.setValue/GM.getValue, but I dunno JS and the other person didn't have the time, but it should be possible to track every time you click NEXT, to give you an idea of where you are in terms of page in the current session, albeit with limitations, so it wouldn't be a replacement for proper pagination. Here's a [pastebin.com] Pastebin with how far with got trying to implement a pagination system.)

The script in action:

(IMG:[i.imgur.com] https://i.imgur.com/DAaN7gR.png)

Here's the script:
CODE

let searchElement = document.querySelector(".searchtext>p");
let results = parseInt(searchElement.textContent.match(/(\d)/g).join(''));
searchElement.innerHTML += `Pages ${Math.ceil(results/25).toFixed(0)}`;


Just paste it into any of the Monkey add-ons (should work on Chromium but tested on Firefox), and add the domains you want to @match, .org* and .org/tag*, possibly favorites too.

PS: If for some reason you have more than 25 results per page, just adjust the dividing number to that.

This post has been edited by Brufh: Nov 21 2022, 00:03
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 22:10
Post #1446
Anusinspectorr



Newcomer
**
Group: Members
Posts: 72
Joined: 26-April 20
Level 338 (Dovahkiin)


Page selector was very useful and i used it all the time to keep track of where i was in my results and to jump pages fast. It also was a nice gauge on how many results i got when searching specific tags. Please bring it back, this update is so stupid imo
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 23:12
Post #1447
aklfhl



Casual Poster
***
Group: Members
Posts: 198
Joined: 8-February 14
Level 332 (Godslayer)


QUOTE(Brufh @ Nov 21 2022, 03:55) *

And obviously it doesn't track your movement through the pages.

(IMG:[github.com] https://github.com/Meldo-Megimi/EH-Page-Scrobbler/raw/main/sample.png)
[github.com] https://github.com/Meldo-Megimi/EH-Page-Scrobbler
I think this already works pretty well if you just want some fake numbers.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 20 2022, 23:49
Post #1448
romanicyte



Veteran Poster
********
Group: Members
Posts: 2,906
Joined: 4-August 18
Level 456 (Dovahkiin)


QUOTE(aklfhl @ Nov 20 2022, 18:12) *
I think this already works pretty well if you just want some fake numbers.

It would be nice if the purple sliding line vanished after we take the cursor off the time bar.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 00:52
Post #1449
The Pingvinator



Lurker
Group: Lurkers
Posts: 1
Joined: 14-March 15
Level 49 (Artisan)


I'm not smart. Can you please at least give us the option to switch between search engines?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 02:02
Post #1450
Cipher-kun



Killua Enthusiast
********
Group: Gold Star Club
Posts: 3,282
Joined: 15-December 12
Level 419 (Godslayer)


QUOTE(The Pingvinator @ Nov 20 2022, 22:52) *

I'm not smart. Can you please at least give us the option to switch between search engines?

No. Old one is being deleted.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 03:30
Post #1451
acemonkeyeye



Lurker
Group: Lurkers
Posts: 2
Joined: 17-May 16


QUOTE(Noni @ Nov 20 2022, 16:53) *

please read the explanations in this tread. There is no way back. Trust tenboro or go elsewhere.


Fair enough. Thanks for the advice. I'll take it.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 11:54
Post #1452
Wincest90



Lurker
Group: Lurkers
Posts: 2
Joined: 21-November 22


Well, congratulations. Your update finally broke (fixed?) the work-around I used for my favorite blacklisted tag.

Sure. I could search each individual family member. Because, for some reason, incest is blacklisted but sister, mother, brother, and son aren't (and daughter is). You know, because consistency. But that is way more effort than it is worth.

Anyway...while I always found it irksome that someone would be okay with violent tags like rape or snuff, but would then block a tag that often contains nothing but consenting adults because it personally gives them the ick -- I was enough of a pragmatist to ignore it while I had a work around. Now that it's gone, the hypocrisy is a bit too much.

So I'll heed Noni's advice and take my site traffic elsewhere.

Good luck with update.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 11:57
Post #1453
Tenboro

Admin




Minor update:

- Added some significant optimizations for a frequently used search strategy for when multiple name+tag/comment search terms are used and at least one of the name+tag terms has less than 10000 hits. (For some cases this will reduce processing time by >90%).

- The search query parser will now handle various cases where repeated or redundant search qualifiers are used, such as weak:tag:foo or tag:tag:tag:bar.

The former is a fairly complicated addition, so let me know if you spot any weirdness in search results after this.

QUOTE(Wincest90 @ Nov 21 2022, 10:54) *
Well, congratulations. Your update finally broke (fixed?) the work-around I used for my favorite blacklisted tag.


You're doing a really bad job describing exactly what your workaround was, what it was working around, and how it is now broken, but good luck elsewhere I guess, person who registered 27 minutes before making that post.
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:05
Post #1454
nabnabnab



Lurker
Group: Recruits
Posts: 5
Joined: 8-May 08
Level 222 (Destined)


Hello, while I'm not happy to see the pages number go, the explanation make sense, and more than anything else, this is Tenboro's site, and if he want to change stuff about it, well, that's it.

Moreover, it's not like any alternative are glowing either.

Thanks for taking care of our hentai needs!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:17
Post #1455
ChickenSoupAlltheWay



Newcomer
**
Group: Members
Posts: 53
Joined: 13-February 12
Level 104 (Lord)


This update sucks. It's not like doujins get scanned and uploaded the exact day it gets released so it's completely useless at least for me. You could probably purge like 50% of the galleries because a lot of these that get uploaded are pure fucking garbage, and they're mostly Western/American shit. It's the same problem on Kemono too where 90% of Patreon stuff is just dog water trash so you end up ignoring it, except for a handful of actually decent Western artists that you already knew from external sites like Twitter etc.

This post has been edited by ChickenSoupAlltheWay: Nov 21 2022, 13:18
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:34
Post #1456
Keratos



Newcomer
*
Group: Members
Posts: 36
Joined: 10-June 15
Level 263 (Godslayer)


QUOTE(ChickenSoupAlltheWay @ Nov 21 2022, 14:17) *

You could probably purge like 50% of the galleries because a lot of these that get uploaded are pure fucking garbage, and they're mostly Western/American shit.


Kind of forgot about it, we talk about index getting big and search functionality killing servers, but then there are galleries with 2-5 pages and weird cartoonish style that I personally wouldn't say are worth looking at. But we are entering a gatekeeping area of what's wank worthy.

And it feels like voting/star system doesn't solve that issue. I have seen 2 galleries next to each other which are from same author and simillar content nuked into ground with 1 star and the second one keeping strong 4+ just because of first few votes. And because of that you can't really expunge galleries that are 1 star as kind of filter.

This post has been edited by Keratos: Nov 21 2022, 13:41
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:43
Post #1457
stabbybelkar



Lurker
Group: Recruits
Posts: 8
Joined: 31-July 10
Level 28 (Apprentice)


So, is there any way for me to have normal galeries AND expunged galleries included in the same search? Pages being removed sucks balls, but I can at least semi-begrudgingly accept that it was done because the site owners were too cheap to shell out for the needed hardware upgrades. However I refuse to believe that making the user have to make two searches just to get all the search results they asked for will do anything other than cause even more stress on the servers than they were already going through, and it's a massive pain in the ass for the user side of things.

Alternately, can anyone recommend me any good alternate sites, preferably scraper sites that completely copy all of the galeries on this site wholesale? Because if e-hentai can't provide a useable UI that gives me what I want, then I'm more than happy to go somewhere else.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:49
Post #1458
Wincest90



Lurker
Group: Lurkers
Posts: 2
Joined: 21-November 22


QUOTE(Tenboro @ Nov 21 2022, 11:57) *

You're doing a really bad job describing exactly what your workaround was, what it was working around, and how it is now broken

Why, in the name of artistic depravity, would I describe any of those things?

It is a work around to a blacklisted item. It hardly seems in my, or anyone other pervs', best interest to tell you how I'm circumventing site rules. From my perspective, you are just as likely to double-down and make sure the workaround is completely unusable for anything as you are to make it useable for this again, probably more so.

Anyway... as it turns out, it didn't so much break the workaround as add a very minor step. One that I don't fully understand why it would need. But whatever, it works now. All is as it should be.

This post has been edited by Wincest90: Nov 21 2022, 13:52
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:56
Post #1459
ChickenSoupAlltheWay



Newcomer
**
Group: Members
Posts: 53
Joined: 13-February 12
Level 104 (Lord)


QUOTE(Keratos @ Nov 21 2022, 19:34) *

Kind of forgot about it, we talk about index getting big and search functionality killing servers, but then there are galleries with 2-5 pages and weird cartoonish style that I personally wouldn't say are worth looking at. But we are entering a gatekeeping area of what's wank worthy.

And it feels like voting/star system doesn't solve that issue. I have seen 2 galleries next to each other which are from same author and simillar content nuked into ground with 1 star and the second one keeping strong 4+ just because of first few votes. And because of that you can't really expunge galleries that are 1 star as kind of filter.

There are galleries that are just nothing but random collections of images, those are a definite purge. As for gatekeeping, who is seriously going to miss Western trash like this?

g/2381889/717a669e31/

Like come on, you gotta have at least something to call a standard. There are also tons of galleries that are just 4-6 pages because the uploader wants to get easy currency or whatever trash that motivates people to upload garbage on this site.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Nov 21 2022, 13:57
Post #1460
Keratos



Newcomer
*
Group: Members
Posts: 36
Joined: 10-June 15
Level 263 (Godslayer)


QUOTE(stabbybelkar @ Nov 21 2022, 14:43) *

So, is there any way for me to have normal galeries AND expunged galleries included in the same search?


Not for now.

QUOTE(stabbybelkar @ Nov 21 2022, 14:43) *

Pages being removed sucks balls, but I can at least semi-begrudgingly accept that it was done because the site owners were too cheap to shell out for the needed hardware upgrades.


Dude, as it stands i'm suprised this site is still working, what do you mean by being too cheap. I doubt this site is turing enormous profits. Or who knows?

QUOTE(stabbybelkar @ Nov 21 2022, 14:43) *

However I refuse to believe that making the user have to make two searches just to get all the search results they asked for will do anything other than cause even more stress on the servers than they were already going through, and it's a massive pain in the ass for the user side of things.


I mean, the only thing i went to expunge galleries is to search for removed copyright content. Under normal circumstances and as normal user, no one really wants to see them, they are meant to be put in trash. And if you are talking about reuploaded stuff for visibility that is more of feature request as a rotating galleries showing you the good stuff from past that are already there somewhere.

I would kind of like a feature where if some gallery in another language is uploaded and i have this language filtered out, i would either see the non-translated gallery or english version.

And maybe a gallery which is only a link to the anthology with it's own separate tags so you actually know what's in there. So that one good title can be extracted from the rest of mediocre stuff, and your search result for author/tag can hit it.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


90 Pages V « < 71 72 73 74 75 > » 
Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 15th June 2025 - 21:47