Skip to content
View drBenway's full-sized avatar

Block or report drBenway

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

    Python

  2. ansible-sublime ansible-sublime Public

  3. css circle css circle
    1
        .circle{
    2
          height: 25px;
    3
          width: 25px;
    4
          background-color: #bbb;
    5
          border-radius: 50%;
  4. javascripr Range javascripr Range
    1
    //range from 0 => n
    2
    
                  
    3
    const range =[...Array(n).keys()];
    4
    console.log(range);
    5
    
                  
  5. provision mac provision mac
    1
    #!/bin/sh
    2
    
                  
    3
    # install homebrew
    4
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    5
    
                  
  6. saving frames to images with ffmpeg saving frames to images with ffmpeg
    1
    ffmpeg -i videofile.mpg -r 1 image-%04d.jpeg