Skip to content
View piyukore06's full-sized avatar
🍒
Focusing
🍒
Focusing
Block or Report

Block or report piyukore06

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. 2048 2048 Public

    JavaScript 2 1

  2. generative-art generative-art Public

    Playing around with CSS and shapes

    JavaScript 2 1

  3. ZSH Aliases ZSH Aliases
    1
    alias rustc="~/.cargo/bin/rustc"
    2
    alias gl="git log --oneline --decorate --graph"
    3
    alias amend="git commit --amend"
    4
    alias pulldev="git checkout develop && git pull && git checkout -"
    5
    alias nom="npm"
  4. Advanced Function patterns Advanced Function patterns
    1
    let getDimentions = (length, height) => ({length, height});
    2
    // It is same as
    3
    getDimentions = (length, height) => {
    4
        return {length: length, height: height};
    5
    };