This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- move this file to: src/main/webapp/WsChat.html --> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Tomcat WebSocket Chat</title> | |
<script type="text/javascript"> | |
function params2Form(){ | |
var hashParams = window.location.search.substr(1).split('&'); |
info:
- https://en.wikipedia.org/wiki/EIA-608
- to extract these using
ffmpeg
(under Windows) -- see get-EIA608.bat (%1 = input_video_file)
screenshot(s):
video(s):
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# from https://forum.manjaro.org/t/howto-work-around-gpg-verification-issue-on-left-behind-systems/125822 | |
set -o errexit #>Exit when a command fails (returns non-zero) | |
set -o pipefail #>Exit when a command within a pipeline fail (returns non-zero) | |
set -o nounset #>Forbid to use unset | |
# Reset language to default | |
export LANG=C |