Skip to content

Instantly share code, notes, and snippets.

View natronics's full-sized avatar
💭
Not currenly working on side projects.

Nathan Bergey natronics

💭
Not currenly working on side projects.
View GitHub Profile
@natronics
natronics / slitscan.sh
Created June 12, 2015 05:45
Oneliner to make a video slitscan
#!/usr/bin/env sh
ffmpeg -i $1 -vf "transpose=1","crop=2" -an -f image2pipe -vcodec ppm - | montage ppm:- -tile x1 -mode concatenate - | convert - -flop scanimage.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@natronics
natronics / expected.sql
Created July 8, 2021 13:52
Django Annotate F Expression Zeros
SELECT
0 AS "zero_sum",
(0 + COUNT("pizza"."id"))
FROM "pizza"
zero_sum | complex_sum
--------- | -----------
0 | 100