- Force "maximum performance" mode in NVIDIA control panel
- Disable Xbox Game Bar & Capture in Windows Settings
- Disable NVIDIA Highlights (and overlay, if not used)
- Exclude game & game save folders in Windows Defender
Migration of remote
In your cloned repository:
- Switch to "master" branch:
git checkout master
- Rename the "master" branch to "main" by running:
git branch -m master main
- Push new "main" branch to remote by running:
git push -u origin main
- If "master" was the default branch (often
develop
acts as the default branch): In the GitHub project settings, change the default branch from "master" to "main" - Cleanup old "master" branch by running:
git push origin --delete master
Instructions
- Download and install
adb
from here: https://androidmtk.com/download-minimal-adb-and-fastboot-tool - Add installation folder to environment variables
- Run
adb connect <IP>
(confirm on TV when first time connecting) - Uninstall existing apk (if applicable) via Android UI
- Run
adb install <path to apk file>
(wait until "Success")
Apps
This file contains hidden or 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
rem see https://github.com/coreybutler/nvm-windows/issues/300 | |
@echo off | |
SETLOCAL EnableDelayedExpansion | |
if [%1] == [] ( | |
echo Pass in the version you would like to install, or "latest" to install the latest npm version. | |
) else ( | |
set wanted_version=%1 |
This file contains hidden or 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
# Switch the timezone on a linux system | |
# | |
# I use this to run unit tests on the CI for multiple times with different timezones (at least 2) | |
# Tested on a node alpine docker container on GitLab CI | |
# Timezone values: "UTC", "Europe/Berlin", ... | |
# Fetch timezone data | |
- apk add tzdata | |
# Log out number of timeszones (debug) |
This file contains hidden or 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
Put the following into you ".gitconfig" file (in your home folder). | |
Taken from <http://stackoverflow.com/questions/1838873/visualizing-branch-topology-in-git/34467298#34467298> | |
[alias] | |
lg = !"git lg3" | |
lg1 = !"git lg1-specific --all" | |
lg2 = !"git lg2-specific --all" | |
lg3 = !"git lg3-specific --all" | |
lg1-specific = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' |
NewerOlder