Skip to content

Instantly share code, notes, and snippets.

@carcheky
carcheky / stopadobe.ps1
Created August 1, 2019 09:39
Stop all adobe shit process
# https://forums.adobe.com/thread/2621275
cd C:\Users\cmartinezv\Documents
# This will Stop the Services, and change the startup from Automatic to Manual - Opening Adobe Applications will start these services, without your interaction. If you have issues, you can manually start them by replacing Get-Service with Start-Service, or open the Services Panel with WindowsKey+R: "services.msc"
# Setting Startup to Manual only needs to be run once. Stopping the services needs to be done each time you exit application, if you don't want background services running. Such as Sync.
Get-Service -DisplayName Adobe* | Stop-Service
Get-Service -DisplayName Adobe* | Set-Service -StartupType Manual
@Eklei
Eklei / SCP Name Tracker.user.js
Last active November 1, 2018 01:09
Retrieves SCP names and places them in page titles. Also puts tooltips on any instance of an SCP or experiment ID. The script will automatically create or update its cache by fetching the necessary index pages (including joke, explained, and archived SCPs) at most once every 3 days. The cache will also be created or updated whenever you visit an…
// ==UserScript==
// @author Eklei
// @name SCP Name Tracker
// @namespace eklei@fhqwhgads
// @description Retrieves SCP names and places them in page titles. Also puts tooltips on any instance of an SCP or experiment ID. The script will automatically create or update its cache by fetching the necessary index pages (including joke, explained, and archived SCPs) at most once every 3 days. The cache will also be created or updated whenever you visit an index page manually. As an added bonus, this script can defeat some memetic censoring (optional, see toggle at top of script). The automatic fetching only works on big boy browsers that are compliant with web standards from at least 2011. If you have some outdated mobile browser that isn't compliant, you can still generate a cache by visiting each index page manually.
// @version 2.4
// @include http://www.scp-wiki.net/*
// @include http://scp-wiki.wikidot.com/*
// @grant none
// ==/UserScript==