Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. here you go. SP55: https://o.rthost.win/basilisk/basilisk55-win32-git-20240615-b8bfd21cf-xpmod.pdb.7z SP52: https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20240615-3219d2d-uxp-d835b252d7-xpmod.pdb.7z
  3. It was with January builds, and all previous builds, so its build-independent issue. Dont know if it was fixed, I have not installed updates after that (after january). Yes, please provide the PDB files for current build(s), and I will see its behaviour, And if it will occured again, will watch it. Also it will help in exploring of slow loading of bunch of tabs on startup (opened sites from previous session). (its another problem)
  4. Today
  5. Thank you Dixel! There's unfortunately one entry despite having unticked everything with the program posted before: I went on to check the registry at the path you highlighted, namely HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger but under WMI there's only Security, there's no "Autologger". Weird. O_o
  6. does it happen in latest build? I can provide PDB of latest build only.
  7. Bought a cheap new laptop for my dad, came with W11 home. Turn it on, expecting the setup to take ~10 minutes (all he needs is Chrome & Chess Titans installed). Created a new MS account (usual workarounds didn't work, though hadn't tried too hard, just wanted to get this done), went through setup, downloaded Chrome installer, clicked, and ... S mode, won't install. No problem, takes a few mouse clicks to switch S off. Or, rather, it should. Clicking the "Get" button in MS Store brought up "We couldn't complete the upgrade," with "Try again" replacing "Get." Surprisingly, trying again solved nothing. Googled workarounds -- found out command prompt & powershell don't work in S mode. Tried starting from scratch with "Reset your PC" (wasted another half an hour to net the same results). Finally gave up & installed a fresh copy of W11. This installed in normal (not S) mode, and even (verily, we live in an age of miracles) let me create a local account -- guessing because 11 didn't have a network driver for this laptop, so no viable way to connect. Finished installing, stuck in a USB WiFi dongle, let 11 update (bringing in WiFi & the rest of the drivers), after ~2 hours, everything works as it should. Two hours to set up a new laptop with 11 Home preinstalled. Reject modernity >:(
  8. Oh i see.. :| Well... if this official person of Serpent doesnt do anything anymore... and @roytam1 saying he wont do it either... then this problem is going to stay forever then?? I already tried sending an email to the pixai staff about it about 3 weeks ago or so when this first began on the seperent browser, cause i swear it was just fine before until one random day a few weeks ago. And i even mentioned it in one of their google form surveys they had on the site... and... no response and nothing. that's when i tried coming to this thread here. Because i thought it was okay, to post some problems here with Serpent as other people have done...
  9. Hello, @roytam1, Thanks for the Serpent browser builds, But I have a long-time problem (and I think not only I). Its a freezes (hangs) of this browser on youtube. A have described the problem here on githuib and requested PDB files for it to check what is happened: https://github.com/roytam1/basilisk55/issues/48 But no reply still there. Becase of this hangs, I have moved to Supermium this winter. If you can, provide PDB files please, And I will check it again. And may be will found whats happens.
  10. regarding mozilla's newer SQLite in 9x, mozStorage returns NS_ERROR_STORAGE_BUSY, which got SQLITE_BUSY from newer SQLite. So I wonder if file locking (i.e. LockFileEx(), which SQLite uses when it detects non-9x from KernelEx) is getting problem. I wonder if KernelEx emulates LockFileEx correctly?
  11. And here is the same program for XOR with my nice Neuron in Scratch. Oh my, here you can see at once, how bad "higher" program languages are Dietmar
  12. "Upstream" is the 'official' version by the 'official' developer. That 'official' developer abandoned XP. So the versions you download in this thread are the 'downstream developer' (Roytam1/Feodor2/etc) efforts to restore XP-compatibility to a browser that would not otherwise work in XP.
  13. I just make a new XOR program for my Neuron with two thresholds, see post above waaooh, Dietmar
  14. what's "upstream" mean ?? or is that another person's name who submits updates to you ? i have no clue.
  15. not from me, lets see if upstream is willing to get this in.
  16. @AstroSkipper, speaking of the registry entries, are yours the same? I mean, when you applied the anti-metrics flags. Thanks.
  17. This will help you. https://www.geoffchappell.com/studies/windows/win32/services/scm/events/wpp.htm
  18. Please run cmd as admin, then enter the command logman query -ets It must show zero loggers. If it shows some are still running, the programme doesn't work as expected.
  19. Yesterday
  20. @roytam1 is there any chance you might be able to fix or support the pixai thing i been trying to mention the past few weeks ?? or is it not possible ?? im sorry if i been annoying about it
  21. About UE4's shader compilation stutter issue in P3R, obviously R550 drivers have better performance than R535 drivers. Now I am using 552.61 and trying to find an ideal solution.
  22. Well I have a mini-PC AceMagician T8 Plus with 256 GB of hard drive space and 8 GB RAM so I have enough space for that machine to do anything. I was going to install Windows 7 or Tiny7 and then the VM environment and then OSX ontop of that with Think or Swim TOS as the final layer. But since Windows 7 some say has security breaches, could someone hack into my system through Windows 7 then into the VM environment and then into OSX and then into TOS? Like hacking though each layer? The really small 32 GB hard Drive space with 2 GB of RAM is on these tiny travel mini-PC sticks that I use only when I travel. They are easy to transport. So I was going to copy the layered system idea as I stated above into those Asus VivoSticks TS-10 as well and just run these systems infront of every day not remotely tapping in or using another computer to offload the op system hard drive space. Can I do that with this set up? And I prefer OSX over Windows. And I can't shutdown the Windows updates.
  23. Windows Update pulled down the Cumulative Update today on both Server 2025 and IOT Ent LTSC to 26100.863 - no SAB issues seen. Nice. Don't you love it when software just works?
  24. I do an intensive test of those 3 of my Neurons, who make the XOR function without direct calculating XOR. Some thoughts about my idea: No noise at all, no vanishing gradient, always a clear signal, most easy calculation. The output of each Neuron is of type INTEGER. And it accepts any double values as input. Which means, this New Neuron and so this XOR is error tolerant as much as possible Dietmar PS: This program I test under Netbeans 16 and it works. package newneuron; import java.util.Scanner; public class Newneuron { // Inner class for Neuron public static class Neuron { private double lowerThreshold; private double upperThreshold; public Neuron(double lowerThreshold, double upperThreshold) { this.lowerThreshold = lowerThreshold; this.upperThreshold = upperThreshold; } public int activate(double input) { if (input >= lowerThreshold && input <= upperThreshold) { return 1; } else { return 0; } } } public static void main(String[] args) { // Create a Scanner object for user input Scanner scanner = new Scanner(System.in); // Define the neurons with thresholds 0.8 and 1.2 Neuron neuron1 = new Neuron(0.8, 1.2); Neuron neuron2 = new Neuron(0.8, 1.2); Neuron neuron3 = new Neuron(0.8, 1.2); // Prompt the user for input values System.out.print("Bitte gib einen Wert für Neuron1 ein: "); double input1 = scanner.nextDouble(); System.out.print("Bitte gib einen Wert für Neuron2 ein: "); double input2 = scanner.nextDouble(); // Activate the first two neurons with the respective inputs int output1 = neuron1.activate(input1); int output2 = neuron2.activate(input2); // The input to the third neuron is the sum of the outputs of the first two neurons double sumOutputs = output1 + output2; int xorOutput = neuron3.activate(sumOutputs); // Print the results System.out.println("Neuron1 Output: " + output1); System.out.println("Neuron2 Output: " + output2); System.out.println("Neuron3 Output: " + xorOutput); // Close the scanner scanner.close(); } }
  25. As others say around these here parts, "I don't see admin/moderator next to your name". Your post is just as "spammy" and as much a "pompous public announcement" as mine. Feel free to go tell the teacher. "Mom, D.Draker hit me back!" "What do you mean by hit you back?" "Well, I may have hit him first, but he didn't tell on me, but I'm going to tell on him." "Go to your room until daddy gets home."
  26. OK, it worked for that guy somehow, so should have worded a bit differently. I think I just got a black window back then. Still, better try this: https://storage.googleapis.com/chromium-browser-continuous/index.html?prefix=Win/291943/ Just remember to disable GPU blocklist on chrome://flags page. Though TBH I'm not sure if canvas accel works specifically, hard to test in reality such an outdated browser, but period correct WebGL stuff seems to work. None of that slow 100% CPU sucking SwiftShader nonsense. The hint comes from https://superuser.com/questions/958238/how-to-enable-webgl-on-chrome-on-xp. I like the last comment from the guy who asked: Interesting, but I have updated to Win10, so I can't test. I think Chrome no longer supports XP anyways.
  27. BTW, they suggest to fully disable sandbox, which is a terrible idea, too!
  1. Load more activity
×
×
  • Create New...