This article is based on the following article:
curl -LsSf https://astral.sh/uv/install.sh | shThis article is based on the following article:
curl -LsSf https://astral.sh/uv/install.sh | sh| #!/usr/bin/env python3 | |
| """ | |
| Motion Detector with MobileNet-SSD Object Detection | |
| 動体検知 + 物体認識 + PTZ追跡 | |
| """ | |
| import cv2 | |
| import subprocess | |
| import time | |
| import numpy as np |
| // The code is based on the following code from Google Fonts: | |
| // https://github.com/material-foundation/flutter-packages/blob/main/packages/google_fonts/lib/src/google_fonts_parts/part_n.dart | |
| // | |
| // Noto Sans/Serif is licensed under the SIL Open Font License, Version 1.1 . | |
| // https://fonts.google.com/noto/specimen/Noto+Sans/license | |
| import 'package:pdfrx/pdfrx.dart'; | |
| class GoogleFontsFile { | |
| GoogleFontsFile(this.faceName, this.weight, this.expectedFileHash, this.expectedLength); |
| #!/bin/bash | |
| set -e | |
| echo "Installing npiperelay..." | |
| /mnt/c/WINDOWS/system32/cmd.exe /c "winget install --id=albertony.npiperelay -e --accept-source-agreements --accept-package-agreements" | |
| echo "Installing socat..." | |
| sudo apt-get update | |
| sudo apt-get install -y socat iproute2 |
| #!/usr/bin/env ruby | |
| require 'openssl' | |
| def print_usage | |
| puts "Usage: #{File.basename($0)} [-s|-S|-C component] <serial_number> [keychain]" | |
| puts "Options:" | |
| puts " -s Show only certificate subject (single line)" | |
| puts " -S Show only certificate subject (one parameter per line)" | |
| puts " -C component Show only specified component (e.g., -C CN for Common Name)" |
| #!/usr/bin/env ruby | |
| require 'openssl' | |
| def print_usage | |
| puts "Usage: #{File.basename($0)} <provisioning_profile_path>" | |
| puts "Example: #{File.basename($0)} /path/to/profile.mobileprovision" | |
| exit 1 | |
| end |