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

Block or report bytrangle

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. my-website my-website Public

    Sharing all the nitty gritty I've learned about building a fast, responsive, user-friendly, easy-to-manage Gatsby website with Gatsby that grows with your need.

    SCSS

  2. gdrive-search gdrive-search Public

    A Node.js command line application to search for Google Drive files from the comfort of the terminal.

    JavaScript 1

  3. Search Files in Google Drive Whose N... Search Files in Google Drive Whose Names Matches a Given Value
    1
    /* Example: Search for all files in Google Drive whose file names contains the word 'tracker'. The result would be:
    2
    - Fitness tracker
    3
    - Personal finance tracker
    4
    - Job application tracker
    5
    */
  4. Dynamic Media Queries in SASS to avo... Dynamic Media Queries in SASS to avoid repetitive typing and having to remember what screen widths you had targeted. There is a map of five common ranges of device widths, but you can also pass in a custom width. Stay DRY (don't repeat yourself).
    1
    // Divide screen width into five broad groups.
    2
    $mediaXL: 1200px;
    3
    $mediaLarge: 992px;
    4
    $mediaMedium: 768px;
    5
    $mediaSmall: 576px;