Showing posts with label computing. Show all posts
Showing posts with label computing. Show all posts

Wednesday 23 October 2024

SCREENSAVERS ARE JUST EYE CANDY

Now that I'm using Linux Mint as my "daily driver" (everyday computer) I've started documenting some of the often quite bizarre issues that arise when switching from Windows to Linux.

Screensavers don't seem like such a big deal, but they are actually a good example of the typical sorts of issues that send NEWBS whimpering back to the dark fist of Microscum.

Before going any further I want to emphasize that this is only a minor issue that is not preventing me from using my Linux PC. But I'm going on about it here to bring attention to the sort of thing that needs to be changed if Linux is ever to become more popular. I certainly don't recommend trying to read or understand any of the purple text below. That is all geek speak which might as well be Chinese for most people. It's just here as an example of a lot of the incomprehensible Linux info that is posted online.

Here is a website that provides some non-geek information about Linux - https://www.reallinuxuser.com/

The way that Linux Mint installs itself by default, there is effectively no screensaver. After a while the computer just goes into sleep mode and switches to a black screen, so it looks like it is turned off. In Windows I would pick up my mouse and check if the light on the mouse was on, but in Linux even that is off, so without tapping the keyboard and waiting to see if the computer eventually wakes up in it's own good time, so I have no idea if it's even turned on or not.

 

This is probably all because some GEEK decided that screensavers are "just eye candy" and users are better off to not have one because they "waste power and heat up your CPU" as well as being a "security risk" (Yes, these are quotes from an actual GEEK on a Linux forum).

And that is the sort of thinking that explains why a completely free and in many ways totally superior operating system like Linux Mint only has a fraction of the market share of a load of badly designed globalist spyware like Windows 10. There are other reasons, but this sort of thinking does not help.

Of course you can add a screensaver, hundreds of screen savers in fact, because this is Linux, so you can change anything. But of course this is not as easy as it first sounds, because this is Linux, and nothing ever is.

All you need to do is install Xscreensaver and you will then have 200 free screensavers that you can set up to display whenever and however you want. Cool! 

What Exactly is XScreenSaver?

 
XScreenSaver is an extensive and expandable collection of over 200 different screensavers that add visual flair and fun to otherwise dull computer displays when they are idle or sleeping.

First released in 1993 by Open Source developer Jamie Zawinski, XScreenSaver has been delighting Linux users for over 25 years with continually updated screensavers ranging from simple geometrics animations to complex real-time renders and even interactive displays.

Over that quarter decade of development, XScreenSaver has racked up some impressive stats:

    1.2 million downloads across major Linux distribution repositories
    An average rating of 4 out 5 from over 3,000 reviews on Ubuntu universe
    Featured as a top 10 must-have app on Linux systems by publications like LINUX+ magazine

Beyond quantities and ratings, XScreenSaver also wins praise from Linux users for features like:

    The sheer variety of visual styles – from abstract to intricate photo-realistic animations
    Customizability with per-display settings, shuffle modes and viewer-provided content
    The light footprint compared to other screensaver options – important for older hardware

Simply put, if you want to unlock a world of cool, creative screensavers for your Linux Mint desktop, XScreenSaver is hands-down one of the best choices out there.

 https://thelinuxcode.com/install-xscreensaver-linux-mint/

So what is the catch? Firstly most of the pre-installed screensavers appear to be from the 90's and they look absolutely terrible. And many of the others on the menu are not actually installed. But there are still lots of choices, and some of them look pretty cool. So what am I moaning about?

The ISSUE. As with many things Linux, there is an issue. When you reboot your computer it reverts to the power saving defaults that the original GEEK set up to save the world from dangerous "EYE CANDY"

Bugger... Can this be fixed? Of course it can, this is Linux, so everything can be fixed. But you will probably have to read solutions from GEEKS who will include the words "easy" and "type" in the same post...

Here is an example of an old forum reply:

Yup. Easy peezy.

Add the xscreensaver daemon to your list of startup programs. Go to System / Preferences / Sessions / Startup Programs, click "Add" and type "xscreensaver -no-splash".

Then
(in a terminal)
gksudo gedit /usr/share/applications/gnome-screensaver-preferences.desktop

find this line:
Exec=gnome-screensaver-preferences
change to:
Exec=xscreensaver-demo

comment out the last couple lines like so:
#X-GNOME-Bugzilla-Bugzilla=GNOME
#X-GNOME-Bugzilla-Product=gnome-screensaver
#X-GNOME-Bugzilla-Component=general
#X-Ubuntu-Gettext-Domain=gnome-screensaver

lastly,
Click System / Preferences / Screensaver to launch the xscreensaver configuration window, go to the "Advanced" tab and uncheck the "Power Management Enabled" checkbox. This should stop xscreensaver's power saving features from conflicting with Gnome Power Manager

 https://www.computerforum.com/threads/adding-more-screensavers-to-xscreensaver.205759/

 

 But that was long ago, in 2024 all this stuff will be sorted right? - NO! OMG WTF?

Each desktop environment has its own system for launching long-running daemons like XScreenSaver, and since many of them come bundled with their own (buggy, insecure, inferior) screen-locking frameworks, it is also necessary to disable those other frameworks before XScreenSaver can work.
Installing Xscreensaver on Gnome or Unity

For many years, GNOME included XScreenSaver as-is, and everything just worked. Not any more!

1: Fully uninstall the other screen saver packages:

        sudo apt remove gnome-screensaver
        sudo apt remove mate-screensaver
        sudo apt remove cinnamon-screensaver
        sudo apt remove light-locker
    or
        sudo rpm -e gnome-screensaver
        sudo rpm -e mate-screensaver
        sudo rpm -e cinnamon-screensaver
        sudo rpm -e light-locker

    Be careful that it doesn't try to uninstall all of GNOME.
2: Turn off GNOME's built-in blanking.

    Set all of the following settings to "Never" or "Off", as these are all controlled by xscreensaver-settings(1) now:

    "Settings / Privacy / Screen Lock / Blank Screen Delay"
    "Settings / Privacy / Screen Lock / Automatic Screen Lock"
    "Settings / Power / Blank Screen"
    "Settings / Power / Automatic Suspend"
3: Launch XScreenSaver at login.

    Launch "Tweaks", select "Startup Applications", click the plus sign, and select "XScreenSaver" (not "XScreenSaver Settings") from the (very long) menu.

    Or, see the "Launching Xscreensaver from Systemd" section below. That works too.
4: Make GNOME's "Lock" icon use XScreenSaver.

    This used to work, but no longer does with GNOME 3.38.  If you figure it out, let me know!  This still works for Cinnamon 4.8 and MATE 1.24:

        sudo ln -sf /usr/bin/xscreensaver-command \
               /usr/bin/gnome-screensaver-command
        sudo ln -sf /usr/bin/xscreensaver-command \
            /usr/bin/cinnamon-screensaver-command
        sudo ln -sf /usr/bin/xscreensaver-command \
                /usr/bin/mate-screensaver-command
        sudo ln -sf /usr/bin/xscreensaver-command \
               /usr/bin/xfce4-screensaver-command
        sudo ln -sf /usr/bin/xscreensaver-command \
                    /usr/bin/light-locker-command

    This change will get blown away when you upgrade.

https://www.mankier.com/1/xscreensaver

Let's face it, no regular computer user is going to do all that just to get a screensaver. Until Linux stops dicking around with this GEEK crap, Windows will continue to rule. 

So have I sorted my screensaver? - No, not really, that would take more tweaking. At this point I have just changed the power settings to never go to sleep, so now I have the default screensaver showing, which is my usual wallpaper image as background with the time & date moving around the screen. 

Having the time onscreen is actually quite handy, and now I can see that the PC is on, so I'm just going to leave it like that for now, but if I later have time & inclination, I may go onto the Mint Forum and try to find out how to set up Xscreensaver properly. But that might involve doing something weird with a daemon so it can all wait for another day...

 

Wednesday 16 October 2024

LINUX GEEKS

In this post I'll be referring to "GEEKS" quite a bit. This is not entirely disrespectful, I do appreciate all the work geeks put in, creating open source software. But like so many people transitioning from Windows to Linux I have come to view geeks as a bizarre sub-species of computer users who take a perverse pleasure in exerting their superiority over NEWBS (New Linux users - I am a newb)


Making the shift from Windows to Linux is neither massively difficult, nor is it entirely easy. It's a bit of both, but a lot of the information online is biased, or badly presented, or created by geeks who are sometimes making things harder than they need to be.

Possibly some computer geeks place a value on themselves that partly stems from being the only ones who understand the technology, so making them gatekeeper tech gods. Which they get a buzz out of. 

Unfortunately this tends to mean that rather than making things easier for newbs by giving them simple instructions, they often give out incomprehensible instructions like "Just enter this simple command in Terminal". Their condescending tone of "this is all really easy" is infuriating and one of the main reasons so many newbs give up.

Geeks seem to be unwilling to accept that about 90% of people using computers are not other geeks, but regular people who want to have most, or even everything they do accessible through buttons and menus that they can click on. 

Personally I like to do everything on my PC using my mouse, and am about as anti keyboard command as it's possible to be. The very word "type" totally turns me off. "Copy & paste" I can do if necessary, but not "type" What I actually want to see are the words "click on".

Life often plays out in strange ways, and I have brain damage to the left hemisphere of my brain, so am very right brain dominant, but I still use computers anyway, and even sometimes seem to end up trying to explain computer stuff to other non-geeks who just want some basic instructions. 

My perspective from being a right brain computer user is a bit different to most of the people who are usually commentating on this stuff, so I imagine any actual geeks who see my posts might view me as a clueless idiot. Which I sort of am.

During the process of transitioning from Windows 7 (Yes, I am still using Win 7 in 2024) to Linux Mint, it has struck me that a lot of the information online is confusing rather than helpful, and I wish I could have read (Yes READ, not viewed endless badly done videos) web-pages that explained things in a way that made sense to me.

Here I'm attempting to leave some notes for my friends who at some point will be wanting to escape the clutches of Microsoft. Windows 11 is likely to be the final straw for a lot of people with it's obvious and intrusive spyware, so the end of Windows for non sheeple is looming close on the horizon. Linux is the only real option for anyone who wants to continue using a computer without selling their soul to the deep state. (Yes, Apple & Google are spying too)

As I've found from sticking with Windows 7 and refusing to use Windows 8 or Windows 10, it is possible to soldier on for years with an unsupported operating system, and I expect I'll keep using Windows 7 on some of my old laptops for years to come. But installing Windows 7 on more modern hardware is a pig of a job, mainly because sorting out drivers can be really tricky, and there are ever increasing problems with software no longer working properly. 

I will probably do a post about some of the Win 7 work arounds, because Windows 7 is slowly gaining a cult following as the last relatively low spyware version of Windows. But Linux is the future and I think everyone who wants to use a computer with some degree of privacy is going to have to get the hang of it. So I'll do some more Linux posts attempting to clarify a few things.


 

Saturday 12 October 2024

WINDOWS 11 IS TOTAL SPYWARE

There is a fair bit of publicity about Windows 11 new "Recall" spyware which is constantly taking screenshots of everything you do on your Windows 11 PC, but it really should be no surprise that Microscum are doing a lot more spying than just that.


As soon as Windows 11 first boots, it starts connecting to online services provided by Microsoft, including MSN, the Bing search engine and Windows Update, and a bunch of third-party services such as Steam, McAfee, and Comscore ScorecardResearch.com, which is a market research effort that "studies and reports on Internet trends and behavior."

https://www.techspot.com/news/97535-windows-11-spyware-machine-out-users-control.html

 https://www.youtube.com/watch?v=G9FRadIkkE0&t

 



Wednesday 9 October 2024

BEST LINUX DISTRO FOR GEEKS

In doing some research into Linux, I could see that that the requirements of a non tech user who just wants a working computer are very different from a geek who wants to tweek things all day.

The best distro for a low tech chump like me looks to be Mint, but if I was a geek I think I would go with Debian.

Debian was founded in 1993 by Ian Murdock, and the name "Debian" was formed from the first name of his then-girlfriend (later ex-wife) Debra Lynn and his own first name.

Debian is the source code language that distros like Mint & Ubuntu are based on, & it's also a distro in itself, aimed at geeks and tech heads

 

Monday 7 October 2024

RETURNING TO LINUX

 Like many people I'm a reluctant Windows user who hates Microscum, and does not want Kill Gate's evil fist up my rectum. So I have long wanted to escape and move to Linux.

In fact I did try to do that back in 2010, but I'm not very technically advanced and it was all just too difficult, so I gave up and went back to Windows XP. (A modified version called Last XP). At that time the programs I was mainly using were Microsoft Office, and Adobe Photoshop, neither of which work on Linux. I did a blog post my Linux experiment in 2010: https://www.frot.co.nz/design/computing/linux/

Now I've been using Libre Office for years, and all my email is done through Proton Mail rather than Outlook, so a big part of my software problem is already sorted. I'm still using an old version of Photoshop (CS6), but I can see that GIMP 2 can do everything I'm doing in Photoshop. Gimp 3 is due out soon, and that will probably be more advanced than the Photoshop version I'm using. So I'm now more motivated to learn Gimp.


Meanwhile the various Linux systems ("distros") have moved on a lot. So while Windows has been going backwards since Windows 7 (2014), Linux has been continued to slowly develop and improve over the past decade. 

One of the biggest roadblocks to new users switching to Linux is that it's all just too confusing. There are endless options, both for the distros, and the software as well. But nobody seems to want to give a straight answer about what is best. 

The website Distrowatch is probably the best source of Linux information, but the first thing you are confronted with there is that there are 272 distros. And most of them have multiple versions, which are constantly being updated. So there are actually thousands of distros! Here are the current top 40:

What I wanted is for someone to tell me which ones are any good. And it turns out if you are a non tech user like me, there are only a handful of suitable choices.

Back in 2010 I tried about 10 distros, and ended up going with Ubuntu. But I never actually liked it or felt at home using it. And this may sound odd, but I also just didn't like the people it seemed to attract. There were lots of angry geeks mouthing off in forums, and it was all just a bad vibe. I later found that most of the other distros were friendly and helpful. 


 In 2010 the other distros I liked were PCLinuxOS, Puppy, and Mint. But with each one I had problems that stopped me using it. At that time Ubuntu seemed more advanced, and it was the number one distro, but it was about to start going backwards.

This time around, I only found two distros I liked enough to seriously consider, Mint and Zorin. I gave both a decent try, and found that although Zorin looks really cool, and is better sorted out of the box, once I started learning a bit more, I could get Mint looking and working how I wanted, while on Zorin I had a few things I couldn't get to work. I came to the conclusion Mint is more stable, has better support, and is fully sorted.

So now I'm gradually shifting over to using Linux Mint. It hasn't been a quick process, because I've been using Windows since the 90's and making changes is difficult. But looking at what Microsoft are up to, I can see there is no future there and I have to find an alternative. This is my Mint desktop so far:


Friday 4 October 2024

LINUX MISINFORMATION

Like everything else on the internet, much of the information posted about Linux is misinformation. When I was looking into the different distros I came across this example:

The 11 Best Debian-Based Linux Distributions


I know that compared to misinformation on the covidhoax or the death jabs for example, this is all pretty trivial, but I've been geeking out this week and that is what I've mostly been looking at.
 
Linux review sites generally use pictures of the desktops of each of the distros they are featuring. They also tend to rank them in lists such as "Top 10". These are usually based on some sort of objective assessment and reasons are usually given.
 
In this case the "The 11 Best Debian-Based Linux Distributions" seems to be chosen entirely to make Ubuntu look good at #1 and Mint look bad at #11. I'm guessing they were paid some sort of kickback to do this. probably from Ubuntu who have been eclipsed by Mint now.
 
 
On Distrowatch Mint is currently ranked #1 and Ubuntu is at #5. Ubuntu hasn't been number #1 for about five years, and it's popularity is slowly dropping.

  
In their desperate attempt to make Mint look bad they posted good screenshots of the first 10 distros, and then used a terrible picture for Mint in last place at #11 - very odd!
 

 
They would have actually have had to change a bunch of the default settings to make Mint look this bad, and they have even made Firefox look like Chrome for this screenshot.
 

Grudgingly they admit
"Linux Mint is a distro meant to be complete "out of the box", even more than Ubuntu, which it's based on"
 
 
In total contrast, this list is of "The 12 Best Debian-based Linux Distributions" is much better , but from reading the comments it appears it was originally a top 10, with no mention of Mint, that was later changed to a Top 12 with two versions of Mint included. And neither of these lists includes the Debian distro itself. Odder and Odder.

 

 

 

Saturday 28 September 2024

LIBGEN IS TEMPORALLY DOWN

LIBGEN is down at the moment, but no panic, I don't expect it to stay down for long. LIBGEN is awesome, that is where I have downloaded most of my 11k of ebooks.

The way Libgen just pop back up is a great example of how to overcome censorship and globalist control using the deep state's own systems against them
 


 

 

"On Thursday, some links to the notorious shadow library Library Genesis (Libgen) couldn't be reached after a US district court judge, Colleen McMahon, ordered what TorrentFreak called "one of the broadest anti-piracy injunctions" ever issued by a US court.

In her order, McMahon sided with textbook publishers who accused Libgen of willful copyright infringement after Libgen completely ignored their complaint.

To compensate rightsholders, McMahon ordered Libgen to pay $30 million, but because nobody knows who runs the shadow library, it seems unlikely that publishers will be paid any time soon, if ever.

Because Libgen's admins remain anonymous and elusive—and previously avoided paying a different set of publishers $15 million in 2017—McMahon granted publishers' request for an uncommonly broad injunction that may empower publishers to go further than ever to destroy the shadow library"


But these clowns don't have a shit show of taking down Libgen - it will just pop back up again

"But even under such a broad injunction, the question remains whether publishers can succeed in taking down Libgen—which openly informs users that using its platform violates copyright laws and encourages them to pirate books anyway.

"It is illegal to download ('make copies of') material that is protected by copyright," Libgen's 2023 video said. "However, all that is illegal is not criminal… for the average person, generally there won't be any criminal consequences under copyright law from having pirated items on your computer."

 

Current alias domains:

The RS URL is down but the IS & ST domains are both working today

 https://libgen.st

 https://libgen.is

 https://libgen.rs

RS is Russia, IS is Iceland, and ST is São Tome 

https://www.worldstandards.eu/other/tlds/


Wednesday 25 September 2024

DE-GOOGLE YOUR LIFE

 This free ebook is interesting - it outlines the basics of how Google is spying and how to get rid of the evil maggots.

FREE EBOOK (PDF) 


 

Friday 6 September 2024

I STILL USE WINDOWS 7

My geek secret – I am dirty and bad. I use Windows 7

Although I like to tell everyone I’M NOT A GEEK, I do have more than a dozen computers, laptops,  & tablets.

The reason I reassure myself that I’M NOT A GEEK is that I find it a bit of a struggle to understand all this stuff.

But back in the day I used to do web pages about Microsoft operating systems as I slowly learned about them – so I had pages about Windows 2000, XP, and 7

Then Windows 8 came out, and I gave up. What a pile of shit it was.

And these days most people seem to just accept Windows 10/11 as the new normal.

They don’t bother to question that crap any more than all the other mainstream programming.

And that is what Windows 10/11 really are – social programming rather than an operating system.

Although I do still use Windows 7, (along with Linux Mint and Android) I would never use Windows 10/11.

When 10 first came out, in 2015, rather than doing a post about it I just posted a copy of this review as an explanation of why I will never use it.

If people still haven’t woken up to what Microsoft is all about, they may not be the sharpest tools in the shed.

image.png

WINDOWS 10 IS BADLY DESIGNED SPYWARE

There is a line and Microsoft have crossed it with Windows 10 – I don’t plan to ever use it, which is why I have copied this information from another site rather than researching it for myself

There are two kinds of issues with the Windows operating systems created by Microsoft. Problems common to every version of Windows, and problems specific to Windows 10.

Problems which are present in every version of Windows

No enforced file system and registry hierarchy (I have yet to find a single serious application which can uninstall itself cleanly and fully). The $USER directory in Windows, specially in Windows 10, is an inexplicable mess.
svchost.exe (the whole philosophy of preserving RAM this way became outdated years ago).
No true safe mode (rogue applications may easily run in it).
No clean state (for most OEM installations out there).
The user as a system administrator (thus viruses/malware – most users don’t and won’t understand UAC warnings).
No good packaging mechanism (MSI is a fragile abomination).
No system wide update mechanism (which includes third party software).
In certain cases it’s extremely difficult to find drivers for your hardware devices.
Windows is extremely difficult to debug.
Windows boot problems are too often fatal and unsolvable unless you reinstall from scratch.
Windows is hardware dependent (especially when running from UEFI).
Windows updates are terribly unreliable, very slow (to install) and they also waste disk space.
Windows keeps trying to reinstall failed updates over and over (in certain cases every such cycle of “updating” can render you PC disabled for hours!).
There’s no way to cleanly upgrade your system (there will be thousands of leftovers), etc.
Windows OS installer doesn’t give a damn about other OSes installed on your PC and it always overwrites the MBR. In case of already existing Windows installations, it sets the newly installed Windows as the default OS – no questions asked. In case of UEFI booting of other non Windows OSes is unsupported and Windows actively prevents this.
WinSxS, though a neat idea, turned into some madness: Windows keeps the versions of files the user won’t ever need: for instance the English version of Windows will have copies of files for many other languages irrespective of the chosen locale or MUI.
Cryptic error messages (considering the size of the OS (>9GB as of Windows 10) this practice is simply ridiculous).
Most malware writers target Windows as the most popular desktop OS, so it has the biggest number of viruses among all other OSes (over five thousand new viruses daily).
Windows loves thrashing your HDD.
Microsoft has gone crazy: KB3083710 which is a prerequisite for Windows 10 upgrade is being foisted on Windows 7 users as a security/mandatory update.
Devastating Windows rot.

image.png

Issues specific to Windows 10

Windows 10 features an EULA which grants Microsoft the rights to use any content found on your PC: “you grant to Microsoft a worldwide and royalty-free intellectual property license to use Your Content”. You can read Microsoft’s response here which paints everything in a positive light however after Snowden’s leaks it’s hard if not impossible to take them seriously.

Windows 10 spies on you and even more so on your children aka phones home (welcome NSA/CIA/thoughtcrime/1984)! (Microsoft added spying features to Windows 7/8 as well)

Windows 10 is a beta quality release (at the time of writing, – August, 2015):
Microsoft hides the information about Windows 10 updates, so often you won’t even know what certain updates are aimed to fix or improve. Also Windows 10 updates may have unintended consequences and unannounced changes in behaviour (it’s already been confirmed).

Many users report that their sound card stopped working after upgrading to Windows 10.

Windows 10 updates/upgrade can send your PC into an infinite loop.

In certain cases Windows 10 may kill your display if you are an unlucky owner of a laptop made by Alienware, LG or Samsung.

You’ve got no real control over crucial features of the OS:
Windows 10 will have no service packs which means it will always be a work in progress and you are a perpetual beta tester.
Forced upgrades you cannot opt out of (and Microsoft have borked quite a lot of them recently so prepare to see your Windows die after installing a new portion of updates – actually Microsoft has already borked one update, read horror stories about KB3081424).

Windows 10 features terrible UI inconsistency, not limited to:
Two kinds of fonts antialiasing (ClearType v2 for classic applications and some awful dirty grayish shit for Modern apps).
All kinds of varying visual decorations and styles (some people have discovered up to seven varying styles in Windows 10).
Absolutely dissimilar classic and modern (PC settings) control panels.
Different fonts faces and sizes all around.
Different styles of settings for modern apps.
Absolutely different context menus and their appearance in different applications and apps.

Terrible hardly configurable appearance, dubious design choices and extremely limited functionality (vs Windows 7/XP):
Two Control Panels with absolutely zero thought given to how they differ and why each one should be used.
Some Control Widgets are spread between the two Control Panels which is utterly confusing (e.g. Users Management).
No Windows classic UI for windows decorations. Windows decorations can hardly be configured at all in Windows 10.
An awful choice of colors/palette.
Absolutely awful, childish and amateurish icons as if we live in the era of 8bit displays (only rivalled by those in Windows 3.1 from 1992). Windows 2000 in 1999 looked better than Windows 10 in 2015.

A big number of Windows 10 apps are still NOT on par with their classical counterparts from Windows 7/Vista/XP (many features are missing or many options are not configurable).
The start menu is an unusable abomination. Applications are listed as a list which is nigh impossible to scroll.

Windows 10 sucks terribly if you are an unlucky user of a metered Internet connection:
It features huge mandatory system and apps updates (you cannot disable them, you can only postpone the system reboot after their installation).
As if it wasn’t enough, Windows 10 gets downloaded automatically if you run Windows 7 or 8.1. We are talking about 3 gigabytes of data some people absolutely do not need.

It uses your free bandwidth to distribute updates to other users nearby you.
With Wi-Fi sense enabled anyone you have in your Skype, Outlook or Hotmail contacts lists — and any of your Facebook friends — can be granted automatic access to your Wi-Fi network as long as they’re within range.
A newly created user profile weighs over 300MB (!) while containing zero (!) information about the user.
A newly created user profile is populated with all the default apps instead of giving the user a choice.

Microsoft has lost its mind and they now desperately try to foist/force Windows 10 on unsuspecting users.

image.png

Some ways to fix/configure Windows 10

Do not install it or “upgrade” to it if you’re running Windows 7

If you did, read further:
Install Classic Shell aka Windows 7 (XP) Start Menu for Windows 10.
Uninstall/remove most built-in Metro/Modern apps in Windows 10 (quiet a lot of them are immutable and cannot be uninstalled no matter what):
Fire up administrator’s PowerShell (Start -> Search -> Power -> Right mouse click -> Run as Administrator).
Run (copy and paste):
Get-AppXPackage -User | Remove-AppxPackage (remove the user’s apps)
Get-AppXPackage -AllUsers | Remove-AppxPackage (remove all system wide apps)
Disable Windows 10 most spying/tracking/call home features (you may also try the DoNotSpy10 application but I don’t recommend it).
You can disable built-in torrent-like/bandwidth sharing feature by going to the Start Start button icon ˇ, then Settings > Update & security > Windows Update, and then select Advanced options.
The other things mentioned above cannot be fixed unfortunately (UI inconsistency, two Control Panels, very little UI customizability, disabling of updates, etc.).

image.png

Busting Windows 10 myths

There are many myths that are spread on pro-Microsoft forums and websites, and I want to take a bit of time to debunk some of them.

Windows 10 is more secure than any previous version of Windows

This is complete bollocks. Windows 10 offers exactly zero new protection mechanisms to the end user vs. Windows 7. I haven’t forgotten that Windows 8/10 apps run a sandbox and they are all verified by Microsoft, that’s true, but most of them are made purely for content consumption (so they won’t cut it for power users), besides people will still download executables from the Internet and run them relentlessly. Normally you should never run Windows without a decent antivirus installed (Microsoft Security Essentials is not an AV your can rely on, in fact you’re crazy if you believe it protects you). Head to av-comparatives and check out their real world tests to see what’s best for you. According to various AV comparisons MS Security Essentials misses over 10% of in-the-wild viruses (i.e. over five hundred new viruses every day).

The truth is there are some new security features but they are invisible for most users out there.

Windows 10 is a more modern OS

What does it mean it’s more modern? How exactly do Windows 7 and 8 differ from Windows 10? This is more bulllshit from the Microsoft fanboys.

Windows 10 is faster

There’s no discernible difference in speed between Windows 7, 8 and 10. Windows 10 features an improved memory handling for certain multithreaded applications like WinRAR but most other applications have the same performance.

“I have installed Windows 10 and it feels faster”, right, like with every Windows release it feels fast when you install it from scratch. Then, strangely, it slows down significantly.

image.png

Saturday 31 August 2024

ARE THERE ANY SECURE BROWSERS?

In a word, NO, not really! They are all gathering your data to some extent.


But firstly there is probably not even much point worrying about browser security if you are using Windows 10, and even more so, Windows 11, or Google, or Apple, because they are all full blown spyware. And around 98% of people are!  

Even just focusing on desktop users and leaving out the much bigger mobile market, around 95% of people are using a spyware operating system of some sort on their PC or laptop. Windows 7 which I am still using everyday, is spyware too, just not quite as full on as Win 10. 

https://sift666.blogspot.com/2023/12/i-use-windows-7.html


Because I'm swapping between Windows 7 and Linux Mint, and using three different browsers on each operating system, I've become a bit obsessed with browsers lately.

https://sift666.blogspot.com/2024/06/why-i-use-the-waterfox-browser.html


WHY SO MANY? – On Linux Mint Firefox is my default everyday browser, Vervaldi is for my first level alt accounts and any sites that work better on a Chromium based browser, and Floorp (a Japanese Firefox fork designed for privacy) is for my second level alt accounts and for when I'm attempting to be a bit more anon online.

I find it quicker to keep logged in to my different accounts on different browsers because it's much faster to open a browser than to log out and then back in to another account. 

My strange habit of using multiple alt accounts mostly dates back to when I was posting on multiple blockchain and social media platforms, and wanted to be able to jump back and forth between my alt accounts really quickly - to the point on occasion of appearing to have an argument with myself :) - These days I have given up using most of them and am mainly just using one account on Facebook of all places!


Almost all popular browsers are based on Chromium except for Firefox, and the Firefox forks like Waterfox, Floorp, & Librefox. I don't really like Chromium based browsers on the whole, and regard them all as spyware. 

Chrome is the worst for spying by a country mile, but of course it's also the most popular. My pick of the Chromium browsers is Vivaldi and it's the only one I actually like. I use Vivaldi as my default on my Android tablet. It has a lot of good features and if I used Windows 10 I'd probably also use it there as my default browser.

Out of the Firefox based browsers, Firefox itself is the slowest and the least secure, but it is the default browser on Linux Mint, where it works perfectly, and it's security can be improved by changing some of the settings.

Waterfox is probably the least secure of the popular Firefox forks, because it's now owned by an advertising agency, but it's the only browser I've found that runs well on both Windows 7 and Linux. Neither Librefox or Floorp will install on Windows 7, so that is why I use Waterfox as my default on Win 7. Waterfox still works on Windows 7 while Firefox itself seems to be getting gradually worse.

https://sift666.blogspot.com/2024/06/why-i-use-the-waterfox-browser.html

FINGERPRINTING – This is more insidious than cookies, which can be turned off. 

Tracking has moved toward browser fingerprinting while we are still being distracted by cookies. The idea behind fingerprinting is to collect information about the browser and its environment for the purpose of identification. This includes the browser type and version, operating system, language, time zone, active plugins, installed fonts, screen resolution, CPU class, device memory and various other settings. The attributes become the users fingerprint.

These fingerprints are unique in the majority of cases. You can see your own fingerprint at amiunique.org. If a browser fingerprint happens to be non-unique, it can be made unique by combining it with the device’s IP address. In other words, browser fingerprints are capable of identifying users even when cookies are turned off.

Fingerprinting is actually remarkably easy to do - here is mine: