Record video screen with FFmpeg
ffmpeg is a cli-tool that in addition to allowing multimedia file format conversion you can also record screen video starting from the terminal …
goplantuml generates code in PlantUML format that represents a diagram of the relationships between the Go receiver structs, they are analogous to classes in traditional OOP.
A useful tool at the beginning of the design and planning a complex project in Go, if you want graphically observe which entities are stepping on interfaces, visually follow dependency injections or identify patterns.
$ goplantuml -aggregate-private-members -show-compositions -show-implementations -show-aggregations . > diagram.puml
$ goplantuml -aggregate-private-members -show-compositions -show-implementations -show-aggregations ./ > diagram.puml
ffmpeg is a cli-tool that in addition to allowing multimedia file format conversion you can also record screen video starting from the terminal …
youtube-dl is a cli-tool that allows us download videos from various sources (not only from YouTube) from the terminal interface. I wrote this …