Skip to content
View Violet-Bora-Lee's full-sized avatar
💜
I code, build and act.
💜
I code, build and act.

Highlights

  • Pro

Organizations

@WWCodeSeoul @javascript-tutorial @rpa-web-skills-project

Block or report Violet-Bora-Lee

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. javascript-tutorial/ko.javascript.info javascript-tutorial/ko.javascript.info Public

    모던 JavaScript 튜토리얼(The Modern JavaScript Tutorial in Korean )

    HTML 1.9k 834

  2. linux-survival-for-korean linux-survival-for-korean Public

    Linux Survival을 영/한 번역한 내용을 제공합니다(WIP).

    35 4

  3. git-tutorial git-tutorial Public

    git reset, revert, merge, rebase, fetch, pull, tag등을 시각자료를 사용해 설명합니다.

    JavaScript 39 7

  4. Pocket Solidity by Bora Lee 솔리디티 문법 ... Pocket Solidity by Bora Lee 솔리디티 문법 정리, 이보라의 포켓 솔리디티
    1
    // SPDX-License-Identifier: MIT
    2
    pragma solidity ^0.8.10;
    3
    
                  
    4
    // 매핑(Mapping)은 해시맵, 객채, 딕셔너리처럼 키-값 쌍이 있는 데이터를 저장할 때 사용한다.
    5
    contract Mapping {