
NotHereToPlayGames
MemberContent Type
Profiles
Forums
Events
Everything posted by NotHereToPlayGames
-
I'm more interested in 360Chrome being compared to DcBrowser. Every comparison I've done has thrown DcBrowser right to the Recycle Bin shortly thereafter.
- 2,340 replies
-
I currently use Chrome v97 on my systems with 32GB RAM. I have a couple PCs still on XP but I now run Win10 by default on most of my PCs.
- 2,340 replies
-
Technically, this "debate" should NOT be about 360Chrome RAM on MY system versus 360Chrome RAM on YOUR system which is clearly not the same on both of our systems. Rather, FORGET "my system" versus "your system". I'm an Electrical Engineer - I know how to do "math". Not only that, I know how to twist statistics and can spot it when others twist statistics. What the "debate" should be about is this - compare RAM on YOUR system for 360Chrome and compare it directly to RAM on YOUR system for DcBrowser -- which one consumes less RAM on YOUR system? MY system and YOUR system are NOT behaving the same -- Q.E.D. But what I would like your next "project" to be is to compare 360Chrome on YOUR system directly with DcBrowser on YOUR system. Looking forward to your UNBIASED and OBJECTIVE findings.
- 2,340 replies
-
Not familar with Process Hacker. Used it only because it was used further up in the thread. Why does it not report the same number as XP's own Task Manager as far as determining how much RAM is being used by any given process?
- 2,340 replies
-
NOT TRUE. AND THIS FORUM IS NOT HERE TO CALL EACH OTHER "LIARS". You apology is accepted, whether you provide it or not. My 360Chrome v13.5 is clearly NOT behaving the same on MY SYSTEM as it does on YOUR SYTEM - "end of story".
- 2,340 replies
-
My Browser Builds (Part 4)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
Odd. Working for me in 360Chrome v13.5. This one does not work for me in 360Chrome v13.5. -
Did stumble into this -- https://www.youtube.com/watch?v=ZeFFyg3ZJow I would recognize it blindfolded, I skipped around and only played snippets, but make no mistake, that is "my" version of 360Chrome with the XP Theme and the fixed status bar icons.
- 2,340 replies
-
2
-
MiniBrowser is based on Chrome 87 so it is one version "newer" but with only the start tab open, I'm showing it to consume 214 MB RAM. 360Chrome v13.5 seems like a no-brainer WIN to me
- 2,340 replies
-
1
-
DcBrowser is based on Chrome 75 while 360Chrome v13.5 is based on Chrome 86. I'm showing DcBrowser with only the start tab open to consume 234 MB RAM. I'm showing 360Chrome v13.5 with only the start tab open to consume 126 MB RAM. Light theme / dark theme is never worth that "cost" in my book, it's just a "novelty item" that I personally never use anyway.
- 2,340 replies
-
My Browser Builds (Part 4)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
Not sure if that's technically a "bug" but rather INTENTIONAL. SEVERAL variants of Chrome do that backspace to previous page CRAP. Here's how to disable backspace to previous page using a Monkey Script -- // ==UserScript== // @name Disable Backspace // @version 3.0.1 // @include http://* // @include https://* // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js // @run-at document-start // ==/UserScript== var backstayCurrentLocation; $(document).keydown(function(e) { // If backspace is pressed if (e.which === 8) { var active = $(document.activeElement); notEditable = function(element) { var edit = element.attr('contenteditable'); // Ensure backspace still works on any element with contenteditable="true" if (typeof edit !== 'undefined' && edit !== false) { return true; } else if (element.is('input, textarea')) { return true; } else if (active.attr('type') == 'application/x-shockwave-flash' || active.attr('type') == 'application/x-silverlight-2') { return true; } return false; } return notEditable(active); window.onbeforeunload = function() { return "Backstay: Are you sure you want to navigate away?"; } } }); -
My Browser Builds (Part 4)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
For those that have been following along over the years, a reminder that an increasing number of "modern" web sites now require three different types of javascript functions that break older web browsers. 1) Nullish coalescing operator ?? -- syntax leftExpr ?? rightExpr 2) Optional chaining operator ?. -- syntax 1) obj.val?.prop, 2) obj.val?.[expr], or 3) obj.func?.(args) 3) Regex unicode property escapes The first two have been partially addressed in "palefill" and "chromefill" addons - but they will not solve all web sites that require nullish coalescing or optional chaining operators. The third type requires Chrome v64 or Firefox v78 or higher (ie, don't hold your breath on this ever getting fixed in any UXP or Mypal browser versions!). For reference -- https://caniuse.com/mdn-javascript_builtins_regexp_property_escapes -
My Browser Builds (Part 4)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
WORKS in 360Chrome v13.5. If you are going to run XP (such as myself), having 360Chrome is kind of a MUST. It doesn't have to be you "default", but you WILL need it for "some" of your web sites. And the list keeps growing and growing for those that you will need it. -
My Browser Builds (Part 4)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
For reference via @VistaLover (upstream issue from three years ago but does have activity within the last two weeks) -- https://repo.palemoon.org/MoonchildProductions/UXP/issues/1282 -
KNOWN issue in any build higher than v13 build 2206. Can NOT be permanently fixed. You can change to English but they will ALWAYS revert to Chinese if you ever open the Dev Tools while in Incognito Mode. They will STAY in English if you always use Dev Tools from within REGULAR windows and NEVER from within Incognito Mode windows.
-
I personally do not use cert revocation or cert intercept. DO NOT TRUST THEM. Not even in "real" Chrome or "real" Firefox. "SSL" is a FLAWED system and I do not jump through hoops trying to get "valid" certificates. I actually modify my own personal use browser user interface to NOT EVEN SHOW the address bar "padlock". That being said, I have OTHER security layers in place. But I have never used a web browser "padlock" to tell me if a site is "secure" or not. NOBODY DOES! People LOG IN ANYWAY even when they see a "invalid" certificate FALSE ALARM. But anywhooo...
-
Joining the forum brand new then posting the same exact question in two different threads will have the exact opposite effect of getting a quick reply.
- 1 reply
-
1
-
Joining the forum brand new then posting the same exact question in two different threads will have the exact opposite effect of getting a quick reply.
-
My Browser Builds (Part 3)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
Although, I have to admittedly concede that my paradigm is based on CORPORATE IT POLICIES and not "web designers" per se. I work in the automotive industry and our factories use "web design" for everything. Inventory tracking, production workflow, defects and repair, new-hire training, assembly instructions, maintenance, even janitorial. -
My Browser Builds (Part 3)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
Agreed. -
My Browser Builds (Part 3)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes
Not the ones that I know personally. The ones that I know personally will spend WEEKS designing with Firefox and the GIGANTIC number of resources available (at the time) to only Firefox. Then spend LESS THAN AN HOUR to "test" that design by "visiting" the newly-designed web site in a browser they know VERY LITTLE about. That does not "qualify" as my definition of "testing on all major browsers". One such "designer" in particular that comes to mind was even able to establish a company-wide policy (at the time) that prevented Chrome from being installed on any factory floor computer (over 300+ assembly stations). But this is off-topic anyway so I shall simply "agree to disagree". -
My Browser Builds (Part 3)
NotHereToPlayGames replied to roytam1's topic in Browsers working on Older NT-Family OSes