This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
patch-package | |
--- a/node_modules/react-scripts/config/paths.js | |
+++ b/node_modules/react-scripts/config/paths.js | |
@@ -79,7 +79,7 @@ module.exports = { | |
appPath: resolveApp('.'), | |
appBuild: resolveApp('build'), | |
appPublic: resolveApp('public'), | |
- appHtml: resolveApp('public/index.html'), | |
+ appHtml: resolveApp('public/app.html'), | |
appIndexJs: resolveModule(resolveApp, 'src/index'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Win10 Initial Setup Script | |
# Author: Disassembler <disassembler@dasm.cz> | |
# Version: 1.7, 2016-08-15 | |
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
# THIS IS A PERSONALIZED VERSION | |
# This script leaves more MS defaults on, including MS security features. | |
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const short triggerThreshold =50; //Lower is more sensitive | |
#define Relay1 7 | |
//Debound code from: https://www.arduino.cc/en/Tutorial/Debounce | |
int buttonState; // the current reading from the input pin | |
int lastButtonState = LOW; | |
long lastDebounceTime = 0; // the last time the output pin was toggled | |
long debounceDelay = 50; // the debounce time; increase if the output flickers | |
void setup() { |