Skip to content

Commit

Permalink
Merge branch 'update'
Browse files Browse the repository at this point in the history
  • Loading branch information
djccnt15 committed Sep 15, 2024
2 parents 467c39d + 89fca79 commit e3523d3
Show file tree
Hide file tree
Showing 230 changed files with 973 additions and 442 deletions.
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-01-initial_post.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ GitHub Pages 기반의 블로그는 다른 블로그 전문 플랫폼들에 비
전체 블로그의 내용과 코드들을 local에도 저장해둘 수 있다는 점이 만약의 사태에 대비하기에도 좋고,
각종 코드를 입맛대로 적용시킬 수 있다는 점이 아주 좋다.

앞으로는 각종 공부한 내용을 이 블로그에 업데이트 할 예정이다.
앞으로는 각종 공부한 내용을 이 블로그에 업데이트 할 예정이다.
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-02-customize_minimal_mistakes.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,4 +347,4 @@ Minimal Mistakes의 [Configuration](https://mmistakes.github.io/minimal-mistakes
- [Jekyll Github 블로그에 MathJax로 수학식 표시하기](https://mkkim85.github.io/blog-apply-mathjax-to-jekyll-and-github-pages/)
- [How to add Latex to Minimal Mistakes](https://www.janmeppe.com/blog/How-to-add-mathjax-to-minimal-mistakes/)
- [[Github Blog] 파비콘(Favicon) 세팅하기](https://velog.io/@eona1301/Github-Blog-%ED%8C%8C%EB%B9%84%EC%BD%98Favicon-%EC%84%B8%ED%8C%85%ED%95%98%EA%B8%B0)
- [Github.io 월별 게시글 분류 추가하기](https://danggai.github.io/github.io/Github.io-%EC%9B%94%EB%B3%84-%EA%B2%8C%EC%8B%9C%EA%B8%80-%EB%B6%84%EB%A5%98-%EC%B6%94%EA%B0%80%ED%95%98%EA%B8%B0/)
- [Github.io 월별 게시글 분류 추가하기](https://danggai.github.io/github.io/Github.io-%EC%9B%94%EB%B3%84-%EA%B2%8C%EC%8B%9C%EA%B8%80-%EB%B6%84%EB%A5%98-%EC%B6%94%EA%B0%80%ED%95%98%EA%B8%B0/)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-02-jekyll_manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,4 @@ bundle exec jekyll serve --drafts
---
## Reference
- [Jekyll](https://jekyllrb.com/)
- [devinlife](https://devinlife.com/)님의 [하우투: 같이 따라하기 시리즈](https://devinlife.com/howto/)
- [devinlife](https://devinlife.com/)님의 [하우투: 같이 따라하기 시리즈](https://devinlife.com/howto/)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-03-googling_stuff_online.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ tags:

데이터 분석을 다루면서 시작한 프로그래밍인데, 재미를 붙여버렸는지 자꾸 개발에 투자하는 시간이 늘어나는 나로서는 모든걸 독학으로 공부할 수 밖에 없었고, 구글링이 프로그래머를 만들어준다는 말에 공감이 가지 않을 수 없다.

> 느린 것을 두려워하지 말고, 다만 멈추는 것을 경계하라. - 중국 속담
> 느린 것을 두려워하지 말고, 다만 멈추는 것을 경계하라. - 중국 속담
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-04-blog_markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ $$

<details><summary>summary</summary><div markdown="1">
> **Your** Contents
</div></details>
</div></details>
14 changes: 7 additions & 7 deletions docs/blog/posts/2022-01-05-venv_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,44 +197,44 @@ VIRTUAL_ENV=venv_location_b4 -> VIRTUAL_ENV=venv_location_now

Ubuntu 업데이트

```bash
```shell
sudo apt update && sudo apt upgrade
```

`python3` 업데이트

```bash
```shell
sudo apt upgrade python3
```

`python3-pip` 설치

```bash
```shell
sudo apt install python3-pip
```

`python3-venv` 설치

```bash
```shell
sudo apt-get install python3-venv
```

### 2. ⚡특정 Python version 사용

`*` 위치에 사용하고 싶은 파이썬 버전 입력 (e.g. `python3.7`)

```bash
```shell
python* -m venv [venv_name]
```

### 3. 가상환경 실행

linux에서 Python 가상환경을 실행하는 명령어는 아래와 같다.

```bash
```shell
source bin/activate
```

---
## Reference
- [Python Documentation: Virtual Environments and Packages](https://docs.python.org/3/tutorial/venv.html)([한글](https://docs.python.org/ko/3/tutorial/venv.html))
- [Python Documentation: Virtual Environments and Packages](https://docs.python.org/3/tutorial/venv.html)([한글](https://docs.python.org/ko/3/tutorial/venv.html))
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-06-about_PEP.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,4 @@ if greeting is True:
- [PEP 0 -- Index of Python Enhancement Proposals (PEPs)](https://www.python.org/dev/peps/)
- [PEP 1 -- PEP Purpose and Guidelines](https://www.python.org/dev/peps/pep-0001/)
- [PEP 20 -- The Zen of Python](https://www.python.org/dev/peps/pep-0020/)
- [PEP 8 -- Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/)
- [PEP 8 -- Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-07-python_function.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,4 @@ for f in list_func:
---
## Reference
- [Python Documentation: Defining Functions](https://docs.python.org/3/tutorial/controlflow.html#defining-functions)([한글](https://docs.python.org/ko/3/tutorial/controlflow.html#defining-functions))
- [PEP 3107 – Function Annotations](https://peps.python.org/pep-3107/)
- [PEP 3107 – Function Annotations](https://peps.python.org/pep-3107/)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-08-clean_code.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ test = test_func(**kwargs)
---
## Reference
- [노마드코더](https://www.youtube.com/channel/UCUpJs89fSBXNolQGOYKn0YQ): [깨끗한 코드를 위한 5가지 팁](https://youtu.be/Jz8Sx1XYb04)
<iframe src="https://www.youtube.com/embed/Jz8Sx1XYb04" title="깨끗한 코드를 위한 5가지 팁" frameborder="0" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/Jz8Sx1XYb04" title="깨끗한 코드를 위한 5가지 팁" frameborder="0" allowfullscreen></iframe>
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-08-count_runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ if __name__ == "__main__":
## Reference
- [time — Time access and conversions](https://docs.python.org/3/library/time.html)
- [datetime — Basic date and time types](https://docs.python.org/3/library/datetime.html)
- [timeit — Measure execution time of small code snippets](https://docs.python.org/3/library/timeit.html)
- [timeit — Measure execution time of small code snippets](https://docs.python.org/3/library/timeit.html)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-08-csv_encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ df.to_csv('FILE_NAME.csv', encoding='utf-8-sig')

---
## Reference
[pandas.DataFrame.to_csv](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_csv.html)
- [pandas.DataFrame.to_csv](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_csv.html)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-08-df_header.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ print(df)

---
## Reference
- [pandas.DataFrame.rename](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.rename.html)
- [pandas.DataFrame.rename](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.rename.html)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-08-handling_os.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ print(os.listdir())

---
## Reference
- [Python Documentation: os — Miscellaneous operating system interfaces](https://docs.python.org/3/library/os.html)([한글](https://docs.python.org/ko/3/library/os.html))
- [Python Documentation: os — Miscellaneous operating system interfaces](https://docs.python.org/3/library/os.html)([한글](https://docs.python.org/ko/3/library/os.html))
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-08-schedule_package.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ between but only once.

---
## Reference
- [schedule](https://schedule.readthedocs.io/)
- [schedule](https://schedule.readthedocs.io/)
2 changes: 1 addition & 1 deletion docs/blog/posts/2022-01-09-pd_set_option.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ print(df)

---
## Reference
- [pandas.set_option](https://pandas.pydata.org/docs/reference/api/pandas.set_option.html)
- [pandas.set_option](https://pandas.pydata.org/docs/reference/api/pandas.set_option.html)
Loading

0 comments on commit e3523d3

Please sign in to comment.