Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I have not been able to register on one side for a few days and it shows the error listed in the console. I would like to fix this error with it. Does that work?
  3. https://msfn.org/board/topic/182566-monkey-scripts/ If you are a beginner in Tampermonkey, start with the script called "Old Reddit Redirect", that one is easy to test whether you have set it up properly or not.
  4. Today
  5. Unsure of your real end-in-mind. If it is for your browser to autofill usernames and passwords, this is what I use -- https://www.crx4chrome.com/crx/328301/
  6. Do you have any suggestions for autofill in Polyfill, so I could try it. And maybe even instructions on how to integrate it into Tampermonkey.
  7. The test also works with Chrome v126 and Supermium is now at v132. The test would have "started" working at some version between v97 and v126 - feel free to try each and every one of those versions to track it down specifically. Generally speaking, you cannot use javascript (querySelectorAll) to affect pseudo-elements (:after, :before, :checkmark, :placeholder, etc) or to affect pseudo-classes (:autofill, :active, :modal, :fullscreen, :enabled, :disabled, :nth-child, :checked, etc). You could try "::autofill" instead of ":autofill" (two colons instead of one), but I suspect that won't solve the javascript code using querySelectorAll to hunt down a pseudo-class.
  8. Thanks for getting in touch. The test works with Supermium. Do you perhaps have a solution for the following error: Uncaught DOMException: Failed to execute 'querySelectorAll' on 'Document': ':autofill' is not a valid selector.
  9. For some reason, when i disable uac, drag and drop in explorer address line won't work with "win11 command bar" style, but "win 10 ribbon ui" work fine Win 11 pro 24H2 26100.4652, SAB 3.9.12
  10. Thanks, well its strange that system is keep pushing just update, if it would not supported ok. I quickly checked PCwelt article, but there is not much info about upgrading and reinstalling because of WIndows 10 version upgrading is not way for me, i would have to use of these half working PC to PC migration tools.. Second article make sense old unsupported solution trick.. Migrate to Virtual machine, set emulated disk as sormal sata disk make upgrade and pray, that after migration to USB it will able to find USB boot drivers again, it seems pretty straight forward. I have found some new logs, i will give one more try to some BCD rebuild experiment before i will maybe later try virtual migration.
  11. Yesterday
  12. Your issue is with the developer.mozilla.org "test". findLastIndex does not require a polyfill in Chrome v97 and that "test" does not work in Chrome v97. It most likely does not work in v98, v99, v100, v101... et cetera... And doesn't "start to work" until who knows where. Again, Chrome v97 wholly and fully implements findLastIndex and even v97 cannot 'pass' that "test".
  13. Corruption in the original Resource Hacker (before "FX") could be avoided if you saved-as to a new file instead of saving over the existing file repeatedly. The default GUI is already pretty compact. Disable the Luna theme and the task pane in Explorer for 640*480 resolution.
  14. My OrangeMonkey extension is certainly working for other scripts, so either the script itself is faulty or it isn't compatible with 360Chrome. @NotHereToPlayGames is certainly still a member here, although not as active as they used to be.
  15. FYI, Windows 2000 no longer can use Microsoft Update even with patched wuaueng because the new v6-legacy-muauth.cab is sha2 signed, it cannot verify it
  16. Thx alot, my memory as usually , i forgot that this setting exists in XP. Through Display Propeties - Appearance, this different settings i already set font size to Very large, but it has not scale these fonts. And also as usually its effect of poor GUI, not intuitive design i would search this settings under Advanced->General->Display->Font .. under advanced i found search things like HW acceleration slider and refresh rate force, I will write down note about this settings and next i hope a will remember or find the note. I increased size from 96 dpi to 120 dpi (125%) ts much better and i can go up to 200% HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes - with some of these keys, i was able increase Explorer Status bar font size, but not this basic font. Well i used new resource hacker and Tahoma 8 to 12 as above and boot without Bluescreens, but this basic font was unchanged. Just some example which is meant by basic / shell font.. other text is scalling fine through Appearance settings, this is settings even without restart.. Original: Resized to 120: BTW for work in 640x480 without running proper draphics drivers, would be nice to actually decrease DPI to see more info on the screen, so request to scale it through registry / some dlls hacking. still make some sense, if someone would be able to do it.
  17. The update "WINDOWS2000-OTSKB000001-V3-X86-INTL.exe" has been released to the general public today. --- The updater was written from scratch and therefore does not cause copyright problems: updater-V3.png --- The help file "OTSKB.chm" was updated and is available as a separate file. But it is also included in the update (click on the "open the help file" button). --- The code comparison file "code.htm" was updated to include the version 3 changes. It's probably the final version. Well, at least if nothing unexpected comes up.
  18. Are you sure? For me it no longer works everywhere, they are mostly dead because of stupidity to openly discuss their cause and more stupid was the automatic switch to other invidious when one failed.
  19. Either the polyfil doesn't work, or the extension doesn't. Is @NotHereToPlayGames stille here?
  20. Not working here either. If I try with Supermium, it does work, With that, there is code in the box next to the run and reset buttons when the page first loads, which is not there in 360Chrome. I thought uBlock might have been causing the problem, but disabling it made no difference. Don't know why this is I'm afraid.
  21. Open the link: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findLastIndex and then click "Run." The field should then display "3" as the output.
  22. https://web.archive.org/web/20150103162921/http://xchat.org/files/source/ look as there is some sources... why not try rewrite it with ipv6 support?
  23. The script loads OK for me, but how can I test it? What is it actually supposed to do?
  24. Same hardware as original "MS Notepad" or Open Source "Notepad++" or other simple "Text Editors".
  25. I can't see anything obviously wrong with that, but I'm no expert on scripting, I'm afraid. @NotHereToPlayGames is the man to ask.
  26. And hardware?
  27. I found the following page to test: https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Array/findLastIndex I have the following code for this, but it doesn't work: // ==UserScript== // @name Inject findLastIndex // @version 0.0.1 // @description try to take over the world! // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== if (!Array.prototype.findLastIndex) { 'use strict'; Object.defineProperty(Array.prototype, "findLastIndex", { value: function (predicate, thisArg) { let idx = this.length - 1; while (idx >= 0) { const value = this[idx]; if (predicate.call(thisArg, value, idx, this)) { return idx; } idx--; } return -1; } , writable: true, enumerable: false, configurable: true }); } What am I doing wrong?
  1. Load more activity
×
×
  • Create New...