This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
์๊ฒ ์ต๋๋ค. ์๋๋ 1๋ฒ๋ถํฐ 10๋ฒ๊น์ง์ CSS BEM ๊ตฟ ์ผ์ด์ค์ ๋ฒ ๋ ์ผ์ด์ค ์์๋ฅผ ํฌํจํ Markdown ํ์ผ ๋ด์ฉ์ ๋๋ค. | |
```markdown | |
# CSS BEM Good Case and Bad Case Examples | |
## 1. Good Case: Clear Block Naming | |
```css | |
/* Good */ | |
.header { | |
background-color: #f8f9fa; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import nest_asyncio # pip install nest_asyncio (for ipython) | |
nest_asyncio.apply() | |
import os | |
import asyncio | |
import aiohttp # pip install aiohttp | |
import aiofiles # pip install aiofiles | |
REPORTS_FOLDER = "reports" | |
FILES_PATH = os.path.join(REPORTS_FOLDER, "files") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import copy | |
class PalindromeNode: | |
def __init__(self, sentence, exception_limit): | |
self.sentence = sentence | |
self.exception_limit = exception_limit | |
def is_done(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map <C-n> :NERDTreeToggle<CR> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-p | |
bind-key C-p send-prefix | |
# go to last window | |
bind-key a last-window | |
# split window | |
bind-key v split-window -h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [๋ณ์ญ[Execellentํ Dockerfile์ ์์ฑํ๋ ๋ฒ!(1) | |
๋ฒ์ญ์ ์์ | |
์ง๋ 10์๋ถํฐ aws ์์ธ ๋ฆฌ์ ์์๋ ecs ์๋น์ค๊ฐ ์ด์ฉ ๊ฐ๋ฅํ๊ฒ ๋์๋ค. | |
์ฌ์ด ์ฒ์์ผ๋ก ๋์ปค๋ฅผ ์ ํ๊ณ ecs๋ฅผ ํตํด ๋ฐฐํฌ ํ ๊ฒฝํ์ด ์์๋๋ฐ, | |
Aws ์์ธ๋ฆฌ์ ์ถ์ ์์์ ์ง๊ธ ์ผํ๊ณ ์๋ ๊ณณ์์๋ codedeploy๋ก ๋ฐฐํฌํ๋ ๊ฒ์ ecs๋ฅผ ํตํด ๋ฐฐํฌํ๋ ค๊ณ ํ๋ค. | |
๊ด๋ จํด์ ์ฌ๋ฌ ๋ฌธ์๋ค์ ์ฐพ์ ๋ณด๋ ์ค ์ฌ๋ฌ ์ข์ ์๋ฃ๋ค์ ๋ฐ๊ฒฌํ๋ค. |