Skip to content
View Marc-Bender's full-sized avatar
Block or Report

Block or report Marc-Bender

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

  1. Amazon-Factoring-Programm Amazon-Factoring-Programm Public

    Piece of individual code that is used to go through a bunch of invoices (as PDF) from one of our customers to fetch the Invoice number and the amazon order number. Output is using CSV-file.

    Visual Basic 1

  2. Shellscript to convert M4A and OGG f... Shellscript to convert M4A and OGG files to mp3
    1
    find . -type f -name '*.m4a' -exec bash -c 'ffmpeg -i "$0" -c:a libmp3lame -q:a 2 "$0.mp3" && rm "$0"' '{}' \;& find . -type f -name '*.ogg' -exec bash -c 'ffmpeg -i "$0" -c:a libmp3lame -q:a 2 "$0.mp3" && rm "$0"' '{}' \;
  3. Shell script to make a RAM disk of a... Shell script to make a RAM disk of a certain size on Linux systems. Designed to replace my previous C-Solution. This solution now sanitizes inputs and comes with a manpage
    1
    #! /bin/sh
    2
    
                  
    3
    if [ "$#" -ne 1 ]
    4
    then
    5
    	echo Exactly one argument must be given
  4. ClipboardHistory ClipboardHistory Public

    A basic Clipboard History application written in Visual Basic.

    C++