Leaderboard
Popular Content
Showing content with the highest reputation on 08/13/2023 in all areas
-
BTW which emoji you prefer? (vote "Like" for current, "Up Vote" for another) Current(Twemoji-v14.1.2): (the rendering issue of those redesigned emoji is reported here: https://github.com/jdecked/twemoji/commit/dbb2a105307932399402c5333001e82ba67af016#commitcomment-124376242 ) Another(msemoji flat version, based on Fluent Emoji): if you want to test each one yourself, you can download them here: http://o.rthost.win/boc-uxp/TwemojiMozilla-14.1.2.ttf http://o.rthost.win/boc-uxp/TwemojiMozilla-msemoji.ttf5 points
-
Just to give you all a laugh, I'm still using Norton Utilities 2002 on XP (and Windows 98), but that's a bit off-topic as that never actually included an anti-virus option. It all still works though! BTW I don't think that list on page 1 is a 'blacklist', it's just a list of abandoned programs, which there's no point in using anyway, and Kaspersky which has well documented security concerns about it so 'use at your own risk'.4 points
-
For those trying to follow the XP antivirus/firewall thread(s), may I ask which program you are using? I have given Windows 10 Firewall Control Free XP a trial-run and it seems okay and LIGHTWEIGHT. I have "never" been a fan of antivirus because they have always SLOWED DOWN MY COMPUTER (afterall, we are talking older computers). I would like a "small list" of antivirus programs that the followers of the antivirus/firewall thread IS ACTUALLY USING and I'd like to perform some actual "performance comparisons" (ie, effect on actual computer "speed").3 points
-
Now that that’s finally been settled, I would like to suggest adding Norton to the blacklist on page 1 as another “Should be avoided” product. This should not cause any controversy, since no one at MSFN has admitted using Norton for as long as I can remember. I believe the final maintenance mode version was 22.15.5.40, and definition updates were never cut off AFAIK, but it’s hard to be certain when you don’t know of any XP users with a Norton licence. https://community.norton.com/en/blogs/product-update-announcements/norton-2215-windows-xp-windows-vista-windows-7-sp0-now-available3 points
-
Greetings. Sorry. My English is bad and getting worse... https://mega.nz/folder/68dj2YTY#As2w31IO4Smr7gy6p1ciSg ProxyMII_230813.7z. But i didn't know how to get ProxyMII to work with WebSockets. And, please, take look at Privoxy3.0.35_231208.7z - looks like it open onlyfans.com normally. Thanks for You. Official releases of Cryptography (at least >=40.0.0) didn't work in Windows XP. Cryptography 40.0.2 for XP i can compile from sources with rust 1.48 (with i7-4770/Win8.1) - but it requires SSE2 instruction set (from some prebuild library?). Theoretically it's possible to build rust compiler "from scratch" - but i get lots of errors. So i can't test Cryptography 40.0.2 on my primary system (Athlon 2000+/WinXP). Cryptography 41.0.0 use rust 1.56. Even "Hello world!", compiled with rust 1.56, fails on XP. Best regards.3 points
-
I spent my vacation at a nice hotel located on a charmingly beautiful island Sint Maarten. The islands in the Dutch Caribbean, part of the colonies, now Constituent country of the Kingdom of the Netherlands. https://en.wikipedia.org/wiki/Dutch_Caribbean Sint Maarten is a constituent country of the Kingdom of the Netherlands, and as such the Monarch of the Netherlands is head of state, represented locally by a governor. https://en.wikipedia.org/wiki/Sint_Maarten I've been there several times before, and always liked it! So far, I visited many, but my ultimate goal would be to visit all islands in the Dutch Caribbean.3 points
-
Windows 10 and 11 users can and IMO should simply use Microsoft’s built-in antivirus protection. (No, I’m not the “Kaspersky salesman” as you-know-who likes to insinuate. If MSE was still an option for XP, then there wouldn’t be any Windows XP antivirus thread at all.) Of course every other antivirus product is struggling for a share of the Windows 10/11 pie, but the going is tough - which is why there have been so many mergers in recent years.2 points
-
At the bare minimum, it has been abundantly clear that OVER 95% of the "likes" and "upvotes" in these XP antivirus threads come from "members" that not only do not run XP, but also do not run antivirus on their non-XP. I cite again the average age (don't care if you're not over 40, I cite the average), makes me think this is what the early stages of Alzheimer's looks like, all of us talking to ourselves and thinking others are listening. The vast majority of "likes" and "upvotes" have more to do with political spectrum agreeance than actual topic/post "content" - Ooh, Professor X just posted something, I better sign in and hit the Like Button!2 points
-
I personally do not think actual threats even exist! Not for the net-savvy MSFNer. I also don't think anybody here uses those antivirus threads to actually pick an antivirus product and start using it. I am in the camp that nobody here at MSFN (aside from maybe THREE of us) actually run antivirus. But what do I know?2 points
-
To add to Roy's reply, Mozilla's "BugZilla" doesn't only contain "bugs" in the sense most of us we'd use that term for ; "bugzilla.mozilla.com" has many entries for purely "new features" (these days, mostly backported from Chromium) or new "executive decisions" implementation; e.g. Mozilla dropping support for NT < 6.1 was "bug" () #1130266: https://bugzilla.mozilla.org/show_bug.cgi?id=1130266 When a Bugzilla "entry" is being cited in the UXP repo/changelog, this means that relevant code from that "entry" was used (as a starting point, at least) to implement a similar feature/fix a similar "bug"/etc. in UXP itself; after all, Mozilla is UXP's "upstream"... I hope this clears things fully now ...2 points
-
I see it. It's sort of like clouds or smoke or the like slowly drifting left over a grey background. (But if you scroll down the page too far, it goes away.) Serpent uses 37-38% of my CPU (an old 2-core AMD A4) when I switch to the tab with that page. That seems like an awful lot for a purely cosmetic effect. I'm guessing the more modern browsers use the computer's GPU vs. its CPU for this effect. While that's a drawback of our browsers, the page is fully functional without the animation, so I'd say just kill it as @Ben Markson suggested.2 points
-
2 points
-
I think the main culprit is this: https://b.thumbs.redditmedia.com/vVqCiuMuYjtIEG4538PA7zjsBOXQi37pmfABOgXoEQY.css ...with its CSS Animations. This interests me as I really hate webpages that gratuitously consume CPU after they've rendered. Fair enough if its essential to the function of what's being displayed but not just to add some pointless effects. I came across this as a panacea to killing all CSS Animations: * { /*CSS transitions*/ -o-transition-property: none !important; -moz-transition-property: none !important; -ms-transition-property: none !important; -webkit-transition-property: none !important; transition-property: none !important; /*CSS transforms*/ -o-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -webkit-transform: none !important; transform: none !important; /*CSS animations*/ -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important; -ms-animation: none !important; animation: none !important; } Which I reduced to this: * { transition-property: none !important; transform: none !important; animation: none !important; } It certainly improves that Reddit page. Ben.2 points
-
2 points
-
You’re right: It was not “odd” that only Sandboxie and not Kaspersky mentioned a conflict between the two. Speaking of Kaspersky: AV Test has recently posted test results for June 2023. It almost goes without saying that Kaspersky is still a “top product,” but I note that the German government has still not pressured the lab into parroting any FUD about Kaspersky. To me, this is a healthy sign that Germany is still a free country. 🇩🇪 https://www.av-test.org/en/antivirus/home-windows/windows-10/june-2023/kaspersky-lab-standard-21.13-231311/2 points
-
You're welcome! I thought you perhaps wanted to see a correctly sized "Hellenic" flag. You see, I can always learn something new. This thread here is the absolutely correct place for such discussions. That was actually the reason I created this thread. And I think you already know this, I love extensions.2 points
-
The reason I suggested to use CRT's iconsize attribute setting to large icons was that it might fix problems with other extensions in terms of correct toolbar icon sizes, too. In such cases, there would be no need to modify the affected extensions. The Photonic theme is unfortunately buggy. Therefore, you have to do a lot of trickery to correct any display errors of pop-up windows or anything else, as they do not actually occur when using the default theme. Actually, these extensions are working properly for themselves. I fear the truncated pop-up window of IP Geolocator can't be fixed easily. Using the Photonic theme, changes in IP Geolocator's file main.css are not really taken into account. Many settings are simply overwritten by this theme. I already tested that. I believe a proper fix can only be done to the Photonic theme by the author. Inside its xpi file, there are tons of css files. Trial and error would be a never-ending story. And TBH, I personally haven't used any themes at all for a long time, neither in New Moon nor in Serpent. Themes cause very often display errors sooner or later. At least, that's how it was for me.2 points
-
Update notification! GetEmAll! has been updated and is now in the version 1.2.4 available. I mention it because the automatic update function in New Moon 28 won't offer it. For this browser, the extension has to be downloaded manually, and its compatibility has to be adjusted in the file install.rdf manually, too, such as shown here: Original: </Description> </em:localized> <em:targetApplication name="Pale Moon"> <Description em:id="{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}" em:minVersion="29.0" em:maxVersion="32.*"/> </em:targetApplication> Modified: </Description> </em:localized> <em:targetApplication name="Pale Moon"> <Description em:id="{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}" em:minVersion="28.0" em:maxVersion="32.*"/> </em:targetApplication> Here is the link: https://addons.palemoon.org/addon/getemall/ Cheers, AstroSkipper1 point
-
I use the tool USBDLM. It is freeware, developed in Germany by Uwe Sieber, still updated and compatible with Windows XP. The latest version is USBDLM 5.5.9 from 09.07.2023. This is a quotation from the English version of the homepage to get an idea what this tool is about: Additionally, it reports successfully (connecting and) disconnecting of any USB drives via a systray balloon tip to let the user know when the drive can be unplugged safely. Therefore, I do not need an extra tool for a safe remove of USB drives. Homepage: https://www.uwe-sieber.de/usbdlm_e.html Cheers, AstroSkipper1 point
-
https://mega.nz/folder/68dj2YTY#As2w31IO4Smr7gy6p1ciSg ProxyMII_230813.7z. But i didn't know how to get ProxyMII to work with WebSockets. And, please, take look at Privoxy3.0.35_231208.7z - looks like it open onlyfans.com normally. @cmalex! Thank you very much for your quick reply and especially for your upload! I will test your package as soon as possible and report back here in my thread. And I will take a look at Privoxy 3.0.35_23120 for trying to access successfully again https://onlyfans.com/ with its help. I am very curious and excited. You are simply the best. Greetings from Germany, AstroSkipper1 point
-
Here's how I did it a few months ago: 1. I unpacked the contents of the English version of KEX into a separate folder. 2. Went through every single .dll and .exe of the package with Resource Hacker, replacing the contents of "Menu", "Dialog", "String Table" and "Message Table" with the contents from already localized system-native versions of these .dlls. 3. In update.inf I changed the "LangTypeValue=" so that the installer worked. And that's it. Didn't even repackage it back or anything, just ran setup.exe and installed it. Editing all the files took me awhile, but it worked in the end.1 point
-
You're probably right, but Serpent gobbles CPU on that page even under Win 7. I should say that I don't know enough about GPU programming to know what it would take to bring down the CPU usage on an XP- (or even a Vista-) compatible browser. Even if it's possible, though, it's probably not worth doing since it's so easy to just kill these animations.1 point
-
On my Win7 quad-core at the moment and you can see the CPU drop as soon as I turned off that STUPID animation.1 point
-
If you indeed load (in a UXP-based browser): https://old.reddit.com/r/skyrim/comments/15ogxfp/marker_stuck_on_void_teleportation_room/?rdt=47005 and pay closer attention to the page's dark background, you'll hopefully be able to see that a huge (1780x1000) background (PNG) image, https://b.thumbs.redditmedia.com/EPTJlCSEAevLWzc46Lz6YNxuxSrNXzQMuoquXYgKgsI.png is slowly moving from right to left ...1 point
-
it's stupid to leave it scanning your computer nonstop if you don't download software programs I have yet to find a website with malicious JS code that would infect my computer with a single mouse click. AVAST is by far the BEST AV for XP these days, fast and efective enough1 point
-
Perhaps it needs a dedicated topic here? I'm pretty positive most don't even have github accounts to ask questions.1 point
-
All antiviruses became bad when they added cloud scanning. The only question you have to ask yourself is to which government you send your data to. Do you trust your government ? Or a government from another country? The reason US government say Kaspersky is bad is the same reason they say Tiktok is bad. US goverment wants the data of it's citizens. If everyone stops using Facebook, Twitter or any data collecting company that it's not US located they loose the data of their people. It's a war for your data. @Vistapocalypse I was using Eset 5 until it they stopped supporting XP. I have been too busy and haven't had the time to check Kaspersky on XP. Eset 5 was the lightest AV I've ever used. And I really appreciated their honesty when they allowed You to decide to not enable the ESET Live Grid. I quote: You will not lose any functionality in the software, and you will still receive the best protection that we offer.1 point
-
And if we are being "truly fair", to anybody that is "concerned" with CVE reports - "why are you on Win7 then?" Shouldn't the "sky be falling" with all of the CVEs reported for Win7? Afterall, "Windows 7" has 1,412 CVE reports to "Windows 10" having "fewer" at 1,195 and to "Windows 11" having "only" 81. Heck, "Windows XP" only has 656. NONE of these stop MSFN Members from using Win7 or XP. Or Vista with their 737 CVE reports. I am not "for" or "against" Kaspersky! But come on, let's be a bit more "fair and unbiased" in our discussions. Our "whole universe" should NOT revolve around a CVE report from 2019. There are ways to REMOVE the "unique Product ID" if you guys truly WANTED to, but the reality is that you'd rather "talk it down" as opposed to seeking/discussing SOLUTIONS.1 point
-
SO IS NORTON, SO IS McAFEE, SO IS COMODO, SO IS AVIRA, SO IS AVAST, SO IS MALWAREBYTES, SO IS AVG... Use that database web site and perform some searches for other antivirus programs -- https://nvd.nist.gov/vuln/search I'm showing 75 for Avast - read through all of them before using any Avast product and if they apply to the product you wish to use. I'm showing 90 for Kaspersky - read through all of them before using any Kaspersky product and if they apply to the product you wish to use. I'm showing 25 for Malwarebytes - read through all of them before using any Malwarebytes product and if they apply to the product you wish to use. 114 for Norton... 37 for Avira... 40 for AVG... 44 for Comodo... 482 for McAfee... No, that's not a typo, four hundred and eighty two... 3,019 when I search for Firefox... Again, not a typo - three thousand and nineteen... 38 when I search for Chromium... 3,440 when I search for Chrome... 6,728 when I search for Linux... Six thousand seven hundred and twenty eight... 557 when I search for antivirus... Pointing out these CVE "issues" does have its place, but it is mostly FEARMONGERING - https://en.wikipedia.org/wiki/Fearmongering1 point
-
Thank you, although I don't think there's anything to congratulate me for. Being nice to others, even if you disagree with them or the things that they do, is not a difficult task (unless your name is Matt A Tobin).1 point
-
Does this matter? StorAhci was sample for 8 and now we have XP compatible code. Even If it will work only for Vista - 7 then its fine, we need to solve more Generic GPU issues on 5.1 - 6.1. I just checked how Kai modded his code to make it WDK 7.1 compatible. I have these samples for 8.0 so its same branch as Storahci. I hope its possible to compile it using WDK 7.1 then we can get XP-7 compatible driver1 point
-
Now we talking! So get your arse off the sofa and start resisting! Before it's too late! Form a movement, get support from businesses who are fed up with the agenda crap and just want to make money in a free and safe state. Make up a short and sweet name, like WLM (white legacy matters) or smth. The indoctrination of kids is imported from the well known commie countries. Don't you get it ? Read history, it's how any totalitirian state begins to emerge. Be prepared : up to 75 percent in your movement will be working for the FBI (whio aren't on you side now), but that doesn't mean you will never get sympathies from them. Just be on your guard and act with caution. Later on, when you get enough money - start recruiting pros. (ex-CIA, for example). Some foreigners would do good, take only those who aren't infiltrated by chinorussia, I can help you with the screening. If you ever need my help, just call D.Draker, my boys and me, we are always ready. Your FBI/NSA has no jurisdiction over us. I shan't post any more details here, publicly. P.S. I do consult, also. Strategies, PR, joint force tactical operations command, cyber ops/security - all well within my area of expertise. Later years - psy ops (as a hobby), though I still consider myself a novice in that regard. And, maybe, some day we meet, I'll teach you the proper English spelling personally, while we both protect America from the aliens of all sorts.1 point
-
1 point
-
Where were you 20 years ago? Did you have an internet connection? They already tried to push that agenda in European Union, somewhere in 2006! Plenty of creepy looking games without blood! Yes, the body just falls and no blood gets out, example Sacred (First, good German Sacred RPG with blood) and bloodless Titan Quest. That's a sure way to p*ss off many gamers, thus provoking real violence! P.S. Looks like your finger got stuck on SHIFT or CAPSLOCK.1 point
-
Joking in a subforum called Funny Farm? No problem! That's the actual goal of such a location. I agree with you that everything is changing in our world. Much faster than in the older times. But unfortunately, there are many changes I don't like. I am a bit old school or maybe more. One of my main goals here on MSFN is to make Windows XP fit for the next few years, to maintain it, to support it and keep it alive as long as possible. So much for Legacy Windows.1 point
-
1 point
-
In English it's "legacyfan and I". Now you owe me 50 bucks for the English lesson. So it should be like this. "legacyfan and I are not that stupid, sir. Please, excuse us, sir." Here, fixed it for ya.1 point
-
What else did you expect starting such a thread in a non-technical subforum? Everything that is possible is posted here. This thread in this non-technical subforum has absolutely nothing to do with Legacy Windows. This is where especially all the social media and lollipop posters get attracted at their finest and nothing else. IMHO, this has nothing to do with the original idea of MSFN. Spoken for me only, I am in general technically interested when surfing MSFN. That's why you find me here very rarely. And that's why I became a member of the MSFN Forum in 2010.1 point
-
1 point
-
Hello , i'm sorry I don't quite understand the purpose of this build. One won't be able to play with GT710. It's weak even for office use. If you insist on bying from Amazon.in only , then I'd suggest to replace it with GTX 950 2GD5 OCV1 , they are available there and it is fully supported on Vista. Also , maybe I'm a bit of old school , but I don't like SSDs , any of them. WD Blue 10EZEX is fast enough for this build. 550W (if it is a true 550W PSU) would be more than enough for this whole system with the replaced GPU.1 point
-
There's nothing cheap nowadays . If you see a "cheap" price , that's for locals only . Ebay's "global shiping" price is just outrageous , it also has whooping fees , like for example , search for Intel G3470 , it costs somewhere between 40-50 USD , plus shipping (30 - 40 USD) , plus ebay fees "See import charges at checkout" and my country's VAT , it will be way over 120USD. I bought it NEW seven or six years ago for smth like 60 Euro (about 80 USD at that time). This used should cost no more than 20 bucks shipped. Will you find you find such price ? No . Edit : just checked videocards . OMG : 7- 8 y.o. GTX780 for 130 - 250 USD , plus shipping, starting from 70 and up to 180 USD !!! (plus my country tax)1 point
-
1 point
-
5.9 all , I beleive it's the maximum . But I have 5.9 even on much older PC with Core Quad.1 point
-
Well , I would've try , but it's not making any sense now . 72 is old already. Besides ,what are the features of plain chrome , Opera has hide IP (at least). Besides , I'm still fighting for DTS HD , kinda busy . Perhaps I will try later and inform you.1 point
-
Hi , I've tried x64 Chromium ungoogled 84 , 85 , 86 and nothing happens , yep that's right , no errors shown. Also , I've tried some games with this method with zero luck . For example, games with "mono" engine simply tell : cannot load mono. Others just quit in silence, like their process shown for a sec., then quits. By the way , could you please tell me where to read about certificates updating . Much appreciated ! Edit , I had a manual update from MS links done, still the browser tells I don't have the needed certs.1 point