Content Type
Profiles
Forums
Events
Everything posted by UCyborg
-
Pretty sure advanced users of these tools would be able to list other things that they find beneficial. Recently came across recommendation on Chromium build instructions to use VS2019 for debugging rather than VS2017 due to handling of large debug information files.
-
I've no idea what I'd buy, maybe Fairphone 4 if the only choice is to buy a brick. Seems nobody is making smartphones which you can normally hold in one hand and reach all parts of the screen with a thumb anymore.
-
This isn't being talked about much, so I have to ask, has anyone looked into what was done with folder icon thumbnails and if they can be restored? https://mspoweruser.com/windows-11-did-away-with-folder-icon-thumbnails-and-we-did-not-even-notice/
-
I have both variants in my house, 1 room with toilet and bathroom stuff and 2 other rooms, one with only toilet, one with only bathroom stuff.
-
Bypassing registry entirely would require injecting own code in the game process to intercept registry queries and return path do DLL in question, something I'm not interested in doing myself.
-
My Browser Builds (Part 3)
UCyborg replied to roytam1's topic in Browsers working on Older NT-Family OSes
Should've said when you go to the actual content, eg. https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-createwindowexa where index is missing on the left, missing styling in the content in the main part etc. -
My Browser Builds (Part 3)
UCyborg replied to roytam1's topic in Browsers working on Older NT-Family OSes
Guess https://docs.microsoft.com/ doesn't work properly for anyone here neither? Console says: SyntaxError: expected expression, got '?' 98314ef.index-docs.js:1:96418 Crazy how things that could be done with simple HTML are buried behind obscure scripts. -
Disgusted. Just got out of bathroom after pooping. I cannot put into words how much I hate dealing with this crap.
-
Generally, this would help sync the clock between operating systems unless there's something specific about that distro.
-
Microsoft Edge Chromium (Updated: July 1st, 2025)
UCyborg replied to steven4554's topic in Web Browsers
Official link to Enterprise MSI installers, at least for recent few versions. I've yet to try if group policies regarding updates work in non-domain environment. Sure, disabling update tasks, services and not visiting about page in settings works. But what if you do visit the latter? How to rollback previous version of Microsoft Edge Edit: Group policies related to updates don't work unless joined to a domain.- 54 replies
-
- Dev
- Microsoft Edge
-
(and 3 more)
Tagged with:
-
Should be. /gfx/thebes/gfxPrefs.h DECL_GFX_PREF(Once, "layout.frame_rate", LayoutFrameRate, int32_t, -1); /gfx/thebes/gfxPlatform.cpp /*** * The preference "layout.frame_rate" has 3 meanings depending on the value: * * -1 = Auto (default), use hardware vsync or software vsync @ 60 hz if hw vsync fails. * 0 = ASAP mode - used during talos testing. * X = Software vsync at a rate of X times per second. */ already_AddRefed<mozilla::gfx::VsyncSource> gfxPlatform::CreateHardwareVsyncSource() { RefPtr<mozilla::gfx::VsyncSource> softwareVsync = new SoftwareVsyncSource(); return softwareVsync.forget(); } /* static */ bool gfxPlatform::IsInLayoutAsapMode() { // There are 2 modes of ASAP mode. // 1 is that the refresh driver and compositor are in lock step // the second is that the compositor goes ASAP and the refresh driver // goes at whatever the configurated rate is. This only checks the version // talos uses, which is the refresh driver and compositor are in lockstep. return gfxPrefs::LayoutFrameRate() == 0; } /* static */ bool gfxPlatform::ForceSoftwareVsync() { return gfxPrefs::LayoutFrameRate() > 0; } /* static */ int gfxPlatform::GetSoftwareVsyncRate() { int preferenceRate = gfxPrefs::LayoutFrameRate(); if (preferenceRate <= 0) { return gfxPlatform::GetDefaultFrameRate(); } return preferenceRate; } /* static */ int gfxPlatform::GetDefaultFrameRate() { return 60; } The comments hint at existence of hardware vsync, but I didn't find it. Should go up with dynamic content or if you test with autoscrolling; make sure it's enabled, then activate it with middle click on a page long enough to scroll for a bit that way. The first number is the current frame rate, the others...I'd have to go dig inside the code. The number is only relevant for as long as something is going on since it doesn't refresh constantly like a game. If hardware acceleration works, theoretically any software that measures frame rate in games could pick it up. I seem to remember seeing DxTory's frame counter in normal desktop applications. It's been a while since I've used it, back then it did work on XP. It's paid software, but if I remember correctly, there weren't restrictions when used just as a frame counter. Older version of RivaTuner Statistic Server might be more suitable for this task alone.
-
Fixed that for you. Nah, we're going straight to death bed after decades of wage slavery. Isn't life a gift?
-
Found a hint here about adding --no-sandbox command line parameter to prevent the issue with text on pages disappearing, which may happen under certain not understood circumstances on XP. Also eventually happens with ArcticFoxie's 360Chrome 11 build on my XP install without --no-sandbox parameter here. I have PPAPI Flash Player 32.0.0.465 (with timebomb disabled) installed besides NPAPI version, PPAPI version is loaded when entering settings page and makes the 360chrome.exe process where it's loaded crash in Flash Player's DLL, though this doesn't prevent using settings page. I've disabled PPAPI version on chrome://plugins page. This version otherwise seems to function normally, though I remember from past experiences that NPAPI version usually performs better. I haven't tested too see if sandboxless Chrome makes PPAPI version perform smoother. As far as I understand, PPAPI was practically made to sandbox Flash Player.
-
https://www.dailysabah.com/life/environment/disposable-masks-the-dark-side-of-covid-19-pandemic Inappropriately disposed (thrown outside on the ground) masks are also a common sight here. And that's only the tip of the iceberg,
-
JFYI, GZDoom should have gl_vid_multisample setting. It's in your INI file and turns on basic MSAA at whatever level you set it. Never tried transparency antialiasing though, I read it works with MSAA regardless if set in-game or forced via driver. I do have GTX 750 Ti though, never had major problems with 368.81 driver on any OS, probably 'cause the card is newer and better tested with that driver.
-
DxWnd can make it work. They key setting is Renderer set to primary surface in the game's profile (which you have to create) settings on DirectX tab. There's also a mouse patch which you'd need to make mouse input work since it normally uses VXD driver () for reading mouse movement. Doom95 is probably mostly interesting for historical reasons for some doomers since it was considered a bit sloppy even when it was new. It was Microsoft's attempt to promote DirectX in Windows 95.
-
Welp, looks like the latest and greatest KM got the same flaw as Serpent/New Moon. Changed back to 1st July 2020 version and it's fine. Compared to those two browsers, KM also lacks certain functionality for some sites to function, I guess lack of WebAssembly support is the first likely candidate.
-
My Browser Builds (Part 3)
UCyborg replied to roytam1's topic in Browsers working on Older NT-Family OSes
One of those that must be created manually, eh? Must be why I missed it since I didn't look at the code much. I just tested by preventing access to relevant registry key under HKCR\Classes\CLSID. -
Force "multiprocess mode" in FF 52
UCyborg replied to Mathwiz's topic in Browsers working on Older NT-Family OSes
Does any snapshot work for you without returning 301 error?- 142 replies
-
- Firefox
- electrolysis
-
(and 2 more)
Tagged with:
-
Should I keep Windows 11 or downgrade to 7/8/8.1/10?
UCyborg replied to GD 2W10's topic in Windows 11
Hopefully won't happen again, but I've read here somewhere MS did put some unconditional SSE2 code in one of XP or POSReady 2009 updates (likely the latter), so people with older CPUs had problems and had to uninstall it.