Skip to content
View Voldrix's full-sized avatar

Block or report Voldrix

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. 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
    4
    if [ -z "$1" ];then echo "Usage: <Video Files...> [outputs to same dir as input]" &>2;exit 1;fi
    5
    
                  
  2. Seam Carving with Sobel in C Seam Carving with Sobel in C
    1
    unsigned char* rgb_to_monochrome(unsigned char *rgbImg, int width, int height, int colorspace, int weighted) { //RGB(A) -> Mono
    2
      unsigned char *monoImg = malloc(width * height);
    3
      int m = 0, n = 0;
    4
      register r = width * height;
    5
    
                  
  3. Fail1Ban Fail1Ban Public

    A Linux kernel module firewall and userspace log parser and auto-banner for blocking web bots. Uses pipes, much faster than fail2ban :-)

    C

  4. magic_square_of_squares_calculator magic_square_of_squares_calculator Public

    Brute force a 3x3 magic square of squares extremely quickly

    C

  5. Tellor Tellor Public

    Minimalist single-user kanban todo app. Can import from Trello. (php + mysql)

    JavaScript 9

  6. Video_Clipper Video_Clipper Public

    Clip / crop video segments, and concatenate them into a highlight reel. Simple and clean single page web app

    HTML