Skip to content

Instantly share code, notes, and snippets.

View gr33n7007h's full-sized avatar
🌴
On vacation

Li gr33n7007h

🌴
On vacation
View GitHub Profile
@gr33n7007h
gr33n7007h / magick.md
Created March 17, 2017 00:31 — forked from fogleman/magick.md
ImageMagick: Frequently Used

Create Animated GIF

convert -delay 20 -loop 0 *.png output.gif

Concatenate Images Vertically

montage *.png -mode concatenate -tile 1x output.png

Convert to RGB Bitmap

@gr33n7007h
gr33n7007h / lgraph
Created July 11, 2016 03:05 — forked from tylerneylon/lgraph
Graph functions in your terminal.
#!/usr/local/bin/lua
usage_str = [[
Usage:
lgraph 'function of x'
Example:
lgraph 'x^2'
]]
Grapher = {xmin = -1, xmax = 1, ymin = -1, ymax = 1, ncols = 160, nrows = 50}