Skip to content
View reyuto's full-sized avatar
  • Box, Inc (@box)
  • Fremont, CA

Block or report reyuto

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. Calendar Meeting Distribution Calendar Meeting Distribution
    1
    /**
    2
     * A way for me to calculate the distribution of meetings over a week, based on Calendar rituals followed at work!
    3
     */
    4
    var hourLongInterviewSubject = prompt('What is the subject of an hour long interview? \nOptional if you have interviews.');
    5
    var allEvents = Array.from(document.querySelectorAll('[data-opens-details="true"]'));
  2. If you want to blindly un-follow eve... If you want to blindly un-follow everyone on linkedIn whose update is visible on your home page. You can try running this script from the browser's console.
    1
    function unfollow() {
    2
      // validate this is true (if it does not work for you)
    3
      var arr = [].slice.call(document.querySelectorAll('[data-block="unfollow-update"]'));
    4
      
    5
      // magic happens
  3. Recurring Calendar Meeting Recurring Calendar Meeting
    1
    BEGIN:VCALENDAR
    2
    METHOD:PUBLISH
    3
    BEGIN:VEVENT
    4
    DTSTART;TZID=PST:20170531
    5
    DTEND;TZID=PST:20170531
  4. vim_preferences vim_preferences Public

    My settings for the vim editor on mac. Might differ on other OS. Also has a dependency on Pathogen and Powerline tools.

    Vim Script