Pinned Loading
-
Create animated thumbnail with ffmpe...
Create animated thumbnail with ffmpeg in bash 1#!/bin/bash
2#Creates an animated thumbnail of a video clip
3#This script uses scene cuts instead of fixed time intervals, and does not work well for videos with few/infrequent scene cuts
4if [ -z "$1" ];then echo "Usage: <Video Files...> [outputs to same dir as input]" &>2;exit 1;fi
5 -
Seam Carving with Sobel in C
Seam Carving with Sobel in C 1unsigned char* rgb_to_monochrome(unsigned char *rgbImg, int width, int height, int colorspace, int weighted) { //RGB(A) -> Mono
2unsigned char *monoImg = malloc(width * height);
3int m = 0, n = 0;
4register r = width * height;
5 -
Fail1Ban
Fail1Ban PublicA Linux kernel module firewall and userspace log parser and auto-banner. Uses pipes, much faster than fail2ban :-)
C
-
magic_square_of_squares_calculator
magic_square_of_squares_calculator PublicBrute force a 3x3 magic square of squares extremely quickly
C
-
MyTableViewer
MyTableViewer PublicAn ultra minimalist, read-only database table viewer for MySQL / MariaDB
PHP
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.