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λ₯Ό ν΅ν΄ λ°°ν¬νλ €κ³ νλ€. | |
κ΄λ ¨ν΄μ μ¬λ¬ λ¬Έμλ€μ μ°Ύμ 보λ μ€ μ¬λ¬ μ’μ μλ£λ€μ λ°κ²¬νλ€. |
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
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
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
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
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
μκ² μ΅λλ€. μλλ 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; |