See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
import os | |
import shutil | |
import patoolib | |
input_directory = '/path/to/input/direcotry' | |
# List of filenames | |
filenames = [ | |
'01 - Example comic 1 (2020)', |
Step by step guide on how to generate and import a custom certificate into the Packet Capture Android app. Useful when the "generate certificate" feature doens't work for you either.
openssl
on your (linux) computer. You can also do this right on your Android device with a terminal/Termux/openssl app.
openssl req -x509 -newkey rsa:4096 -keyout key-private.pem -out key-public.pem -days 3650
openssl pkcs12 -export -out keyBundle.p12 -inkey key-private.pem -in key-public.pem -name alias -legacy
keyBundle.p12
and key-public.pem
to the android device
adb push keyBundle.p12 /sdcard/Download
etc.Alerts are an extension of Markdown used to emphasize critical information. On GitHub, they are displayed with distinctive colors and icons to indicate the importance of the content.
An example of all five types:
Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
mkdir ~/chromium && cd ~/chromium | |
fetch --nohooks --no-history chromium | |
cd src | |
git fetch https://chromium.googlesource.com/chromium/src.git +refs/tags/118.0.5993.71:chromium_118.0.5993.71 --depth 1 | |
git checkout tags/118.0.5993.71 | |
gclient sync -D --force --reset --with_branch_heads |
Source: https://github.com/mandar1jn/portfolio/blob/master/src/assets/skylanders/figures.json |
#!/usr/bin/env bash | |
# list partitions | |
lsblk -f | |
# mount the root partition | |
mount /dev/nvme1n1p2 /mnt | |
# mount the boot partition | |
mount /dev/nvme1n1p1 /mnt/boot |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/sh | |
if ! [ -z "$1" ] | |
then | |
echo "$1" | tr '[:upper:]' '[:lower:]' | |
else | |
echo "Usage: lcs <text>" | |
echo 'Example: lcs "Foo Bar BAZ"' | |
echo "Output: foo bar baz" | |
fi |