Web APIs 란?
APIs란? Application Programming Interface 이 중에서 WebAPIs는. Javascript 언어 자체에 포함되어 있는 아이가 아니고, 브라우저가 제공하는, 브라우저가 이해할 수 있는 함수들 이다. 예를 들어, console API (MDN) Front-end ------요청(req)-----> Back-end (Server)
APIs란? Application Programming Interface 이 중에서 WebAPIs는. Javascript 언어 자체에 포함되어 있는 아이가 아니고, 브라우저가 제공하는, 브라우저가 이해할 수 있는 함수들 이다. 예를 들어, console API (MDN) Front-end ------요청(req)-----> Back-end (Server)
When giving a presentation, 1) How to introduce yourself2) And your presentation3) How to transit through the stage of the presentation4) How to conclude your presentation So, let's straight to it. 1)a. Introduce yourselfb. greet the audiencec. introduce the presentation - Hello, My name is ________. Welcome to Today's presentation. I will be speaking about _____________.- Good afternoon. My nam..
bank on something -을 의존하다 / 믿다 / 기대하다 / 신용하다 - "I'm sure he'll help."틀림없이 그가 도와줄거야. - "Don't bank on it."기대하지 마.
7 different folders for partial Sass files, and 1 main Sass file to import all other files into a compiled CSS stylesheet. The 7 folders: base/basic product definitionscomponents/one file for each componentlayout/define the overall layout of the projectpages/styles for specific pages of the projectthemes/want to implement different visual themesabstract/put code that doesn't output any CSS such ..
To set the font-size to pixels is very bad. body { font-size:10px; } /*very bad*/ for example, when they have bad sight and cannot see so good, then some people actually increase the default font size of their browser. The problem is that by doing so we actually override the browser font size setting that the user can manually change in the settings, and many people actually do that. Now if we s..
#1 내가 알기로는as far as I know, As far as I know, he hasn't got a job yet. #2 내가 듣기로는from what I hear (요즘 듣게 된 내용 공유)from what I've heard (내가 다른 곳에서 듣고 머리속에서 정리된 내용을 말할 때) From what I've heard, he has quit his job. #3 내가 기억하기로는(정확한지는 확신할 수 없지만, 내가 아는 범위에서는, 내가 들은 범위에서는 을 강조)as far as I (can) remember As far as I can remember, she has never been to US. #4 내가 보기에는, 내가 생각하기에는In my opinionfrom what I've..
#1Here's what I think. A: What do you think we should do?B: Well, here's what I think. I think we should first analyze what's working and then create a plan based on that. #2There's a reason for it. (이유가 있지) 왜냐하면~ You should tap the top of a soda can before you open it..And there's a reason for it.It'll prevent the fizz from bubbling up. #3I could be wrong,orIf I'm not mistaken, 이게 아닐수도 있는데요,(또는..
Every CSS property must have a value. Is there a cascaded value? -if yes, Specified value == Cascaded value -if not, Is the property inherited?(specific to each property) and if yes, Specified value == Computed value of parent element ∴ This is Inheritance! if not, Specified value == Initial value(specific to each property) like padding and margin -> not inherited. be extremely impracticable. In..
#1 Declaration ① Declared value ② Cascaded value ③ Specified value ④ Computed value ⑤ Used value (final calculation) ⑥ Actual value root font-size -> 16px(Browser default) section font-size -> 1.5rem -> computed: 16px * 1.5 = 24px(Inheritance) #2 Inheritance Example(x) How to convert to pixels Result on pixels % (font) 150% x% * parent's computed font-size(16px) 24px % (length) 10% x% * parent's..
This is so extremely important because getting started with CSS is actually very easy but really knowing what's going on behind scenes is completely different, and it's really not as easy as getting started. [Specificity] 1. inline styles 2. IDs 3. classes, pseudo-classes, attribute 4. Elements, pseudo-elements (Inline, IDs, Classes, Elements) CSS declarations marked with !important have the hig..