opkg update
opkg install kmod-usb-serial kmod-usb-serial-wwan kmod-usb-serial-option usb-modeswitch smstools3 curl iconvvi /usr/local/bin/pushsms
#!/bin/sh| cat << EOF > justfile | |
| check: | |
| # uv run ruff check --select=UP032 --fix . #convert to fstring | |
| ruff check --select I --fix . # sort imports | |
| ruff format . | |
| ruff check . | |
| init: | |
| -rm -rf .venv pyproject.toml uv.lock .python-version | |
| echo "3.12" > .python-version |
opkg update
opkg install kmod-usb-serial kmod-usb-serial-wwan kmod-usb-serial-option usb-modeswitch smstools3 curl iconvvi /usr/local/bin/pushsms
#!/bin/sh| pip install flake8 | |
| flake8 --ignore=E24,E501,W504,E408 | |
| # If PowerShell exits with an error, check if unsigned scripts are allowed in your system. | |
| # You can allow them by calling PowerShell as an Administrator and typing | |
| # ``` | |
| # Set-ExecutionPolicy Unrestricted | |
| # ``` | |
| # Get invocation path | |
| $curr_path = Split-Path -parent $MyInvocation.MyCommand.Path |