Skip to content

Instantly share code, notes, and snippets.

View trilliwon's full-sized avatar
🎯
Focusing

WonJo trilliwon

🎯
Focusing
View GitHub Profile

Precision and ambiguity

  • Coarse-grained materials or systems have fewer, larger discrete components than fine-grained materials or systems.
  • A coarse-grained description of a system regards large subcomponents.
  • A fine-grained description regards smaller components of which the larger ones are composed.

granularityΒ : 과립 μƒνƒœ


True Positive

참인 것을 참으둜 νŒλ‹¨

True Negative

거짓인 것을 κ±°μ§“μœΌλ‘œ νŒλ‹¨

False Positive

μ‹€μ œ 거짓인 것을 참인 κ²ƒμœΌλ‘œ νŒμ •ν•˜λŠ” 였λ₯˜

A false positive error, or in short a false positive, commonly called a "false alarm", is a result that indicates a given condition exists, when it does not. For example, in the case of "The Boy Who Cried Wolf", the condition tested for was "is there a wolf near the herd?"; the shepherd at first wrongly indicated there was one, by calling "Wolf, wolf!"

I love vim

Vim Visual Mode

  • v% if the cursor is on the starting/ending parenthesis
  • vib if the cursor is inside the parenthesis block
  • vi" for double quotes
  • vi' for single quotes
  • vi{ / viB for curly block

CNAME vs A Records

Last Edited: May 14, 2019 11:06 AM

A and CNAME records are for DNS records.

Deferences

  • The A record maps a name to one or more IP addresses when the IP are known and stable.
  • The CNAME record maps a name to another name. It should only be used when there are no other records on that name.

Tree-and-Graph


Tree

What is Tree?

  • κ·Έλž˜ν”„μ˜ 일쒅이닀.

bandwidth, throughput, latency

  • bandwidth (λŒ€μ—­ν­)

    • λ‹¨μœ„ μ‹œκ°„ λ™μ•ˆ ν•œ κ³³μ—μ„œ λ‹€λ₯Έ 곳으둜 전달할 수 μžˆλŠ” λ°μ΄ν„°μ˜ μ΅œλŒ€λŸ‰
  • throughput (μ²˜λ¦¬λŸ‰)

    • μΌμ •ν•œ μ£ΌκΈ° λ™μ•ˆ 채널을 κ°€λ‘œμ§ˆλŸ¬ 전솑될 수 μžˆλŠ” λ°μ΄ν„°μ˜ μ–‘
  • latency (λŒ€κΈ°μ‹œκ°„)

Private(Local) IP vs Public IP (λ‚΄λΆ€ IP, μ™ΈλΆ€ IP, IP : Internet Protocol)


  1. Find my IP Address on macOS

  • Option +"Click Wifi Menu Bar", then you can see below

μ •κ·œν‘œν˜„μ‹μœΌλ‘œ ν•œκΈ€μ„ ν™•μΈν•˜λŠ” 방법

const re = /[κ°€-힣]+/g
const sample =
  "Pomodoro, μ•ˆλ…•ν•˜μ„Έμš”. Hello World! μ•„λ‹Œλ°μš”. Really μ € μ•„λ‹ˆμ—μš”."
const result = re.exec(sample)
const result01 = sample.match(re)

console.log(result)