분류 전체보기(6)
-
Communication method
1. communication methods in LAN Most method in LAN communication is Uni-Cast, Which sends data to specific computer by including destination MAC address. Broad-Cast spreads data to all computers which on its group. Multi-Cast is the combination of Broad-Cast and Uni-Cast. That can sends to specific group, and it excepts other group. It means there's no effect to any other groups. 2. CRC example ..
2023.11.02 -
Network Configuration 2
Network connecting shape ( castle type ); Most Normally type of Net Configuration. Hub connects any other nodes, and its be located in center position. This means communication quality{ process ability, reliability } will be depended by hub. In addition, cable issue occurs only that route. Network enviroment will be safe in that situation. Frequency band is important to communicate with each env..
2023.11.02 -
Network Configuration
#Dummy hub Data transmission to other computers. It's just relaying network between them. Hub uses entire network bandwidth. So It means if you add more devices, they divide the capacity in limited resource. Conclusion : Network speed might be degraded when it exceeds threshold. That was called by "Network Traffic". (P.s. When you want to construct computer net, Make nodes below 10.) #Router Eve..
2023.11.02 -
C++ : Operator Overloading
클래스간 연산을 더하는 로직에서 대부분 클래스 오퍼레이션을 별도로 선언하여 사용하게 된다. 이러한 방식은 직관성을 해치므로 이를 타파하기 위해 도입된 개념이 바로 연산자 오버로딩이다. 사용 방식은 반환형 operator연산자(매개변수 리스트){ 연산자 동작 재정의 }로 수행하면 된다. 접근 방식은 클래스 멤버 함수로 오버로딩, 전역 함수로 오버로딩을 가능케 할 수 있다. 단, 전역 함수는 클래스 내부 friend 선언을 통해 멤버변수 접근을 허용해야 한다. Point operator+(const Point& p1, const Point& p2){ Point pt(p1.x+p2.x, p1.y+p2.y); return pt; } 와 같이 오버로딩시 Point P3 = P1+P2; 가 가능하다. 아래는 연산자..
2023.10.31 -
About Network
네트워크는 전송 데이터를 패킷화한다. 패킷이란 일련의 데이터를 이진 문자 체계로 직렬화하여 보내는 것이다. 간단한 예시로 Jin이라는 문자를 누군가에게 보낸다고 가정을 해보자. J : 1001010 i : 1101001 n : 1101110 과 같이 문자열이 이진수로 변환된다. 이를 전송할때 '헤더'라고 지칭하는 데이터를 더해준다. ( 해당 교과목에서는 약식으로 문자열 순서에 따라 1, 2, 3이라고 가정을 한다. ) 이렇게 분할된 데이터를 홀수 패리티 방식을 적용해 전송한다. 전송된 데이터는 네트워크의 상황에 따라 랜덤하게 도착한다. 무작위로 흩뿌려진 데이터를 퍼즐조각처럼 끼워맞추기 위해 패킷의 헤더를 토대로 데이터를 재해석한다. 이와 같은 과정으로 수신자는 Jin이라는 원본 문자열을 그대로 받는다. ..
2023.10.31 -
처음만큼 어려운 일도 없듯이,
인생을 살아가며 문득 느끼는 의문감은 나는 대체 무엇인가? 라는 질문이었다. 어수룩한 말주변과 잘난 것 없는 나라는 사람은 매번 나를 벼랑끝으로 몰아 세웠고, 스스로를 미워했다. 사랑 받는 법이 어색해서 매번 밀어내기 일수였고, 그렇기에 남들에게 잊혀지는게 익숙했다. 그러나 어둠이 가까워 질때면 이따금씩 손을 뻗어 이 늪에서 누군가 나를 잡아주기를 매일 염원한다. 모자라고 게으른 스스로를 알면서도 외면하는 나 자신을 누가 사랑해주긴 할까. 밀어내지 않는 방법을 배우고자 첫 돛단배를 띄워 보낸다. 다시금 뒤를 돌아보지 않길 바라는 마음에서, 손으로 그 끝을 살짝 밀어본다.
2023.10.31