08년 2월 기준. 우선 내 컴퓨터는 홈에디션을 깐다음 프로페셔널로 업그레이드한 버전이라 윈도우가 불안정 한것 같았다. 거기다 계속 윈도우 업데이트에 실패하자, 하루 날잡고 고쳐야겠다고 마음먹고 이런저런 시도를 해봤다. 그러다 결국 NTDLR is missing. 부팅파일이 날아간 것이었다. 난 윈도우 시디를 넣고, 부팅파일을 복구를 시작했다. fixboot. fixmbr이라고 치고 실행시키는 순간, 뭔가 이상하다는 느낌이 들었다. 부팅파일만 손상되었는데 파티션얘기가 왜나오지. 라고 생각하는순간. 파티션은 mbr은 손상되어버렸고, (난 기존 파티션을 기본과 논리 2개로 나누어서 쓰고있었다) 부팅이 안되는 것이 아니라 Invailid Partition Table. 즉 파티션 정보가 꼬인 것이다. 하지만 그..
09년 1월 기준. // 버튼2개, PictureBox 1개 Bitmap fullimg; // 합친 이미지 저장할 곳 private void btnOpen_Click(object sender, EventArgs e) // 파일 열기 버튼 { OpenFileDialog ofd = new OpenFileDialog(); ofd.Multiselect = true; // 파일 여러개 선택하기 ofd.Filter = "BMP파일(*.bmp)|*.bmp|JPG파일(*.jpg)|*.jpg|PNG파일(*.png)|*.png|GIF파일(*.gif)|*.gif"; if (ofd.ShowDialog() == DialogResult.OK) { Bitmap[] img = new Bitmap[ofd.FileNames.Length..
23년 9월 기준. 리눅스 설치 curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install aws --version aws-cli/2.7.9 Python/3.9.11 Linux/5.13.0-51-generic exe/x86_64.ubuntu.20 prompt/off rm -f awscliv2.zip # 설치 후, zip 삭제. which aws /usr/local/bin/aws sudo ./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update // 업데이트 리눅스 ..
/* * bitAnd - x&y using only ~ and | * Example: bitAnd(6, 5) = 4 * Legal ops: ~ | * Max ops: 8 * Rating: 1 */ int bitAnd(int x, int y) { return ~(~x|~y); } /* * bitXor - x^y using only ~ and & * Example: bitXor(4, 5) = 1 * Legal ops: ~ & * Max ops: 14 * Rating: 2 */ int bitXor(int x, int y) { return (~(~x&~y))&(~(x&y)); } /* * evenBits - return word with all even-numbered bits set to 1 * Legal o..
11년 8월 기준. // JSP의 if안에 html은 되어도 자바스크립트의 if안의 JSP는 되지 않는다. 성공 에러 if(str == "") { } // if 안됨. 바로 sendRedirect를 실행해버린다. if(str == "") { location.href = "login.jsp"; } // 자바스크립트 페이지 이동 if(save_id == "on")대신 if(save_id.equals("on"))으로 해야 인식된다. // A == B 의 비교는 같은 저장 공간에 있는지만 비교한다. ex) String A = "test"; String B = "test"; if (A == B) // false if (A.equals(B)) // true