Skip to content
View tannerkothlow's full-sized avatar

Block or report tannerkothlow

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. madams1972/CampAholics madams1972/CampAholics Public

    CampAholics

    JavaScript 2

  2. react-portfolio react-portfolio Public

    Week 20 project to create a responsive portfolio app using React.

    JavaScript

  3. nosql-social-network-api nosql-social-network-api Public

    Week 18 project to create the backend for a social network app using nosql and mongoose

    JavaScript

  4. hex-code-regex.md hex-code-regex.md
    1
    # Using Regular Expressions (regex) for Hex Codes
    2
    
                  
    3
    During web development, or any number of coding projects, you are likely to stumble upon hex codes. These helpful little six digit strings are able to specify the use of over sixteen million colors. Each hex code is broken up into four parts, the preceding hash `#`, and three groups of two base-16 numbers which correspond to a color’s red, green, and blue intensity values.
    4
    
                  
    5
    - Base-16 numbers are a way to represent 10-15 while using single characters. After 9, base-16 continues with a, b, c, d, e, f.