alias k=kubectl
alias kd="kubectl describe "
alias kg="kubectl get "
alias kgps="kubectl get pod,svc"
alias kgpp="kubectl get pvc,pv"| #!/bin/bash | |
| docker_images=( | |
| "nginx:latest" | |
| ) | |
| for image in "${docker_images[@]}"; do | |
| echo "Downloading $image ..." | |
| echo | |
| image_name=${image##*/} |
| import androidx.compose.foundation.Canvas | |
| import androidx.compose.foundation.layout.size | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.geometry.Offset | |
| import androidx.compose.ui.geometry.Size | |
| import androidx.compose.ui.graphics.Brush | |
| import androidx.compose.ui.graphics.Color | |
| import androidx.compose.ui.graphics.Path | |
| import androidx.compose.ui.graphics.drawscope.DrawScope |
Essentially just copy the existing video and audio stream as is into a new container, no funny business!
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
| # Run with Windows PowerShell (Admin) | |
| # https://www.thewindowsclub.com/remove-built-windows-10-apps-users-using-powershell-script | |
| Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
| Get-AppxPackage *officehub* | Remove-AppxPackage | |
| Get-AppxPackage *getstarted* | Remove-AppxPackage | |
| Get-AppxPackage *skypeapp* | Remove-AppxPackage |
[LockedApp] can’t be opened because it is from an unidentified developer. Your security preferences allow installation of only apps from the App Store and identified developers.
This is actually a macOS Gatekeeper issue try these steps:
To resolute Gatekeeper issues on macOS Sierra you might have to partially or completely disable Gatekeeper checks.
Option I For a certain application run in Terminal:
| #!/bin/bash | |
| devices=`adb devices | awk '{if(NR>1)print $1}'` | |
| for device in $devices ; do | |
| model=`adb -s $device shell getprop ro.product.model` | |
| echo | |
| echo '=== '$model' ('$device') ===' | |
| adb -s $device shell dumpsys activity top | grep ACTIVITY | |
| done |