See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| ssh-keygen -t rsa -b 4096 -C "email_cua_ban@example.com" | |
| eval "$(ssh-agent -s)" | |
| ssh-add ~/.ssh/id_rsa | |
| cat ~/.ssh/id_rsa.pub | |
| ssh -T git@gitlab.com |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <h1>hello world</h1> |
adb is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
On the Android device, enable Developer options, and enable USB debugging.
On the Mac:
$ brew install ffmpeg --with-ffplay
$ adb shell screenrecord --output-format=h264 - | ffplay - -x 720 -y 1280
Replace the 720 and 1280 with other values to scale the output as desired.
| # open setting | |
| adb shell am start -n com.android.settings/.TetherSettings | |
| # down | |
| adb shell input keyevent 20 | |
| # enter | |
| adb shell input keyevent 66 |
Follow steps below. For more information checkout the references.
If something is missing or you find any mistakes, please let me know in the comments below.
| root = true | |
| # C# files | |
| [*.cs] | |
| #### Core EditorConfig Options #### | |
| # Indentation and spacing | |
| indent_size = 4 | |
| indent_style = space |
| name: Publish Development 🚀 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| AZURE_WEBAPP_NAME: dev-api-trainersphere |
| # install chromium, its driver, and selenium | |
| !apt update | |
| !apt install libu2f-udev libvulkan1 | |
| !wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
| !dpkg -i google-chrome-stable_current_amd64.deb | |
| !wget https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/118.0.5993.70/linux64/chromedriver-linux64.zip | |
| !unzip -j chromedriver-linux64.zip chromedriver-linux64/chromedriver -d /usr/local/bin/ | |
| !pip install selenium chromedriver_autoinstaller | |
| # set options to be headless, .. |