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

Block or report miloslavnosek

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. planner planner Public

    Task planning TUI application

    Go 1

  2. mindfulness-notifier mindfulness-notifier Public

    An android app reminding you to live for the present moment

    Go

  3. freetube-nightly-updater freetube-nightly-updater Public

    An app that makes updating FreeTube from nightly build artifacts automated.

    Elixir

  4. Flac to MP3 320kbps conversion via ... Flac to MP3 320kbps conversion via ffmpeg
    1
    #!/bin/bash
    2
    
                  
    3
    for a in ./*.flac; do
    4
      < /dev/null ffmpeg -i "$a" -ab 320k -map_metadata 0 -id3v2_version 3   "${a[@]/%flac/mp3}"
    5
    done