no image
[GIT] git add * 과 git add . 차이
git add * 은 .gitignore에 있는 것 상관없이 모두 추가시키고git add . 은 .gitignore에 명시된 것을 고려하여 모두 추가시킨다. stage에 올릴 때는 git add . 을 사용하자.
2019.08.29
no image
[Network] 인터넷 속도 단위
자주보는 단위들이지만 가끔씩 단위 변환할 때 헷갈리는 경우가 있어서 정리해봤다. 단위의 이름부터 알아보자면, 아래와 같다.Gbps = Giga bit Per SecondMbps = Mega bit Per SecondKbps = Kilo bit Per Secondbps = Bit Per Secondcps = Character Per Second이제 이걸 변환하기 위해 계산해보면 아래와 같다.8 Bit = 1 Byte = 1 Character▽(초 단위로 계산하면...)8 bps = 1 Byte/s = 1 cps헷갈리는 단위가 특히 1 Mbps와 1 MB/s 이 녀석들인데, 이걸 계산해보면 아래와 같다.1 Mbps 는 1,000,000 bps 이다. 그런데 bps 에서 cps ( = Byte/s)로 계산하려..
2016.03.27
no image
[GIT] protocol https not supported or disabled in libcurl 해결 방법
문제SourceTree로 저장소를 작업하다가 push를 하는 도중 다음과 같은 오류를 만났다.protocol https not supported or disabled in libcurl해결libcurl을 삭제하거나 https를 지원하는 libcurl로 대체하면 된다.윈도우 같은 경우 다음 경로에 주로 설치되어 있다.C:\Windows\Syswow64 (64비트)C:\Windows\System32C:\Program FilesC:\Program Files(x86)※참고1. http://curl.haxx.se/download.html※참고2. http://lesstif.com/pages/viewpage.action?pageId=22643906
2016.03.27
no image
[Network] Torrent Magnet URI 구조
아래 3가지라도 주어지면 간단하고 유효한 마그넷 주소를 만들 수 있다. 파라미터 설명 xt 사용 해시 예를 들어, xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a 이렇게 있을 경우 btih (BitTorrent Info Hash) 로 지정한다는 의미 dn 표시될 이름 tr 이용할 트래커 주소. 중복해서 적용이 가능하다. ※트래커 주소 입력 시 퍼센트 변환 문자 : - %3A / - %2F ref) https://en.wikipedia.org/wiki/Magnet_URI_scheme
2016.03.27