Take a note that not all applications can be removed by means of this non-root method.
First, a brief introduction. In the past, I used a rooted Sony Xperia XZ1 Compact with all the bloatware disabled.
By purchasing a Chinese device, I lost the privilege of using a rooted device. Since modern Android devices are a b#tch to root, and frankly, I don’t want to get involved in that boring process.
I never thought I would write any kind of stuff about Windows 10.
People on the Internet suggest to remove or disable certain task in the task scheduler:
Microsoft\Windows\international\Synchronize Language Settings But that didn’t work for me. Here’s what made things to run smoothly is tweaking the windows registry a bit.
HKLM\System\CurrentControlSet\Services\CDPSvc
HKLM\System\CurrentControlSet\Services\CDPUserSvc Change value of Start entry from 4 to 2, or if you have 2 than change it to 4.
Shutting down computer without actually doing something useful is quite lame. So i’ve decided to implement a nice addition in the face of junk removal.
@echo off
echo Cleaning up temporary files in %TEMP% folder...
echo.
set "tempfolder=%TEMP%"
cd /d "%tempfolder%"
:: Delete all files and folders in TEMP (including read-only and hidden)
del /q /f /s *.* >nul 2>&1
for /d %%x in (*) do rd /s /q "%%x" >nul 2>&1
echo.
Today i’m not planning any fancy stuff, just a plain USB drive ejector at your disposal. Script ejects all connected flash drives. If drive is in use or some software is locking flash drive it won’t be ejected [obviously].
@echo off
setlocal enabledelayedexpansion
set "drivelist=%temp%\usb_drives_list.txt"
del "%drivelist%" >nul 2>nul
for /f "skip=1 tokens=1" %%D in ('wmic logicaldisk where "drivetype=2" get deviceid') do (
if exist "%%D\" (
echo %%D>>"%drivelist%"
)
)
if not exist "%drivelist%" (
echo No flash drives found!
Exploiting my DAP [which is running Android 12] i almost immediately run into a recent novelty of modern Android versions [ >11 ] of taking away permission from not in ROM applications to write to the root of sd-cards. In order to make changes to the SD card, third-party software should request permission to access the SD card’s root folder. However, Android now restricts this by offering to choose a folder other than the root folder [“for the sake of your security”].
UPDATED ON: 2025-05-06
Today is the lazy monday, so nothing complex at this time. Just a simple backup procedure of copying the appointed folder to a specific place in a 7z archive with a current date name with archive validation upon completion. To make things rollin’ of course you should have 7z software installed on your `puter.
@echo off
setlocal enableextensions enableddelayeexpansion
set "source=C:\Projects"
set "dest=E:\Backups"
:: splitting %DATE% into MM/DD/YYYY parts, this part was a bitch to implement
for /F "tokens=1-3 delims=/.
When doing webdev tasks, I often run into situations where browsers start to glitch due to a stuck cache. Page elements do not being update properly and reload [F5] or even magic [CTRL+F5] does not work at all. Here are two simple batch scripts to hard reset the system cache for Firefox and Chrome based browsers.
@echo off
taskkill /IM chrome.exe /F >nul 2>&1 || echo Chrome is not running
timeout /t 2 /nobreak >nul
rmdir /s /q "C:\Users\YOUR-PROFILE-NAME\AppData\Local\Supermium\User Data\Default\Code Cache"
rmdir /s /q "C:\Users\YOUR-PROFILE-NAME\AppData\Local\Supermium\User Data\Default\Cache"
start "" "%ProgramFiles%\Supermium\chrome.
This script collects all MP4 video files located in D:\Videos [including subfolders], that where created or modified today and copies them to all connected flash drives.
3,4,5 flash drives? Software doesn’t care about the number of connected sticks.
Before copying it creates two lists in the Temp system folder: matching files and available flash drives. When the copy is complete, it beeps through the speakers via standard WAV and displays the GUI report window.
I use OBS on a daily basis to grab tracker music off the screen, so i am interested in keeping it up-to-date for as long as possible. Previously i [already covered]
topic on how to run unsupported version of OBS in Windows 7 environment. But it is already 2025 for God’s sake, and we need some refreshment for sure.
Essential information to make this note happen has been spotted on the [Eclipse forums]
.
If we’re talking about quick deployments XAMPP
is certainly a good thing, but if we want to have complete manual control over things happening under the hood for a more solid and comprehensive approach custom technology bundler is a not so good thing to do.
So, in this blip note i will tell you how to glue Apache, PHP and PostgreSQL technologies together.
Assuming that PHP 8.4 is installed to:
Supporting Windows 7 almost every day for numerous years i have to admit that operating system is getting harder and harder to support, but it is definitely possible and we still don’t have the right to consider it as an obsolete environment.
To install latest Electron framework:
npm install electron --save-dev If you work in a corporate environment with tightened security, such as a government structure or banking institution, you will almost certainly end up with this error:
PostgreSQL Windows 7 support is a piece of dog sh#t. That is why you almost always have a loads of quirks on the table here and there. Beware that i’ve described Postgre installer in a soft words, it deserves way more. Original installer skips almost all things which should be done by a proper one: it won’t initialize your database it won’t kickstart windows service it won’t setup system environment with correct variables it f#cks up user roles it throws loads of errors in your face like Problem running post-install step.
When installing latest drivers for Nvidia videocards in Windows 7 you may encounter error code 52 in the device manager ending up with non-working device.
To fix annoying problem in a simple way follow these steps:
Download latest driver [v475.14]
[Jul 09, 2024] and decompress software by means of [7-zip]
Open extracted folder, locate the Display.Driver folder and delete nvlddmkm.sy_ file inside Download [hacked version]
||| [Mega mirror]
, and place nvlddmkm.
First things first, here is a list of important applications that can help you neutralize unwanted traces of external storage.
[USBDeview]
► Manually remove traces from USB sticks and other external devices [USBOblivion]
► Automatic cleaner that removes every possible trace of inserted external storage [Shellbag Analyzer]
► Remove shellbag keys that contain information about your personal activities like: folder names, paths to folders [including deleted ones]. It is also a good idea to look in the registry to make sure that all traces have been completely removed.
Today we are going to make a deep dive into advanced file management and automation. There are several scenarios for copying files from external storage that are described here.
► COPY SPECIFIC FILE TYPES FROM MULTIPLE FOLDERS ON ANY EXTERNAL DRIVE TO THE LOCAL HARD DRIVE This script will copy ALL JPG FILES from folders TEST1 and TEST2, which are located on any flash-drive to folder 1234 located on local drive C.
Most of you have favorite PC audio player of their own, in my case it is [Foobar2000]
. In Android 6 times there was a wonderful software called [Foobar 2000 Controller]
. It was made to control audio player remotely from your smartphone in a convenient way. For some reason i recall it today and decided to record installing process for future use.
Guys from [Hydrogen Audio]
forum helped me out in some questions and pointed me to the right direction.
UPDATED ON: 2024-10-16
If someone doesn’t like this kind of information, I will remove it immediately on first request without any questions. Since we have crossed the EOL line of Windows 7 POS support, I think no one will mind if I post the list of current activators for the Windows 7 operating system.
As far as I know, we have four options to choose from:
[DAZ loader]
► 108% working solution to activate distributions based upon classic MBR partition [KMS by Ratiborus]
► rearming software, which can activate GPT-based Pro and Enterprise editions [KMS rearm script]
► rearming scipt, which can activate GPT-based Pro and Enterprise editions [RemoveWAT]
► legacy GPT compatible activator [not maintained anymore] Also list of activators can be found on [this page]
.
So you want to do something evil or make a present for the April’s Fool Day to your surrounding. Today we’re going to use the professional keyboard application [FilterKeys Setter]
in its meanest form, will set keyboard filters to skip keystrokes, but only if the person starts typing at a faster rate.
I find out that the easiest way is to set Ignore Under parameter somewhere around 60ms, so it will be not so obvious in the beginning for the end user, that key strokes are skipping.
Color profiling in Linux is a rather obscure and unpopular topic, so I decided to cover it on the pages of this website. KDE and other modern heavy desktop environments are often have preinstalled tools to work with color profiles, but in this note we’ll talk about importing of color profiles in my favorite lightweight environment called XFCE. In some Arch-based distributions like Manjaro everything works out-of-the-box, but that is not the case when it comes to EndeavourOS, which I am currently studying to migrate from Windows 7 in upcoming future.
UPDATED ON: 2024-11-12
Due to the fact that I was forced to use windows 10 at my primary work, I have to accumulate all these software to prevent myself from daily vomiting provoked by original windows 10 diarrhea.
Ok, kids, you don’t like the native looks of Windows 10? So am i! That is why today we transform atrocious Windows 10 interface into clean looking heaven of classic Windows 7.
Messing around with the recently purchased Ryzen 7700 i ran into some rather annoying power related problems. The computer and monitor would go into sleep mode after about 5 minutes, despite the appropriate power settings in the Control Panel and third party software such as Process Lasso and Park Control being residential in memory.
I had to break my head to get out of this situation and traditionally i am sharing with you the solution I found.
In this note, I will describe all the settings you need to tweak to get a 100% flicker-free, eye-friendly result on your smartphone. However, some settings are quite extreme and you don’t need to apply all of them, such as the monochrome filter or setting extremely high warm values on the color temperature slider.
PWM flickering is a “feature” of most digital displays at relatively low brightness levels that can cause eye strain and headaches.
UPDATED ON: 2024-09-07
Internet is swarming with instructions on how to do this in a proper way, but all of them are incomplete and it looks like the authors don’t care much and don’t put enough effort into making them really shine, so i decided to fix that confusion and write my own, uber one.
Computer user ergonomics is a really complex thing, so I split the FAQ into several sections for better readability and understanding.
Firsts things first, for better file handling install [Midnight Commander]
:
sudo apt-get install mc Download fresh version of webserver software:
sudo apt-get install apache2 Locate and edit configuration file:
/etc/apache2/apache2.conf Note that in some distributions it can named as httpd.conf.
No file at all? You can create it by:
touch apache2.conf For relatively easy editing i recommend Nano editor.
sudo apt-get install nano CTRL+O ► to save file CTRL+X ► exit file Here is an example for locally placed development webserver, containing two sub-domains.
Although I have been using Linux more and more in recent work, Windows 7 remains my main production operating system. And here is an excellent finding for Windows 7 crony named [Capster]
. Its main functionality is to launch the specified executable at startup time when the [CAPS LOCK] key is set to ON or OFF. I use Capser to run backup script, that backs up previously selected folders [if i want to].
Say you are trying to install software and receive message from the operating system about untrusted certificate in certificate chain. In such case you need to import certificate of the middle-man organization into the Linux certificate storage to make things happen.
If for some reason your third-party certificate comes in DER binary format, you should convert it to CRT format:
openssl x509 -inform DER -in certificate.der -out certificate.crt Copy to storage:
░ PREFACE WORDS In this post I would like to share some Unix experience I have gained while deploying a website under certain conditions. The testbed environment was created using VirtualBox 7 on a Windows 7 operating system. I chose [OpenBSD]
because of it’s unparalleled focus on security and privacy features. It is also unusual and very unpopular. And of course because of [OpenBSD slogan]
: Only two remote holes in the default install, in a heck of a long time!
You might think that it is kinda ridiculous title, but read on to find out.
First of all you have to understand that i’m not going to share my personal bookmarks with some ugly copro that cloaks itself under the umbrella of free software ideas and use their lame anti-private sync. And i’m certainly not going to use any web service provided by these companies in any case.
Of course we won’t skip that generic rant part about how dumb project managers are for not implementing essential features like bookmark export or the ability to open local HTML files in 2024.
First things first. I often need to copy substantial amount of photos from my phone. It can’t be done via Windows GUI without millions of mouse clicks or keystrokes. Here you will find a solution on how to do this in a proper way. The key tool for this will be [ADB]
, developer tools for Android.
Wishes: command line, batch, no file explorer, no mouse, no clickety-clack.
Sicking tired of all of these not-so-precise-instructions i’ve decided to make my own.