Jump to content

Recommended Posts

Posted (edited)

I sincerely hope that constantly posting offtopic isn't a form of senility. :P In the last few pages, one doesn't get anything about the actual topic here. @roytam1 must have a very thick skin. :whistle:

Edited by AstroSkipper

Posted

You're not looking hard enough.  Page 1 of this "Part 5" discussion is all basically on-topic.  Tons of OT on Page 2, on Page 3, on Page 4, and that's where I stopped.

TONS of OT here, Mr. OT Police.  And yeah, same goes for "Part 1", "Part 2", "Part 3", and "Part 4".

GOOD THING TOO, it's actually ROYTAM'S THREADS that brought me here to MSFN.

No clue what my search-engine search was at the time, but the ROYTAM THREAD was in the TOP THREE for the results.

Been here ever since.  But YES, to your point, maybe some days I should just READ instead of TYPE.  :}

Posted (edited)
17 minutes ago, NotHereToPlayGames said:

TONS of OT here, Mr. OT Police.

If you call me Mr. OT Police, then I regret to inform you at this point that you are the Mr. OT Master. :o

Edited by AstroSkipper
Posted (edited)

@roytam1 eBay must have recently changed their layout. Pages with items lead now to a 100% CPU utilisation on my single core machine, even with uBO. The actual causer seems to be the item images and in some cases also the item description. Weeks ago, it was working fine. Now, surfing eBay with New Moon 28 is no fun anymore. :angry: BTW, same issue in Mypal 68. :realmad:

Edited by AstroSkipper
Update of content
Posted

Interlink lost mails again. Maybe the problem was that I updated it...since I usually don't have that kind of problems with UXP stuff, I didn't note the version, it was from the time Tobin decided to rage quit, but there were subsequent updates.

Maybe Google changed something? Seems doubtful, though. I've set it to sync only the mails from last 30 days now instead of everything today, I don't really need all of them locally, will see if it happens again. When it happened the first time, I also moved the profile to more spacious disk.

I could go to Epyrus or roytam1's MailNews, but since I haven't a clue what the issue is, whether it's an actual regression and if it was fixed or not, I don't know if it's worth the bother. Or maybe the issue has always been present and it only happens after you have certain amount of mails, over 20 GB in my case.

Posted
11 hours ago, AstroSkipper said:

@roytam1 eBay must have recently changed their layout. Pages with items lead now to a 100% CPU utilisation on my single core machine, even with uBO. The actual causer seems to be the item images and in some cases also the item description. Weeks ago, it was working fine. Now, surfing eBay with New Moon 28 is no fun anymore. :angry: BTW, same issue in Mypal 68. :realmad:

Here are two screenshots taken from an article on eBay (Germany) in New Moon 28:

New-Moon-28-ebay-de.png

New-Moon-28-ebay-de-2.png

All images are now much bigger than before. And CPU utilisation remains permanently at 100%. :realmad:

Posted

So performance issues on UXP are popping over and over again. I checked eBay and it doesn't seem to be related to JavaScript. Those 100% would be 4,166666666666667% on a high-end gaming rig with 24-core CPU. :P I like Linux's way of reporting CPU usage better.

Posted (edited)

The performance was bearable some weeks ago. I assume it is more CSS related. It seems to be a problem with images. If images are disabled by uBO on eBay, the CPU utilisation becomes normal again. BTW, there is a new, images related url in the uBO popup on eBay. Something with "fast". :buehehe: Apart from that, a faster CPU doesn't make the pictures any smaller on eBay in New Moon 28 or Mypal 68:P Anyway! This is probably another modern, bells and whistles improvement from eBay for the bin. :thumbdown
cursor.gif
P.S.: The new, images related URL in the uBO popup on eBay is ebayimg.map.fastly.net.

Edited by AstroSkipper
Update of content
Posted
16 hours ago, UCyborg said:

Do you honestly expect me to let my graphics card idle while the CPU has to perform graphics tasks? That's not a solution. But it is passed around as such on quite some forums...

2 hours ago, AstroSkipper said:

The performance was bearable some weeks ago. I assume it is more CSS related. It seems to be a problem with images. If images are disabled by uBO on eBay, the CPU utilisation becomes normal again. BTW, there is a new, images related url in the uBO popup on eBay. Something with "fast". :buehehe: Apart from that, a faster CPU doesn't make the pictures any smaller on eBay in New Moon 28 or Mypal 68:P Anyway! This is probably another modern, bells and whistles improvement from eBay for the bin. :thumbdown
cursor.gif

Ebay.de works well here, I believe apart from site un-optimizing/bloating, P4's 2 FPU pipelines aren't doing it any favors (P3 had 3, Athlons too). I had maybe the fastest P4, single core engineering sample, of Cedar Mill with HT (3.6GHz) in one of my machines and it was so sadly slow compared to normal processors. Intel debauchery, nothing more, too big to fail they said, now look at them - delisted from DOW, replaced by nVidia and rightfully so.

Posted (edited)

That link (but also the images) has so many tracking parameters in the URL,that it is a very bad idea to use an extension (and browser) with no filtering capabilities.

But if tracking is not your priority,do not consider these written words of mine important.

And good luck with any exposure to a possible privacy violation to third-party as well.

Edited by Sampei.Nihira
Posted (edited)
1 hour ago, AstroSkipper said:

Then try, for example, this link in New Moon 28 and have fun :Phttps://www.ebay.de/itm/186679189985

You need to disable -webkit-animation

Unsure your best route to do so (I disable via Proxomitron).

You could use a custom style sheet to override.  Below should work.

* {
    animation-delay: initial !important;
    animation-direction: initial !important;
    animation-duration: initial !important;
    animation-fill-mode: initial !important;
    animation-iteration-count: initial !important;
    animation-name: initial !important;
    animation-play-state: initial !important;
    animation-timing-function: initial !important;
    animation: initial !important;

    -moz-animation-delay: initial !important;
    -moz-animation-delay: initial !important;
    -moz-animation-direction: initial !important;
    -moz-animation-fill-mode: initial !important;
    -moz-animation-iteration-count: initial !important;
    -moz-animation-name: initial !important;
    -moz-animation-play-state: initial !important;
    -moz-animation-timing-function: initial !important;
    -moz-animation: initial !important;

    -webkit-animation-delay: initial !important;
    -webkit-animation-delay: initial !important;
    -webkit-animation-direction: initial !important;
    -webkit-animation-fill-mode: initial !important;
    -webkit-animation-iteration-count: initial !important;
    -webkit-animation-name: initial !important;
    -webkit-animation-play-state: initial !important;
    -webkit-animation-timing-function: initial !important;
    -webkit-animation: initial !important;

    transition-delay: initial !important;
    transition-duration: initial !important;
    transition-property: initial !important;
    transition-timing-function: initial !important;
    transition: initial !important;

    -moz-transition-delay: initial !important;
    -moz-transition-duration: initial !important;
    -moz-transition-property: initial !important;
    -moz-transition-timing-function: initial !important;
    -moz-transition: initial !important;

    -webkit-transition-delay: initial !important;
    -webkit-transition-duration: initial !important;
    -webkit-transition-property: initial !important;
    -webkit-transition-timing-function: initial !important;
    -webkit-transition: initial !important;
}

Edited by NotHereToPlayGames
Posted
19 minutes ago, NotHereToPlayGames said:

You need to disable -webkit-animation

Unsure your best route to do so (I disable via Proxomitron).

You could use a custom style sheet to override.  Below should work.

* {
    animation-delay: initial !important;
    animation-direction: initial !important;
    animation-duration: initial !important;
    animation-fill-mode: initial !important;
    animation-iteration-count: initial !important;
    animation-name: initial !important;
    animation-play-state: initial !important;
    animation-timing-function: initial !important;
    animation: initial !important;

    -moz-animation-delay: initial !important;
    -moz-animation-delay: initial !important;
    -moz-animation-direction: initial !important;
    -moz-animation-fill-mode: initial !important;
    -moz-animation-iteration-count: initial !important;
    -moz-animation-name: initial !important;
    -moz-animation-play-state: initial !important;
    -moz-animation-timing-function: initial !important;
    -moz-animation: initial !important;

    -webkit-animation-delay: initial !important;
    -webkit-animation-delay: initial !important;
    -webkit-animation-direction: initial !important;
    -webkit-animation-fill-mode: initial !important;
    -webkit-animation-iteration-count: initial !important;
    -webkit-animation-name: initial !important;
    -webkit-animation-play-state: initial !important;
    -webkit-animation-timing-function: initial !important;
    -webkit-animation: initial !important;

    transition-delay: initial !important;
    transition-duration: initial !important;
    transition-property: initial !important;
    transition-timing-function: initial !important;
    transition: initial !important;

    -moz-transition-delay: initial !important;
    -moz-transition-duration: initial !important;
    -moz-transition-property: initial !important;
    -moz-transition-timing-function: initial !important;
    -moz-transition: initial !important;

    -webkit-transition-delay: initial !important;
    -webkit-transition-duration: initial !important;
    -webkit-transition-property: initial !important;
    -webkit-transition-timing-function: initial !important;
    -webkit-transition: initial !important;
}

Thanks for your suggestion! :) I'll try it out later on my Windows XP computer. Since Stylus no longer works in Mypal 68, and Stylish is no longer installed in New Moon 28, I will try to inject the code into the eBay pages via the userContent.css file.

Posted
1 hour ago, Sampei.Nihira said:

That link (but also the images) has so many tracking parameters in the URL,that it is a very bad idea to use an extension (and browser) with no filtering capabilities.

But if tracking is not your priority,do not consider these written words of mine important.

And good luck with any exposure to a possible privacy violation to third-party as well.

I just quoted the original link which worked much better some weeks ago. FYI, I  always use uBlock Origin Legacy for filtering web content in New Moon 28. And in Mypal 68, uBlock Origin. And a few user scripts.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...