전체 글(116)
-
전자와 전류, 그리고 전압, 저항, 옴의 법칙
전기 회로는 전지의 -와 +에 전선이 연결되어야만합니다. 그게 전기 회로입니다. 건전지 중간에 선을 기점으로 왼쪽은 자유전자들이 저장되어있고, 오른쪽은 전선을 타고 여행을 마치고 돌아온 전자들이 쉬는 공간입니다. 만약 왼쪽에서 자유전자들을 다 써버리면, 그것이 바로 건전지가 다 닳은것입니다. 전류는 전자들의 흐름을 말합니다. 즉 '움직임'을 얘기하는 것이죠. 그렇다면 어디로 흐를까요? 그 전에 전자들이 어디로 흐르는지 알아야합니다. 전자들은 -에서 +로 움직입니다. 바로 전기력때문인데요, 전자들은 - 전하이며, 건전지의 - 극에서 서로 밀어내는 척력이 생깁니다. 그래서, 움직이는 겁니다. 그리고, 건전지의 +극에서는 -극에서 보낸 전자들을 당기는 인력이 발생합니다. 전류의 단위는 A를 사용합니다. 1A ..
2020.07.31 -
The self COVID-19 diagnosis site of South Korea and make it it do some processing automatically by python.
The self COVID 19 diagnosis site of South Korea and make it it do some processing automatically by python. In South Korea, Each office of education(korean=교육청) by region supplies 'Self Diagnosis' site for COVID-19. Although many students have been bothered by it, they have to do it every 8 a.m even more not to go school. so, I thought that something do covid-19 self diagnosis itself. Anyway I ma..
2020.07.24 -
How to implement a Color Picker by C# in WPF
Index 1. Implement a Spectrum 2. Picking a color by mouse click In this post, We are going to make a 'Color Picker' with UserControl in WPF. 0. Inital Codes As you know, In Wpf, there is something very useful control that's LinearGradientBrush and it means that we just only to make a spectrum for picking color. Let's move on next, to implement a spectrum in code. Code above works like a spectrum..
2020.06.28 -
DirectShow, 다이렉트쇼에서 마이크 녹음하기
DirectShow에서 어떻게하면 마이크를 캡처(Capture)하여 파일로 저장할까요? 그리고, 어떻게 하면 파일을 우리가 들을 수 있을까요? DirectShow는 처음하는 사람 입장에서 매우 복잡하고, 길고, 절대 사용자에게 친절하지 않습니다. 더군다나 요즈음 트렌드인 Go, Js를 가까이 둔 사람이 한다면, Getting Started문서도 한번 넘기지 못한채 그만두게 될 것이 뻔합니다. 저는 이 복잡하고도 재미있는 어떠한 퍼즐같은 재미를 선사하는 DirectShow를 쉽게 풀어서 말하겠습니다. 그래프 에디터의 사용 앞서 코딩하기 전, 그래프 에디터로 어떠한 필터(단계)를 거쳐가나 도면(그래프)을 오직 마우스 클릭만으로 만들고, 실행 해보겠습니다 그래프 에디터를 사용하기 위해선 이 문서를 참고해주세요..
2020.05.14 -
What a simply implemented Matrix four arithmetic operations in GoLang!
In this post, We are going to make a matrix and additional arithmetic operations plus, minus. mulitply and scalar mulitply the last. The chapter of post: 1. Matrix Structure 2. Matrix Functions 3. Implement Four Arithmetic Operations 4. Let's Go https://github.com/SnowyPainter/Matrix SnowyPainter/Matrix Contribute to SnowyPainter/Matrix development by creating an account on GitHub. github.com Fi..
2020.05.01 -
How to sign in and sign up with Firebase on Javascript
Before reading this post, you have to set up all settings for firebase. You can find documentations at here, and you have to build a simple localhost server. I think this would help you. Let's go to build simple login/logout/register code. Registing will be handled on Firebase admin SDK (on server) and the elses will be handled on Web. First, You have to add this code snippets in your html files..
2020.04.25