SMALL

Study 441

coturn - WebRTC 외부에서 사용 해보기

WebRTC는 개인간 연결(P2P)를 기본으로 한다. 실행되는 단말기(PC, 휴대폰 등)가 공인 IP를 가지거나 같은 네트워크(공유기)안에서 서로 인식할 수 있어야 한다. 즉 Peer가 같은 공유기 안에서 움직여야 통신을 할 수 있다는 말이다. Peer 하나가 공유기 안에 있고, 또 다른 Peer가 공유기 밖에 있다면 통신을 할 수 없다. 이 문제를 해결하기 위해서 coturn에 대해서 알아보자. https://forest71.tistory.com/215 WebRTC 외부에서 사용하기 – coturn WebRTC는 개인간 연결(Peer to Peer)을 기본으로 하기 때문에 실행되는 단말기(PC, 휴대폰등)가 공인 IP를 가지거나 같은 네트워크(공유기) 안에서 서로 인식 할 수 있어야 한다. 하나는 공유..

Study/WEBRTC 2022.02.02

Hyperledger 배우기 위한 소스 모음 아이씨 젠장 할게 왜케 많아

https://dev.to/ajeetht/what-is-hyperledger-fabric-blockchain-1j3i What is hyperledger fabric blockchain? Hyperledger Fabric is an open-source enterprise-grade permissioned distributed ledger technology pla... dev.to https://dev.to/hyperledgerdevelopment/a-guide-to-hyperledger-development-53i8 A Guide to Hyperledger Development Section 1: What is Hyperledger? Hyperledger is an open source communi..

Study/블록체인 2022.02.02

Linux Go Install / 리눅스 Go 설치

1. Go 언어 파일 주소 복사 아래의 링크를 이용하여 다운로드 사이트에 접속하여 원하는 버전의 Go언어를 확인 후 링크 주소를 복사합니다. Go 다운로드 링크 2. wget 다운로드 터미널에서 wget을 이용하여 Go 언어 파일을 다운로드합니다. # wget https://go.dev/dl/go1.17.6.linux-amd64.tar.gz 3. 압축 풀기 압축을 해제하면 바로 사용할 수 있습니다. 따로 컴파일 설치 과정은 필요 없습니다. # tar -zxvf [go filename].tar.gz # ls go [go filename].tar.gz 4. 환경 변수 설정 아래와 같이 bin경로로 접근하여 실행할 수도 있지만 편의를 위해 어느 곳에서나 명령어를 이용해 실행할 수 있도록 환경 변수를 설정합니다..

Study/Dev/Library 2022.02.01

Tips To Better Mobile Optimized Websites / 더 나은 모바일 최적화 웹 사이트를 위한 팁

More and more people get online through their smartphone and tablet these days. So, it is important that we as designers and developers address how our websites are displayed on these devices. In this post we will see several components that you need to include to make your website optimized and accessible on mobile devices. (Source: hongkiat) 1. Meta Viewport Tag The meta viewport is an HTML ta..

Study/개발 Tip 2022.01.30

[Linux] Sublime Text Settings... / Sublime Text 세팅 해보기.

1. GUI로 설치(Ubuntu Software) Ubuntu Software에서 Sublime Text로 검색하면 프로그램을 설치할 수 있습니다. 프로그램에서 Sublime Text을 찾아 실행시킬 수 있습니다. 2. 명령어로 설치(snap) $ sudo apt install snapd snapd-xdg-open $ snap install sublime-text --classic 3. 명령어로 설치(apt) $ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - $ sudo apt-get install apt-transport-https $ echo "deb https://download.sublimetex..

Study/개발 Tool 2022.01.29

[Linux] 리눅스 터미널로 파일/디렉토리 복사하기 / CP 사용법

cp cp의 뜻은 copy의 줄임말로 파일이나 디렉토리를 복사할 때 사용하는 명령어입니다. cp [옵션][복사 할 디렉토리/파일][복사 될 디렉토리/파일] 현재 디렉토리에 있는 test.txt 파일을 new_test.txt라는 이름으로 현 위치에 복사 ex) cp test.txt new_test.txt /user/jtaewu 경로의 test.txt 파일을 new_test.txt라는 이름으로 현재 위치에 복사 ex) cp /user/jtaewu/test.txt new_test.txt /user/jtaewu 경로의 test.txt 파일을 new_test.txt라는 이름으로 /user/guest에 복사 ex) cp /user/jtaewu/test.txt /user/guest/new_test.txt cp 명령어..

Study/Linux 2022.01.29
반응형