[자취방 클라우드] 홈서버 네트워크 구성하기
서론 지난 포스팅에 이어서, 노트북에 우분투를 설치하였으니, 이를 외부 접속이 가능한 서버로 세팅을 해주어야 한다. 외부 접속을 위해선, 우리의 자취방에 하나씩은 있는 아래의 포트에 대한 이해가 필요하다. 현재 자취방 랜포트 이런 자취방에 있는 랜포트들은 원룸 건물주님께서 ISP(SKT, KT, LG U+)의 인터넷 서비스에 가입을 하여 ...
서론 지난 포스팅에 이어서, 노트북에 우분투를 설치하였으니, 이를 외부 접속이 가능한 서버로 세팅을 해주어야 한다. 외부 접속을 위해선, 우리의 자취방에 하나씩은 있는 아래의 포트에 대한 이해가 필요하다. 현재 자취방 랜포트 이런 자취방에 있는 랜포트들은 원룸 건물주님께서 ISP(SKT, KT, LG U+)의 인터넷 서비스에 가입을 하여 ...
나는 군대를 전역하고 Lenovo IdeaPad 노트북을 사서 잘쓰고 있었다. 그 노트북은 1년 전 맥북을 사기 전까지만해도 내 주력 노트북이었지만 이제는 맥북에 밀려 고물 신세가 되었다. 서론 4학년이 되면서, 웹 서비스를 만들 일이 많아졌고, 지금까지는 azure 교육 요금제 또는 AWS 프리티어를 이용해서 호스팅을 하고 있었다. 나는 백엔...
문제 설명: Given an integer array arr, count how many elements x there are, such that x + 1 is also in arr. If there are duplicates in arr, count them separately. 제약 사항: 1 <= arr.length <= 10...
문제 설명: Given an array nums containing n distinct numbers in the range [0, n], return the only number in the range that is missing from the array. 제약 조건: n == nums.length 1 <= n <= 10^4 ...
문제 설명: Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node. Note: A leaf is a node with ...
문제 설명: A pangram is a sentence where every letter of the English alphabet appears at least once. Given a string sentence containing only lowercase English letters, return true if sentence is a pan...
문제 설명: Given a string s consisting of lowercase English letters, return the first letter to appear twice. 참고사항: A letter a appears twice before another letter b if the second occurrence of a is...