Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I know of "this link" and the two links on that page, how about you just post the link to the userscript editor for Serpent instead, would be really helpful. I don't know how it's called.
  3. I would advise you to search for Diskeeper 2011 for your disk to be as fast as can be.
  4. +1 for the recommendation. What's the advantage of 1.4.3 over newer versions?
  5. @Kmuland On such weak systems like yours, you have to adjust much more than on more powerful ones. Install uBlock Origin Legacy and only absolutely necessary extensions! The less, the better. Defragment your complete system partition and don't forget to adjust your pagefile! It shouldn't be fragmented as well. Personally, I tried all extension for memory optimisation but most of them did nothing useful. I use an external RAM manager called CleanMem Pro which frees up RAM that is not used but not released. And most important is to open only very few tabs and/or a tab unloader like Lull The Tabs. I prefer an older version 1.4.3. For the management of websites, I use OneTab and Speed Dial to have only opened the absolutely necessary tabs.
  6. Today
  7. Just a guess, but nowhere. The typically cached elements are simply re-downloaded, again and again, as if the page was visited for the first time. If @Kmuland's internet bandwidth is greater than HDD bandwidth, disabling the cache makes sense. Again, just guessing, no idea how browsers work.
  8. But if you are getting low on RAM and no disk cache is available, where is New Moon 28 supposed to write its cache files? TBH, that does not really make sense to me. Maybe, it is better to create a small partition only for caching files by browsers and defragment it on a regular base for performance reasons.
  9. Right! That was why I asked about his capacities for file storage. In general, I don't think it would be a good idea to disable disk cache on devices with little RAM. Here using a mechanic HDs (160Gbs), so when Im low in ram, there is too much virtual memory disk usage... If the browser disk cache is also enabled... the delays are tedious, the HD dont stop of write/read activity.. so I prefer disable cache.
  10. Right! That was why I asked about his capacities for file storage. In general, I don't think it would be a good idea to disable disk cache on devices with little RAM.
  11. ... Since you're low on RAM, why did you disable disk cache? I might be wrong , but doesn't this mean that the browser cache is now stored solely in RAM?
  12. @user57 There must be something going complete wrong, using the PCI bus for installation of XP SP3 in compare with the original implemented IDE slots on the Shuttle Hot 433 board with 486 cpu. For the first TXT-Setup of XP I need about 45 min with the IDE slots, same cpu. With a PCI to IDE or PCI to Sata card, which should have full performance of 132 MByte/sec of the PCI bus (33 MHZ, 32 bit with 32 bit=4*8bit, gives 132 MByte/sec). But Now I need about 9(!) hours for the same TXT mode. This is a factor of 12 compared to the original IDE slots. So, the real speed of the PCI Bus is not 132 Mbyte/sec but for sure less than 11 MByte/sec, even the connected Sata or IDE harddisk is about 60 MByte/sec. And the PCI cards fulfill all to be faster than 132 MByte/sec Dietmar EDIT: The speed of this PCI bus is less than an original CD-ROM with speed 1, means 150Kb/s. Whole install of XP via Floppy disk with 200kB/sec would be faster..
  13. ... Provided you already have installed a St52-compatible Userscript Editor (XUL/WE, see the recommendations by AstroSkipper ), you should've scrolled down to: and clicked on one of the three offered options; ALL 3 work fine here (St52+VM) ; first option is the GH direct link, already provided in clear text by @AstroSkipper ; the "mirrors" will get you to the respective UserScript Portals, where you have to click appropriate "Install" buttons; FWIW, direct links below : https://update.greasyfork.org/scripts/423851/Simple%20YouTube%20Age%20Restriction%20Bypass.user.js https://openuserjs.org/install/zerodytrash/Simple_YouTube_Age_Restriction_Bypass.user.js If none of the links work for you, then something particular to your St52 profile may interfere...
  14. 1. @roytam1 I took your fork of the mozilla-cvs-history-subtree repository from Github, and uploaded it to Codeberg, and tried to revert bug 177805 (Fix the use of units in Gecko. Gecko 1.9.0a3 February 7th 2007), but it won't let me due to unresolved conflicts, and server time outs. If you can forcefully revert that bug automatically in GitHub, and preferably 359808 too (Drop support for Windows 9x/NT 4 in xpcom/io if I remember the bug number correctly, also needed for Visual C++ 5.0 SP3 compatibility), that will be great. 2. The crashing I mentioned does not happen due to Visual C++ 5.0 SP3, but because of earlier changes I made in the content directory.
  15. ... Indeed , as per: https://github.com/roytam1/UXP/commit/407a79e79f75a1de2af5588d8d54e853683af43f#diff-f1692414557ddbb1da94a106acb550a38c4145360214b795e77437b02b2a69ea (as part of upstream #2503 ) ...
  16. Here using netbooks: -Atom N270 with 1Gb -Atom N280 with 2Gb
  17. that with the drive wasnt complicated to program you had a buffer to progress (that buffer being the data that is being written to that hdd disc) the hdd drive itself had certain commands it understand "like write or read" you processed it directly via IO command (aka "in" and "out" assembly) you had to a in BYTE(8 bits each)/WORD(16 bits each)/DWORD (32 bit each) - this got repeated with the REP command (repeat command if easy speacing) so here let me take this approach -> that IN OUT command write/read not directly to the HDD drive rather it write that to the CACHE of the HDD the firmware ... then progress it to a physical movement and electric pulse to the HDD head (ect.) so to make people understand why i have to say this first the CPU is a lot faster then the HDD is and the CPU as might i said in the past can translate assembly commands to a "different progressing" with different progressing i mean it can detect a 8 bit move and translate it to a 64 bite (or a lot more) move so now that we know that the HDD cant progress the speed power the CPU has (and therefore use a cache (+ i must say this method got increased up to fast bigger cache like 12 MB or more cache)) you actually read out the status code for the HDD (the hdd then tells you like "im doing this im busy (do not send me data again for now") this is a direct hardware approach the "new" ones a "engine" - yes engine you heared right - i say so because everything today is going through like 8 engines before doing anything (and yes i say it again stop that bullc... everything it filled up with engines today - use less of engines programmers) this "new" is done via a driver (pre driver) and a IRP https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_irp this IRP is then being progressed - but it still do that classical IN and OUT command just to say this is not a direct hardware approach but it gives the operating system a "standart code" it can operate with - its far less effective and therefore also have less speed (the reason you dont see this so directly is for example that cache reason) but enough about the disc and back to dietmars problem more directly i dont think we can see the reason so directly without having the right tools but the pci bus is fast enough there are certainly differences between PCI standarts either https://en.wikipedia.org/wiki/Peripheral_Component_Interconnect the SATA to IDE was already called out to be a idea that however raise the question what standart or norm for that older cpu is working https://de.wikipedia.org/wiki/ATA/ATAPI https://www.elektronik-kompendium.de/sites/com/0501021.htm https://de.wikipedia.org/wiki/Programmed_Input/Output this like we creating our first HDD
  18. My German language pack for New Moon 28 - Fixed - Part 4 My last German language pack 28.10.0rc5 from this post had to be fixed again. As reported here by @nicolaasjan, there is a new issue under the menu item Hilfe -> Informationen zur Fehlerbehebung in the most recent release 28.10.7a1 (32-bit) with build ID 20240509133920. Here is a screenshot to demonstrate this issue: I have fixed this issue and assigned the number 28.10.0rc6 to the new, corrected version. Here is a screenshot taken from the fixed version: And here is the download link of the updated, German language package in version 28.10.0rc6 for the more recent versions of New Moon 28 starting from build ID 20240509133920: https://www.mediafire.com/file/3ffij6q50yi2wjb/de-28.10.0_RC6.xpi/file Greetings from Germany, AstroSkipper
  19. You are not off-topic. Me too. My hardware specs are: Intel Pentium 4 Northwood 2.80 GHz CPU (single core, 32 Bit), only 1.5 GB SD-RAM and a NVIDIA GeForce 6200 graphic card with 256 MB. All hard disks are connected via IDE. What are yours?
  20. Never mind, still happens. I only ever deleted D3DCompiler_47.dll as this one is normally not loadable on XP. https://en.wikipedia.org/wiki/Vulkan Maybe runtime library (vulkan-1.dll) is a hard dependency, even though there aren't any Vulkan drivers on XP. There's more discussion among Linux folks for getting Vulkan working in Chromium, I think I only tried once (unsuccessfully) on Edge on Win10, though it's possible that couldn't work due to Microsoft alone as last time I checked, they prevented ANGLE backend flag from doing anything. Presumably Vulkan is mostly interesting in combination with WebGPU (for new graphics web apps) on non-Windows systems, maybe as an alternative backend on Windows. No idea if it's supposed to effect webpage compositing in general. Anyway, I'll see if Legacy Update gets me anywhere on XP. So far, it looks just as bad as I remember, if not worse. Checking for updates for over 50 minutes already...
  21. You can see the latest release there, it's a patch
  22. https://codeberg.org/Theodor2/Mypal68/releases
  23. Im sorry to be totally offtopic. Im using NM28 on a very limited ram machine. What settings in about:config or extensions would you recomend for minimal ram usage while browsing? Currentyl using Memory restart/memory optimize extensions, and in about:config browser.cache.disk.enable false browser.sessionhistory.max_entries 0 browser.sessionhistory.max_total_viewers 0
  24. This link worked for me: https://github.com/zerodytrash/Simple-YouTube-Age-Restriction-Bypass/raw/main/dist/Simple-YouTube-Age-Restriction-Bypass.user.js In Serpent 52, you can, for example, use Tampermonkey 4.11.6120, Violentmonkey 2.14.0 (needs a small fix) or Greasemonkey 3.31.4 from the fork branch.
  25. Please post the ~monkey file version you're using; both on that site do not work on Serpent 52.9, complains about "corrupt file". :-)
  1. Load more activity
×
×
  • Create New...