Skip to content
View Restuta's full-sized avatar
πŸ¦„
Hacking fast and slow.
πŸ¦„
Hacking fast and slow.

Organizations

@RCN @dotband @31337-team @Potorok @SJBC @NCNCA
Block or Report

Block or report Restuta

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

Pinned

  1. rcn.io rcn.io Public

    🚴 Making bike racing in USA "a better place" or "great again"

    JavaScript 44 18

  2. little-scraper little-scraper Public

    πŸš‚ Little Node Scraper That Could. With simple, but powerful async flow control goodness.

    JavaScript 3 2

  3. number-partitioner number-partitioner Public

    Tiny package used to generate all partitions of positive integer

    JavaScript 1 1

  4. ramda-sheep ramda-sheep Public

    𝑓(🐏) = πŸ‘, Ramda Sheep is a set of useful Ramda functions.

    4 1

  5. Sizes of JS frameworks, just minifie... Sizes of JS frameworks, just minified + minified and gzipped, (React, Angular 2, Vue, Ember)
    1
    Below is the list of modern JS frameworks and almost frameworks – React, Vue, Angular, Ember and others.
    2
    
                  
    3
    All files were downloaded from https://cdnjs.com and named accordingly.
    4
    Output from `ls` command is stripped out (irrelevant stuff)
    5
    
                  
  6. null or undefined null or undefined
    1
    `null` in javascript is an object, which has few important, arguably confusing implications. Unfortunately JS has two ways to declare that something is "nothing", and the default way to do so is `undefined`. 
    2
    
                  
    3
    Having _two_ ways to declare that something is "nothing" might be confusing and could be unnecessary. I can't come up with a use-case where I'd need two (and [Douglas C. thinks the same](https://www.youtube.com/watch?v=PSGEjv3Tqo0&t=563s)), therefore we should pick one or another. 
    4
    
                  
    5
    Below is why I think we should pick `undefined` and not `null`: