Skip to content

Instantly share code, notes, and snippets.

@oceanBT
oceanBT / chocolatey weekly update.xml
Last active February 6, 2022 15:35
chocolatey weekly auto update windows scheduler task
<?xml version="1.0" encoding="UTF-16"?>
<!--install: win+R -> taskschd.msc -> import this script -> enable "Run whether user is logged on or not" to hide the powershell window -->
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2022-02-06T15:07:15.0844359</Date>
<URI>\chocolatey weekly update</URI>
</RegistrationInfo>
<Triggers>
<CalendarTrigger>
<StartBoundary>2022-02-06T08:02:00</StartBoundary>
@oceanBT
oceanBT / create react app with docker without local nodejs.md
Last active June 25, 2024 09:35
create react app with docker without local nodejs
mkdir -p ~/project
cd  ~/project
docker run -it --rm -v "$PWD":/app -w /app node  yarn create react-app my-app
sudo chown -R $USER:root my-app/
cd my-app
nano docker-compose.yml  # see docker-compose.yml below
docker compose up -d