Tuesday, November 13, 2018

Overcoming Addictive and Compulsive Behaviors

You need to simply understand a little bit about how the brain works. Conceptualised, the brain has many "circuits", and the connections within these circuits get strengthened through repetition. You are not able to control your reddit compulsion because you have a number of "triggers" that activitate these circuits, and you get rewarded, in the case of social media, with a dopamine hit. The more repetitions you do, the quicker the dopamine hit wears off, and the sooner you want to repeat the experience. In this way, you fall victim to a downward spiral.

Luckily, the exponential nature of addiction also works in reverse. As you ignore your compulsion, the circuits get rewired, and again repetition strengthen the connections within the newly configured circuitry. The old circuitry will never go away, but it becomes disused, like an overgrown railway track.

Beginning this wonderful upward spiral might sound easier said than done, especially considering the sweet sweet dopamine hit you are currently hooked on. Do not try to use willpower to overcome your compulsion. This is important. You are in control of your prefrontal cortex, which can exert a good measure of control over your limbic system. Your limbic system wants instant gratification. Your prefrontal cortex has the power to override that urge to a good degree, but not completely. Again, this is not about willpower. Hypothetically, if you were truly convinced that it would be better if you didn't read reddit as much, would you need willpower to stop yourself from doing it? It stands to reason that you would not, because you would feel a stronger pull towards the course of action that you believe benefits you the most. If you do not feel that pull strongly enough, you are simply not as convinced as you need to be to be able to change your behavior.

Luckily, it is relatively easy to convince yourself of something if you really want to. Here are some techniques for you to try:

List down all of the reasons why you use reddit. Then, next to each list item, write down why these reasons are ultimately the result of erroneous thinking or faulty logic. For example, reason: I use reddit because I believe it alleviates boredom, however I often find myself bored while browsing reddit. Further to that, boredom is merely a state of mind and there are many people who do not experience boredom despite never having used reddit.

Write down all the benefits of your desired behavior. Make sure they are logically rigorous. For example, I want to stop using reddit as often because it will give me more time to get things done, which will ultimately benefit my life.

Constantly remind yourself of these errors in your logic, and the benefits of your desired new behaviour. Rewrite and refine your arguments. Put them on sticky notes around your house. Politicians and marketeers use this tactic to get you to believe their claims, and it works.

Finally, and most importantly, do not get frustrated or berate yourself if and when, after all this, you still get the urge to use reddit. This is counterproductive. The very fact that you noticed the urge (regardless of whether or not you end up succumbing to it) is an immensely positive thing, so feeling bad about it only makes things more difficult. Noticing the urge means that you are bringing your automatic actions into the conscious realm of control. Once you get into the habit of noticing the urge, you can build upon it by beginning to dismiss those urges using the logical arguments you devised and memorized earlier. This is where the circuits get rewired and strengthened exponentially. You start out by dismissing maybe on in ten urges. Soon, without trying, you're dismissing one in two. Before you know it, this new behavior becomes just as unconscious as your previous behavior, and one day you wake up and realize you haven't had an urge to use reddit for a week.

All of this knowledge genuinely changed my life. I stopped smoking, I lost weight, I fixed my sleeping disorder, I became productive at work, I stopped my bad spending habits, I stopped using reddit, I stopped looking at my phone all day, I stopped feeling sorry for myself, and I cured my depression.

I hope it works for you. I don't want to come off as a shill so I won't mention any book titles in this post but if you PM me I'll send you some recommendations.

Monday, November 5, 2018

How to Disable Tracking in Windows 10

Disable Metrics:
@Echo Off
:checkPrivileges
NET FILE 1>NUL 2>NUL
If '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
If '%1'=='ELEV' (shift & goto gotPrivileges)
Setlocal DisableDelayedExpansion
Set "batchPath=%~0"
Setlocal EnableDelayedExpansion
Echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs"
Echo UAC.ShellExecute "!batchPath!", "ELEV", "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs"
"%temp%\OEgetPrivileges.vbs"
Exit /B
:gotPrivileges
Setlocal & pushd .
echo *      Disable Telemetry
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f
echo *      Disable DiagTrack
sc delete DiagTrack
sc delete dmwappushservice
reg add "HKLM\SYSTEM\CurrentControlSet\Services" /v DiagTrack /t REG_DWORD /d 4 /f
reg add "HKLM\SYSTEM\CurrentControlSet\Services" /v dmwappushservice /t REG_DWORD /d 4 /f
echo *      Clear DiagTrack Log
echo "" > C:\ProgramData\Microsoft\Diagnosis\ETLLogs\AutoLogger\AutoLogger-Diagtrack-Listener.etl
echo *      Disable Cortana/Bing Search and Searchbar
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "CortanaEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d 4 /f > NUL 2>&1
reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "BingSearchEnabled" /t REG_DWORD /d 0 /f > NUL 2>&1
pause

Disable update nag:
@Echo Off
:checkPrivileges
NET FILE 1>NUL 2>NUL
If '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
If '%1'=='ELEV' (shift & goto gotPrivileges)
Setlocal DisableDelayedExpansion
Set "batchPath=%~0"
Setlocal EnableDelayedExpansion
Echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs"
Echo UAC.ShellExecute "!batchPath!", "ELEV", "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs"
"%temp%\OEgetPrivileges.vbs"
Exit /B
:gotPrivileges
Setlocal & pushd .
cd /d "%Windir%\System32"
takeown /F MusNotification.exe
icacls MusNotification.exe /deny Everyone:(X)
takeown /F MusNotificationUx.exe
icacls MusNotificationUx.exe /deny Everyone:(X)
pause
Win+R -> type in 'Powershell' -> Copy/Paste:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Get-AppxPackage *bingfinance* | Remove-AppxPackage
Get-AppxPackage *bingnews* | Remove-AppxPackage
Get-AppxPackage *bingsports* | Remove-AppxPackage
Get-AppxPackage *bingweather* | Remove-AppxPackage
Get-AppxPackage *feedback* | Remove-AppxPackage
Get-AppxPackage *getstarted* | Remove-AppxPackage
Get-AppxPackage *messaging* | Remove-AppxPackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *oneconnect* | Remove-AppxPackage
Get-AppxPackage *onenote* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage
Get-AppxPackage *phone* | Remove-AppxPackage
Get-AppxPackage *photos* | Remove-AppxPackage
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Get-AppxPackage *skypevideo* | Remove-AppxPackage
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Get-AppxPackage *windowscamera* | Remove-AppxPackage
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Get-AppxPackage *windowsphone* | Remove-AppxPackage
Get-AppxPackage *windowsstore* | Remove-AppxPackage
Get-AppxPackage *xboxapp* | Remove-AppxPackage
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxPackage *zunevideo* | Remove-AppxPackage