Leaderboard
Popular Content
Showing content with the highest reputation on 05/07/2023 in all areas
-
This works at least in the case of https://www.gwr.com/ // ==UserScript== // @name Inject Object.hasOwn Polyfill // @version 0.0.1 // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== if (!Object.hasOwn) { Object.defineProperty(Object, "hasOwn", { value: function (object, property) { if (object == null) { throw new TypeError("Cannot convert undefined or null to object") } return Object.prototype.hasOwnProperty.call(Object(object), property) }, configurable: true, enumerable: false, writable: true }) } Source: https://github.com/tc39/proposal-accessible-object-hasownproperty/blob/main/polyfill.js Another read: https://stackoverflow.com/questions/69561596/object-hasown-vs-object-prototype-hasownproperty3 points
-
For my current build, made with Python 3.8, that will be 14 Oct 2024 (if Pukkandan decides to pull the plug on that same date). Fortunately @cmalex has provided a Python 3.9 build for XP (see this post). Supported till 05 Oct 2025. https://endoflife.date/python Hopefully later builds will be provided in the future. In the near future I will provide yt-dlp builds made with Py3.9 (here is a test build).2 points
-
Indeed, the provided link: https://dl.dropboxusercontent.com/s/77c6ftwujel4v7l/yt-dlp_x86_Windows-XP.zip isn't valid ; obviously, something must've gone awry there... Try below links, which I have archived locally (and it turns out it was a good idea to do so ): https://dl.dropboxusercontent.com/s/f2q5v92qgq0fawp/youtube-dl.zip https://dl.dropboxusercontent.com/s/xmrpypozf7wf9us/youtube-dl_20230430.zip The second link will fetch a yt-dl build with (experimental) "Lazy Extractors" support turned ON, specifically for older H/W; you should definitely try it (both links were provided initially by nicolaas, the second one via his GitHub account) !2 points
-
With one little difference though compared to my previous release. Thanks for mentioning. Btw, your youtube-dl url in your sig is first of all dead, but also links to a yt-dlp archive. If I may be so bold (and a bit off-topic)... One day will come when yt-dlp loses compatible with WinXP, while at the same time youtube-dl won't be updated anymore. For WinXP users with old hardware an alternative could then be my own simple Youtube-extractor, which is part of an XQuery function module for the command-line tool Xidel (an XML/HTML/JSON parser). It's a simple extractor, in the sense that it doesn't support age-gated-videos. You'd still need youtube-dl for that. But for "normal" videos it works absolutely fine and because it doesn't depend on Python it's multitudes faster (on my old system). The extractor uses the Android API call, which means there's no bandwidth-throttling or a need to decrypt a signature. The most basic call for this Youtube video would be... xidel.exe -s --module=xivid.xqm -e "xivid:youtube('https://www.youtube.com/watch?v=ppojLHm-Z1I')" xidel.exe -s --module=xivid.xqm -e "xivid:youtube('ppojLHm-Z1I')" ...which returns a JSON with all the different audio- and video formats. My old computer is too slow to watch Youtube videos in-browser, so personally I use the following command A LOT to directly watch a Youtube video (the itag 22 variant in this case) with Media Player Classic - Home Cinema (utilizing the gpu instead of the cpu): FOR /F "delims=" %A IN (' xidel -s --module=xivid.xqm -e "xivid:youtube('ppojLHm-Z1I')/(formats)()[starts-with(id,'pg')][last()]/url" ') DO @"C:\Program Files\Media\MPC-HC.1.7.11.24.x86\mpc-hc.exe" %A /close2 points
-
Unfortunately, for linkedin, no change yet. As I reported in the general 360chrome thread, linkedin requires a type of verification that is not recognized even after successfully resolving the challenge. Same happens with old and current SP52 builds. Banks, depends on the bank, on the country you are banking from. As per the disinformation spread by the guy above, he surely knows his s***.1 point
-
Patch Integrator v2.3.4 is very old version from September 2020. Try the latest one (v3.4.6)1 point
-
Agreed, as dark and scary as it sounds, I too think the paranoia is justified. My only frame of reference is my little Midwest USA town. I am well-traveled across Mexico-USA-Canada (have also been to China, Taiwan, and Japan), but I'll use my "average" Midwest USA town as reference. I live a teeny-tiny-miniscule just-under 0.6 miles (0.97 kilometers) from three grocery stores and just under 0.4 miles (0.64 kilometers) from two fast food locations to the south and three fast food locations to the north. I have three gas stations all within 0.7 miles (1.13 kilometers) and one of them is within 0.3 miles (0.48 kilometers). With everything that close and no longer having a gym membership, I use the close proximity to all of these conveniences for WALKING to and from. It's obviously not the same as running that 7- or 8-minute mile at the gym, but this WALK is a h#ll of a lot more than what our "lazy society" has befallen to. 0.6 miles (0.97 kilometers) - this really is just WALKING DISTANCE. I'm talking edge of town Midwest, not metropolitan inner-city. I'm a shirt-and-tie mid-engineering salaried corporate-type with a military-style haircut and always clean-shaven. I'm not talking 1950s versus 2020s, but the world has changed - and the change is a bit scary! At least here in the Midwest USA, you only have to think back to the mid- to late-90s and you had a society where rollerblading and biking and hiking were very popular recreational activities. Nowadays, especially post-covid, a clean-shaven shirt-and-tie salaried-career-oriented law-abiding doesn't-drink doesn't-smoke member of society can not even WALK a mere 0.6 miles without id-iots in cars shouting out their windows. You get people shouting out their window calling me a "meth-head" just because I chose to WALK a teeny-tiny-miniscule 0.6 miles, with a spoon in my pocket, to buy some ice cream, and eat that ice cream during the return walk home. You get people shouting profanities and accusing me of being "homeless" - I paid off my 20yr mortgage in THREE YEARS. You get people flipping me off and telling me to buy a car - I have SIX vehicles and none of them have a car loan. I've often wanted to make a t-shirt that reads, "Yes, I have a car. I'm walking because I want to!" That's where society is these days, recreational activities no longer include a pair of rollerblades (I still have mine) or mountain biking. Our society's recreational activity has befallen to assuming anybody and everybody that WALKS along a sidewalk is a drug user and a homeless burden to society. My only burden is that I pay more taxes then these people shouting profanities out their "winter beater" and assume I'm homeless simply because I chose to WALK to pick up that ice cream snack.1 point
-
That's brilliant, thank you so much!1 point
-
it hits a code path (about JSOP_GOTO) that it shouldn't (as it should be handled in IonControlFlow, not in IonBuilder) so it needs more investigations. maybe hitting this: https://github.com/WaterfoxCo/Waterfox-Classic/commit/6d15d320de43f57fe549b44052941c8a6808f6ce but it is ported correctly, but why JSOP_GOTO goes to elsewhere?1 point
-
1 point
-
1 point
-
1 point
-
Does no one read the console errors anymore? Object.hasOwn() is required, implemented since Chrome 93.1 point
-
Just writing in to let everyone know I’m not going to be as active here as I was in the past. I know it’s not on-topic but since this thread is more than likely going to be closed and deleted anyway, I thought this would be a good opportunity to speak up without drawing too much attention to myself. I’ve had a nice time talking to users here but haven’t had much to contribute other than words of encouragement. It seems this forum prizes and values those who actually know how to program/code, and I definitely don’t fall into that category. I had been a lurker for years but joined in 2021 to comment on the Feodor/Tobin situation with Mypal. Since then I don’t think I’ve had much of value to add to the discourse, and the way I see it this is a forum better left to far smarter individuals. I certainly don’t want to annoy the moderators, who have better things to do with their time than read my drivel. Indeed, it is a difficult task to keep things on-topic, and as I fell in love with this site because of all of the valuable information it provides, the last thing I would ever want to do is sully those waters with posts that are less than useful. So much has changed, but this is still my go-to site when I want to learn about what’s happening on the tech enthusiast front. I am glad I got to know what it feels like to post and to be met with varying degrees of kindness, and responses from people who know far more than I will ever, ever know about this sort of thing. Of course, I may return in the future, if I have something of value or interest to share. For now, I’ll go back to lurking, just as I was doing for so many years beforehand. To those who have been nice to me, I appreciate it more than you will ever know. To everyone who is making an effort to develop/maintain software that keeps old operating systems useful, thank you, from the bottom of my heart. To the moderators, thank you for striving to maintain law and order here. May you do your best to hold up MSFN’s legendary reputation. Take care, everyone…I wish you all peace.1 point
-
Thanks for the analysis! What I'm seeing is this - If I click on 'Go to the Home page' the page loads for an instant, and then goes back to the same error message. Other parts of the site, such as the pages for booking tickets, still seem to work. The problem with https://www.lner.co.uk/ is different, it's just not formatted properly, but I think this was a different problem. If I go to the GWR site with Firefox 52.9, it does display, but completely mis-formatted too. I guess these are unresolvable problems which will start to affect more and more sites as time goes on. Whether it's due to the out of date Chromium version or JavaScript incompatibilities, it will only get worse.1 point
-
1 point
-
It depends on your preference. I personally have not updated my PC at home yet, although my laptop is on it just because I upgraded it at some point. I haven't bothered to downgrade it at all. So it is really up to you, if you think the changes are something you can get used to, or if you'd prefer to find other options.1 point