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.
| export class HSLAColor { | |
| constructor( | |
| private _hue: number, | |
| private _saturation: number, | |
| private _lightness: number, | |
| private _alpha: number | |
| ) { | |
| this._hue = _hue; | |
| this._saturation = _saturation; |
| # 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, .. |
| name: Publish Development 🚀 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| AZURE_WEBAPP_NAME: dev-api-trainersphere |
| root = true | |
| # C# files | |
| [*.cs] | |
| #### Core EditorConfig Options #### | |
| # Indentation and spacing | |
| indent_size = 4 | |
| indent_style = space |
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.
| # open setting | |
| adb shell am start -n com.android.settings/.TetherSettings | |
| # down | |
| adb shell input keyevent 20 | |
| # enter | |
| adb shell input keyevent 66 |
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.
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 !
| <!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> |