본문 바로가기

분류 전체보기

(101)
react-native 안드로이드 SDK 경로 에러 FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not determine the dependencies of null. > SDK location not found. Define a valid SDK location with an ANDROID_HOME environment variable or by setting the sdk.dir path in your project's local properties file at '/Users/ck/git/September/september_front/..
리액트 네이티브 SDK location not found 에러 FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not determine the dependencies of null. > SDK location not found. Define a valid SDK location with an ANDROID_HOME environment variable or by setting the sdk.dir path in your project's local properties file at '/Users/ck/git/September/september_front/..
무료전자책 경기도사이버 도서관 https://www.library.kr/cyber/index.do 경기도사이버도서관 경기도사이버도서관 메인 www.library.kr 경기도 주민이라면 무료로 전자책을 대여할수 있는곳!!! 경기도 사이버도서관!! 회원가입만 하면 앱에서든 PC에서든 뷰어를 다운받고 전자책을 무료로 빌릴수 있다!!
TCP/IP의 구성 IP 주소IP 주소: 인터넷에 연결된 호스트 컴퓨터의 유일한 주소로 네트워크 주소와 호스트 주소로 구성되어 있습니다.IPv4 주소: 32비트 주소를 8비트씩 마침표(.)로 구분합니다. 예: 192.168.1.1IPv6 주소: 128비트 주소를 16비트씩 콜론(:)으로 구분합니다. 예: 2001:0db8:85a3:0000:0000:8a2e:0370:7334서브넷 접두사 길이서브넷 접두사 길이: IPv6 주소의 네트워크 주소와 호스트 주소를 구별하기 위해 사용되며, 서브넷 마스크 부분의 길이를 비트로 표현한 것입니다. 예: 64비트 접두사 길이 => /64서브넷 마스크서브넷 마스크: IPv4 주소에서 네트워크 주소와 호스트 주소를 구별하기 위해 사용되는 32비트 주소입니다. IP 주소와 결합하여 사용자의 네..
Java 진법 변환 코드 10진수를 2진수, 8진수, 16진수로 변환하는 Java 코드public class NumberConversion { // 10진수를 2진수로 변환 public static String toBinary(double decimal) { int intPart = (int) decimal; double fracPart = decimal - intPart; String intStr = Integer.toBinaryString(intPart); StringBuilder fracStr = new StringBuilder("."); while (fracPart != 0) { fracPart *= 2; if..
windows 에서 웹서버(apache-httpd) 설치 1. 아파치 다운로드 https://www.apachelounge.com/download/ Apache VS17 binaries and modules download www.apachelounge.com apache를 다운로드 받는다. 2. 압출풀기 C:\ 파로 밑에 압출을 풀었다. 아파치의 경로는 "C:\Apache24" 3.환경변수 설정 윈도우키 + E 또는 탐색창을 새로 하나 띄어주고 주소 표시줄에 제어판\시스템 및 보안\시스템 를 넣어줘서 시스템 창을 띄어준다. 설정 변경을 눌러주어 고급 -> 환경변수 Path 부분 더블클릭 -> 새로 만들기 -> 경로는 아파치 설치경로\bin 필자는 C:\Apache24\bin 가 되겠다. 4.설정 아파치 설치 경로 cont -> httpd.conf 파일을 좀 ..
eclipse 한글 깨짐 1. 이클립실행후 -> Window -> Preferences 2. General -> Workspace -> Text file encoding 을 알맞은 케릭터 셋으로 지정해 주자(대부분 UTF-8)
C# 기본 데이터 형식 C#에서 기본 데이터 형식은 모두 15가지가 있다. 숫자(기본형), 논리(기본형), 문자열(참조형), 오브젝트(참조형) 형식으로 나뉘는데 1.숫자 - 정수 계열 형식 형식 메모 크기 범위 byte 부호 없는 정수 1 byte 0 ~ 255 sbyte signed byte 정수 1 byte -128 ~ 127 (숫자 0 포함) short 정수 2 byte -32,768 ~ 32,767 ushort unsigned short 부호 없는 정수 2 byte 0 ~ 65,535 int 정수 4 byte -2,147,483,648 ~ 2,147,483,647 uint unsigned int 부호 없는 정수 4 byte 0 ~ 4,294,967,295 long 정수 8 byte -9,223,372,036,854,77..