Skip to content

Instantly share code, notes, and snippets.

@chemputer
chemputer / keybase.md
Created April 27, 2020 23:51
Keybase.io Identity Proof

Keybase proof

I hereby claim:

  • I am chemputer on github.
  • I am chemputer (https://keybase.io/chemputer) on keybase.
  • I have a public key ASCo0LlVt721z0067h9fuFK_u1wHVl5-qjpB8w8si1gPCQo

To claim this, I am signing this object:

@chemputer
chemputer / README.md
Last active April 16, 2020 23:31
Python Interactive zxcvbn Password Checker

This is a simple password checker based on zxcvbn. It's simple, short program that you can use to easily check your passwords on a local machine, rather than using a website that promises it's definitely not storing your passwords.

The only main prerequisite is zxcvbn, which can be installed by either: python3 -m pip install zxcvbn or pip3 install zxcvbn

Then you simply need to execute the program. The program will ask you for a password, which you type into the terminal. It will keep looping, over and over, until you enter exit, quit, or stop as the password.

@chemputer
chemputer / RemoveJunk.ps1
Last active October 22, 2019 10:07 — forked from HauptJ/RemoveJunk.ps1
Powershell script to remove junk apps bundled in Windows 10
############################################################
# Powershell script to remove shit features bundled in Windows 10
# Removes junk bundled with Windows 10
# App list: https://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/
# King shit: https://care.king.com/en/candy-crush-soda-saga/how-to-remove-candy-crush-soda-saga-from-windows-10-with-a-powershell-command
# Author: Joshua Haupt josh@hauptj.com Date: 19.12.2017
# Original gist: https://gist.github.com/HauptJ/e09a8b7e699115f8f35e699a09816da2
# Author: Ben Turner Ben.Turner@turnerb.com 10.22.2019
# Added ability to remove Hidden City and Disable "Consumer Experience", removed the line that removed the "people"
# app, as it failed due to being a system app.
@chemputer
chemputer / MSProtection.ps1
Last active November 21, 2020 15:11
Stops MS from downloading unwanted apps onto your computer. I recommend setting up the script to run at startup using task scheduler, so that when MS resets this during an update, it automatically goes back.
$error.clear()
try {
New-Item –Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Force | New-ItemProperty -Name "DisableWindowsConsumerFeatures" -Value "1" -PropertyType "DWORD"
}
catch { "Error occured" }
if ($error) {
Set-Itemproperty -path HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent -Name 'DisableWindowsConsumerFeatures' -value '1'
}