Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions GitHubWikis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Welcome to GitWikis
---------------------------------------------
### 1. local repository files을 모두 origin/master와 강제로 동기화(Overwrite)하기

GitHub Desktop은 Git의 일부 중요한 기능(명령)만을 발췌하여 쉽게 사용하도록 만든 윈도우 인터페이스 적용한 프로그램입니다. 그러므로, 좀 디테일하고, 다양한 Git의 기능을 사용하려면, Console에서 Git 명령어를 사용하여 우리가 필요한 작업을 해야합니다. Git을 사용하려면, git도 설치해야 합니다.

예를 들면, nowic를 clone하여 사용하다보면, 때때로 nowic에서 파일을 고치고, 새로 만들기 하고, 실수로 파일을 삭제하기도 하며, nowic가 원본(origin/master)과 많이 달라질 수 있습니다. 이럴 때, 종종 우리는 local files를 원본으로 동기화해야 할 때가 있습니다. 물론, nowic를 자체를 삭제하고, 새로 clone을 할 수도 있지만, 아래와 같은 방법으로 local files을 모두 동기화(Overwrite)할 수 있습니다.

1. At a console, go to the root of your repository (e.g. ~/nowic folder)
1. Run the following two commands.

```
git fetch --all
git reset --hard origin/master
```
__Explanation:__ `git fetch` downloads the latest from remote without trying to merge or rebase anything. Then the `git reset` resets the master branch to what you just fetched. The `--hard` option changes all the files in your working tree to match the files in origin/master

__Causion:__ If you have any local changes, they will be lost. With or without --hard option, any local commits that haven't been pushed will be lost.


### 2. master/origin에 존재하지 않는 local repository files/folders를 모두 삭제하기
- At a console, go to the root of your repository (e.g. ~/nowic folder)
- Open a console and run the following command.
```
git clean -f -d
```
__Explanation:__ To delete all untracked files.

## 3. local repository를 다른 folder로 바꾸기
Simply move (if you use GitHub desktop) the whole repository folder contents (including the hidden .git folder). This will move the entire folder to the new location and will not affect the remote repository on GitHub. (If you use a git user, you may use `copy` instead of `move` command for your safety.)

__For GitHub Desktop users:__ After moving, however, let GitHub Desktop know where your new repository location is.

__Explanation:__ There is no absolute path in the .git structure and nothing preventing it to be moved so you have nothing to do after the move. All the links to GitHub (see in .git/config) will work as before.




----------------------------
_One thing I know, I was blind but now I see. John 9:25_
37 changes: 37 additions & 0 deletions Weekly05OpenLectures.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

# AI Core Lecture list
----------------------------------------------------------
# AI Introduction and Future

## 4. [Artificial Intelligence: Mankind's Last Invention](https://www.youtube.com/watch?v=Pls_q2aQzHg)
- Aperture
- 20:21
- Artificial Intelligence: Mankind's Last Invention - Technological Singularity Explained. As artificial intelligence becomes more and more advance how will it impact mankind’s future? AI could be a great thing or a very bad thing. It is interesting to hear what great minds have to say about artificial intelligence.

------------------------
# AI applications

## 4. [How ai is making it easier to diagnose disease](https://www.youtube.com/watch?v=mhEYvrFOP88)
- Speaker: Pratik Shah · Medical technologist
- 11:19
- 인공지능을 활용해서 질병을 발견하는 방법.
- Today's AI algorithms require tens of thousands of expensive medical images to detect a patient's disease. What if we could drastically reduce the amount of data needed to train an AI, making diagnoses low-cost and more effective? TED Fellow Pratik Shah is working on a clever system to do just that. Using an unorthodox AI approach, Shah has developed a technology that requires as few as 50 images to develop a working algorithm -- and can even use photos taken on doctors' cell phones to provide a diagnosis. Learn more about how this new way to analyze medical information could lead to earlier detection of life-threatening illnesses and bring AI-assisted diagnosis to more health care settings worldwide.
- 영문 + 한글 자막 지원

--------------------------------
# Machine Learning, Deep Learning

## 4. [Building AI for Everyone 모두를 위한 인공지능](https://youtu.be/BKj3fnPSUIQ)
- Speaker: Jeffrey Dean (Google AI Team)
- 16:09
- 내용: AI가 여러 분야에 어떻게 다양하게 사용되고 있는지 설명합니다. 우리 각자의 전공 영역이나 혹은 일상 생활에서 어떻게 적용할 수 있을지 생각하게 합니다. 창의적인 생각이 많이 일어나길 바랍니다.
- 영문 + 한글 자막

------------------------------------------------------------
# Highly Technical Lectures

## 1. YTD(Yet To be Determined)


----------------------------
_One thing I know, I was blind but now I see. John 9:25_
Loading