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

Block or report cdeath

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. keep your mac updated and clean keep your mac updated and clean
    1
    # Tidying up your mac
    2
    
                  
    3
    ### softwareupdate
    4
    ```
    5
    softwareupdate -i -a --force --agree-to-license
  2. bashing bashing
    1
    # Command line stuff
    2
    
                  
    3
    ### find (and optionally delete) files or folders
    4
    ```
    5
    mdfind ''
  3. macOS stuff macOS stuff
    1
    # macOS stuff
    2
    
                  
    3
    ### set/change/disable firmware password
    4
    ```
    5
    sudo firmwarepasswd -setpasswd
  4. always open chrome in incognito always open chrome in incognito
    1
    # Force Incognito on Chromium based browsers
    2
    
                  
    3
    ### Chrome
    4
    ```
    5
    defaults write com.google.Chrome IncognitoModeAvailability -integer 2
  5. extract stuff from .mkv with ffmpeg extract stuff from .mkv with ffmpeg
    1
    # Extract stuff from .mkv with [ffmpeg](ffmpeg.org)
    2
    Full documentation: https://ffmpeg.org/ffmpeg.html
    3
    
                  
    4
    ### List all tracks
    5
    ```