television

a simple LAN/WLAN desktop public broadcasting service
git clone http://git.permacomputing.net/repos/television.git # read-only access
Log | Files | Refs | README

commit a949b3771b338c4deafe907205c695cbb50c5777
parent 4b8e5771f1361dbb85b3548f6a773bb2d1c38227
Author: ugrnm <ultrageranium@bleu255.com>
Date:   Wed,  9 Oct 2024 21:10:14 +0200

comments

Diffstat:
Mtelevision.go | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/television.go b/television.go @@ -1,3 +1,18 @@ +/* + television + + "Unless we design and implement alternate information structures which + transcend and reconfigure the existing ones, other alternate systems and life + styles will be no more than products of the existing process." + + Radical Software + Volume I, Number 1 + The Alternate Television Movement + Spring 1970 +*/ + +// context + package main import ( @@ -21,6 +36,8 @@ var( shot func() ) +// components + func compatSnap() { img, err := screenshot.CaptureDisplay(0) if err != nil { @@ -69,6 +86,8 @@ func alwaysShot() { } } +// combination + func main() { flag.IntVar(&portNum, "port", 8888, "http port number") flag.StringVar(&wwwDir, "www", "./www", "www directory")