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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. 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
  2. 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
  3. 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
  4. Assert function for Lens Studio in T... Assert function for Lens Studio in Typescript
    1
    export function assert(condition: unknown, message = 'Assertion failed'): asserts condition {
    2
        const isEditor = global.deviceInfoSystem?.isEditor?.();
    3
        if (isEditor && !condition) {
    4
            const err = new Error(`[ASSERT] - ${message}`);
    5
            throw err;