Skip to content
View furkanacaryes's full-sized avatar
👈
This guy tests.
👈
This guy tests.
Block or Report

Block or report furkanacaryes

Report abuse

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

Report abuse
furkanacaryes/README.md

Pinned Loading

  1. vite-preact vite-preact Public template

    Forked from TomokiMiyauci/vite-preact

    A simple boilerplate with Vite and Preact

    TypeScript 1

  2. Google Speech Google Speech
    1
    """Synthesizes speech from the input string of text or ssml.
    2
    3
    Note: ssml must be well-formed according to:
    4
        https://www.w3.org/TR/speech-synthesis/
    5
    """
  3. FFmpeg downsize mp4s in directory FFmpeg downsize mp4s in directory
    1
    source ~/.bash_profile
    2
    
                  
    3
    for VIDEO in $(ls *.mp4);
    4
    do
    5
        echo "Converting $VIDEO using ffmpeg with flag 'crf' set to 28 ..."
  4. Google Translate Demo Google Translate Demo
    1
    import os
    2
    from google.cloud import translate
    3
    from decouple import config
    4
    
                  
    5
    os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "service-account.json"
  5. Binding `this` Binding `this`
    1
    const external = function(sample) {
    2
        if (!!sample) this.beCool('I AM COOL!');
    3
    }
    4
    
                  
    5
    class Cool {
  6. Convert all files in directory to we... Convert all files in directory to webp, with default params, or standard cwebp params passed from command
    1
    #!/bin/bash
    2
    
                  
    3
    PARAMS=('-m 6 -q 70 -mt -af -progress')
    4
    
                  
    5
    if [ $# -ne 0 ]; then