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

Block or report curtismckee

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
curtismckee/README.md

curtismckee's GitHub stats

Pinned

  1. go-alpha-vantage go-alpha-vantage Public

    Golang Alpha Vantage Client

    Go 49 26

  2. svg-collection svg-collection Public

    Collection of assorted SVG files

    1

  3. aws-12-in-2021.md aws-12-in-2021.md
    1
    <h2 align='center'>AWS 12 in 2021</h2>
    2
    
                  
    3
    ![aws-certs](https://user-images.githubusercontent.com/7895798/50371349-24038100-0576-11e9-8c8a-3745e76c9aa5.jpg)  
    4
    
                  
    5
    1. [Cloud Practitioner](#cloud-practitioner)
  4. xubuntu-18.04-install.md xubuntu-18.04-install.md
    1
    # A fresh xUbuntu 18.04 LTS installation
    2
    
                  
    3
    The newest Ubuntu LTS version code named Bionic Beaver was released a few months ago and I thought it was finally time to upgrade. I also thought I would take this opportunity to write down the steps taken for my reference and anyone else who might find it useful.
    4
    
                  
    5
    ---
  5. Git Stash Cheatsheet Git Stash Cheatsheet
    1
    `git stash list`
    2
    - Lists all stashes on stack.  
    3
    
                  
    4
    `git stash apply stash@{0}`
    5
    - Applies the changes from stash but does not delete from stack.  
  6. Useful commands while working with Unix Useful commands while working with Unix
    1
    **Add User:**  
    2
    `useradd -m -g [group] -G [additional_group] [username]`  
    3
    > The `-m` flag creates /home directory for user  
    4
    5
    **Expire User:**