Skip to content

Instantly share code, notes, and snippets.

@ecbjo
ecbjo / killadobeprocesses.bat
Created December 11, 2022 10:55
Batch script to kill ALL Adobe background processes that just wont close
@echo off
title KillAdobeProcesses
echo You are about to terminate Adobe processes and services. Make sure you have closed all Adobe apps and that updates/backups/uploads are not running in the background before continuing.
net stop AdobeUpdateService /y
taskkill /IM AdobeUpdateService.exe /F
taskkill /IM "Adobe Installer.exe" /F
taskkill /IM "Adobe Desktop Service.exe" /F
taskkill /IM "AdobeNotificationClient.exe" /F
taskkill /IM "Adobe CEF Helper.exe" /F
[
{
"textTitle": "Person 1",
"textSubTitle": 30
},
{
"textTitle": "Person 2",
"textSubTitle": 20
},
{
@ecbjo
ecbjo / colors.xml
Last active May 12, 2016 18:51
All Material Design Colors in a colors.xml file for Android.
<resources>
<!-- Red -->
<color name="colorMaterial_Red50">#FFEBEE</color> <!-- Black Text -->
<color name="colorMaterial_Red100">#FFCDD2</color><!-- Black Text -->
<color name="colorMaterial_Red200">#EF9A9A</color><!-- Black Text -->
<color name="colorMaterial_Red300">#E57373</color><!-- Black Text -->
<color name="colorMaterial_Red400">#EF5350</color><!-- White Text -->
<color name="colorMaterial_Red500">#F44336</color><!-- White Text -->
<color name="colorMaterial_Red600">#E53935</color><!-- White Text -->