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

Block or report bytrangle

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. 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;