Skip to content
View justynhunter's full-sized avatar
🐢
🐢

Organizations

@gsandf

Block or report justynhunter

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. isEven() isEven()
    1
    const isEven = (n) => (n).toString(2).slice(-1) == 0;
    2
    
                  
    3
    const isEvenGood = (n) => !(n % 2);
    4
    
                  
    5
    const isEvenBetter = (n) => n >> 1 << 1 === n;
  2. dotfiles dotfiles Public

    my dotfiles

    Lua

  3. game-of-life-blazor game-of-life-blazor Public

    Blazor game of life

    HTML

  4. photo_site photo_site Public

    Photo Site

    Elixir