Skip to content
View sammcgrail's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report sammcgrail

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

Hi there 👋

don't tell me you're too blind to see

Pinned Loading

  1. streampcwebsite streampcwebsite Public

    HOMEPAGE HOSTED WITH FIREBASE

    JavaScript 2

  2. radarplot radarplot Public

    Using NOAA, OpenWeather, and Mapbox APIs to plot weather data over maps and provide location based forecasts

    JavaScript 4 1

  3. mydga mydga Public

    DGA Analysis for Transformer Maintenance Engineers

    Ruby 9

  4. pokedex pokedex Public

    Calling the pokemon api and graphing the results in React

    JavaScript

  5. dashmock dashmock Public

    Extensions to nvd3 and highcharts to better suit our moods

    JavaScript 1

  6. Brush function for d3.js that redraw... Brush function for d3.js that redraws the vertical axis based on the range of data currently shown
    1
    function brush() {
    2
        // Use x.domain to filter the data, then find the max and min duration of this new set, and set y.domain to that
    3
        x.domain(brush.empty() ? x2.domain() : brush.extent());
    4
        var dataFiltered = data.filter(function(d, i) {
    5
            if ( (d.date >= x.domain()[0]) && (d.date <= x.domain()[1]) ) {