My projects (in no particular order)
A fork of qgroundcontrol implementing multiple video streams viewable at once.
| #!/bin/bash | |
| get_redirected_url() { | |
| local url="$1" | |
| final_url=$(curl -s -L -o /dev/null -w '%{url_effective}' "$url") | |
| echo "$final_url" | |
| } | |
| extract_version() { | |
| local url="$1" |
| # ------------------------------------------ | |
| # | |
| # Project: Parking System | |
| # Author: VEX | |
| # Created: Brandon Stevens | |
| # Description: Parking Space System | |
| # | |
| # ------------------------------------------ | |
| from vexcode import * |