Skip to content

Instantly share code, notes, and snippets.

View koremp's full-sized avatar

Dokyun Lim koremp

  • Daejeon, Republic of Korea
  • LinkedIn in/koremp
View GitHub Profile
@koremp
koremp / frontend_browser_test.md
Created August 23, 2022 15:17 — forked from Bananamilk452/frontend_browser_test.md
프론트엔드 웹 브라우저 크로스 테스트하기

이 브라우저에선 되고 저 브라우저에선 안되는 우리 사이트를 살려주세요

테스트에 사용할 브라우저

  • Chrome (Chromium)
  • Firefox
  • Safari (Webkit)
  • Opera
  • Edge
  • 네이버 웨일 (한국 한정)
@koremp
koremp / Object prototypes
Created April 27, 2022 02:20
Mozilla의 JavaScript 중 Object prototypes 본문 중
# Object prototypes
When altering the behavior of existing `Object.prototype` methods, consider injecting code by wrapping your extension before or after the existing logic. For example, this (untested) code will pre-conditionally execute custom logic before the built-in logic or someone else's extension is executed.
기존 Object.prototype 메서드의 동작을 변경하고자 할 때에는 기존 내용의 앞이나 뒤에 확장할 내용을 래핑하여 코드를 주입하는 것을 고려하세요. 예를 들어, 이 (테스트되지 않은) 코드는 기본 제공 코드 또는 다른 사람의 확장 실행되기 전에 사전 조건부로 사용자 정의 코드를 실행합니다.
When a function is called, the arguments to the call are held in the array-like "variable" arguments. For example, in the call `myFn(a, b, c)`, the arguments within `myFn`'s body will contain 3 array-like elements corresponding to `(a, b, c)`.
함수가 호출되면 호출에 대한 매개변수가 유사배열 "변수" arguments 객체에 보관됩니다. 예를 들어, myFn(a, b, c)를 호출하면 myFn 본문 내의 arguments 객체에는 (a, b, c)에 해당하는 3개의 유사배열요소가 포함됩니다.
@koremp
koremp / gist:4adc66a5cb76ed13ed2b2b4e488447d0
Created November 21, 2020 13:26 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@koremp
koremp / .prettierrc
Created July 17, 2020 09:59
For React.js Project
{
"singleQuote": true,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80
}