Skip to content
View rdazvd's full-sized avatar
:octocat:
:octocat:

Block or report rdazvd

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. Versatile debouncing function (usefu... Versatile debouncing function (useful for dynamically calling functions triggered by frequent user events)
    1
    const debounce = (functionToBeCalled, delay = 1000) => {
    2
      let timeoutId;
    3
      return (...functionArgs) => {
    4
        if (timeoutId) clearTimeout(timeoutId);
    5
        timeoutId = setTimeout(
  2. base64-messenger base64-messenger Public

    Generate one-liner messages and send them as base64-encoded URLs

    HTML

  3. drag-function drag-function Public

    canvas-based dynamic drag and drop rectangle on a few lines of Javascript

    JavaScript

  4. expensify-app expensify-app Public

    JavaScript

  5. udacity-myreads-project udacity-myreads-project Public

    Final project of the "React Fundamentals" module from Udacity's React nanodegree

    JavaScript 1

  6. flashcards flashcards Public

    Final project of Udacity's React Nanodegree Program

    JavaScript