Pastel: A command-line tool to generate, analyze, convert and manipulate colors
11–20 of 30 posts
Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#123 days ago: https://news.ycombinator.com/item?id=20798453
From the FAQ (see footer):
"Are reposts ok?
If a story has had significant attention in the last year or so, we kill reposts as duplicates. If not, a small number of reposts is ok."
Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#13 pastel random | pastel mix red | pastel lighten 0.2 | pastel format hex
could be written pastel random mix red lighten 0.2 format hex
(not quite possible, I think) or pastel random then mix red then lighten 0.2 then format hex
or something.Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#14Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#15This looks really neat. The demo uses a lot of shell pipes though, needing to type "pastel" out for every processing step. It would be convenient if something like pastel random | pastel mix red | pastel lighten 0.2 | pastel format hex could be written pastel random mix red lighten 0.2 format hex (not quite possible, I think) or pastel random then mix red then lighten 0.2 then format hex or something.
https://gstreamer.freedesktop.org/documentation/tutorials/ba...
Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#16I was looking for a quick way to convert RGB 0-255 to RGB float 0.0-1.0 (often used in shaders and other areas of 3D programming) just the other day. This tool doesn't currently seem to support that, would be a nice addition.
Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#17This looks really neat. The demo uses a lot of shell pipes though, needing to type "pastel" out for every processing step. It would be convenient if something like pastel random | pastel mix red | pastel lighten 0.2 | pastel format hex could be written pastel random mix red lighten 0.2 format hex (not quite possible, I think) or pastel random then mix red then lighten 0.2 then format hex or something.
GStreamer uses the argument "!" as a pseudo-"|" so you can build multimedia pipelines without actually using Unix pipelines, or repeating the gst-launch command: https://gstreamer.freedesktop.org/documentation/tutorials/ba...
pastel random ! mix red ! lighten 0.2 ! format hexRe: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#18This looks really neat. The demo uses a lot of shell pipes though, needing to type "pastel" out for every processing step. It would be convenient if something like pastel random | pastel mix red | pastel lighten 0.2 | pastel format hex could be written pastel random mix red lighten 0.2 format hex (not quite possible, I think) or pastel random then mix red then lighten 0.2 then format hex or something.
eval (echo "pastel $argv" | sed 's/ | / | pastel /g')
Now you can pstl "random | mix red | lighten 0.2 | format hex"Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#19Re: Pastel: A command-line tool to generate, analyze, convert and manipulate colors
#203 days ago: https://news.ycombinator.com/item?id=20798453
No comments though, and very few up votes. From the FAQ (see footer): "Are reposts ok? If a story has had significant attention in the last year or so, we kill reposts as duplicates. If not, a small number of reposts is ok."
Thanks!