Git supports showing diffs for encrypted files, but has to be told to do so.
git config --global diff.gpg.textconv "gpg --no-tty --decrypt"
echo "*.gpg filter=gpg diff=gpg" >> .gitattributes
echo "*.asc filter=gpg diff=gpg" >> .gitattributes
-- From "Fooluaintblack" on the TechnicalFactorio discord: | |
-- > Caught up with a friend and we adjusted Halke's index script to create a series | |
-- > of CCs with items, in item ID order, with their stack size as their signal | |
-- > values. The script changes include: | |
-- > -reorganised, whitespace, removed "count" as its redundant with "index" | |
-- > -overwrite the selected CC instead of creating a new one beside it | |
-- > -spot at the top to add signal names to exclude. You'll see magic lamp, | |
-- > pushbutton, and textplates are excluded. Textplate string includes wildcards | |
-- > to capture all signals that start with "textplate" | |
-- |
# Load a local overrides file. Any changes you want to make for your local | |
# environment should live in that file. | |
if [ -e .envrc.local ] | |
then | |
source_env .envrc.local | |
fi |
import yaml | |
import os | |
import requests | |
import tempfile | |
import subprocess | |
from github import Github | |
g = Github(os.environ["GITHUB_TOKEN"]) |
.venv/ | |
*.txt |
--- | |
default_stages: [commit] | |
repos: | |
- repo: meta | |
hooks: | |
- id: check-hooks-apply | |
- id: check-useless-excludes | |
- repo: https://github.com/pre-commit/pre-commit-hooks |
import traceback | |
from typing import Dict, Union, List | |
def traceback_exc(exc: Exception) -> Dict[str, Union[str, List[str]]]: | |
tb = traceback.TracebackException.from_exception(exc, capture_locals=True) | |
return { | |
"title": type(exc).__name__, | |
"message": str(exc), | |
"traceback": [ |
This works in android-studio 4.0.
$HOME/.android/avd/my_avd.avd
config.ini
. Find the setting PlayStore.enabled
and change the value to true
.hardware-qemu.ini
but I'm not certain that that is required.mosh