10000 AdrienMgm (AdrienMgm) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View AdrienMgm's full-sized avatar
🧗
🧗

Block or report AdrienMgm

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

    Forked from Tencent/xLua

    xLua is a lua programming solution for C# ( Unity, .Net, Mono) , it supports android, ios, windows, linux, osx, etc.

    C

  2. Unity-Technologies/arfoundation-samples Unity-Technologies/arfoundation-samples Public

    Example content for Unity projects based on AR Foundation

    C# 3.3k 1.2k

  3. shrinkpdf shrinkpdf
    1
    #!/bin/sh
    2
    
                  
    3
    # Usage (number represent dpi)
    4
    # ./shrinkpdf.sh in.pdf > out.pdf
    5
    # ./shrinkpdf.sh in.pdf out.pdf
  4. Convert wav files to ogg with ffmpeg Convert wav files to ogg with ffmpeg
    1
    for i in *.wav;
    2
      do name=`echo "$i" | cut -d'.' -f1`
    3
      echo "$name"
    4
      ffmpeg -i "$i" "${name}.ogg"
    5
    done
  5. minifyMP3.sh minifyMP3.sh
    1
    for i in *.mp3;
    2
      do name=`echo "$i" | cut -d'.' -f1`
    3
      echo "$name"
    4
      lame -b 32 "$i" "${name}-min.mp3"
    5
    done
0