본문 바로가기

분류 전체보기

Images Slide(HTML + CSS) 출처 : Youtube > DarkCode 채널 .content-area{ margin: 0; padding: 0; background: #34495e; height: 680px; } .slidershow{ width: 700px; height: 400px; overflow: hidden; } .middle{ position: absolute; top: 31%; left: 41%; transform: translate(-50%, -50%); } .navigation{ position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; } .bar{ width: 50px; height: 10px; border: 2p.. 더보기
Login Form(HTML+CSS) Login 출처 : Youtube > DarkCode 채널 #contentBody { margin: 0; padding: 0; font-family: sans-serif; background: #34495e; height: 500px; } .box{ width: 300px; padding: 40px; position: absolute; top: 35%; left: 40%; transform: translate(-50%, -50%); background: #191919; text-align: center; } .box h1{ color: white; text-transform: uppercase; font-weight: 500; } .box input[type="text"], .box input[type=.. 더보기
Calculator(CSS+Script) c / * 7 8 9 - 4 5 6 + 3 2 1 0 00 . = 출처 : Youtube > Online Tutorials 채널 * { margin: 0px; padding: 0px; box-sizing: border-box; font-family: 'Poppins', sans-serif; } .body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #091921; } .calculator{ position: relative; display: grid; } .calculator .value{ grid-column: span 4; height: 100px; text-align: right.. 더보기
1. Installation ※ Liferay 7.2는 JDK 1.8과 JDK 1.11 버전을 지원하므로 미리 사용할 JDK를 다운로드받아 설치하도록한다. 1. 개발환경 구축에 필요한 설치 파일 다운로드 1) liferay.com 사이트 > Resource > Community Downloads 메뉴를 선택 2) 7.2 버전을 다운로드 받아야 하므로 'SourceForge' 텍스트를 클릭 3) portal tomcat을 다운로드 받기 * 본인이 설치하고 싶은 경로에 압축풀기 4) Community Downloads 페이지에서 스크롤을 내려 Liferay IDE(통합 개발 환경) 클릭 5) 이동한 커뮤니티 사이트의 'Install it now' 메뉴를 통해 IDE를 다운로드 받기 2. 개발 환경(IDE) 설치 1) 다운로드 받은 ID.. 더보기
Clock(CSS+Script) 출처 : Youtube > Online Tutorials 채널 * { margin: 0; padding: 0; box-sizing: border-box; } .clock-display { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #091921; } .clock { width: 350px; height: 350px; display: flex; justify-content: center; align-items: center; background: url('https://k.kakaocdn.net/dn/bmbaGK/btqCGRfo808/dAlVtVwx5KjNGJBuHktRX0/img.pn.. 더보기
1_커널(Kernel) 커널은 운영체제의 핵심 사람의 두뇌와 같은 역할 메모리에 상주하면서 OS 또는 Application 수행에 필요한 환경 설정 하드웨어 제어 실행에 필요한 서비스 제공 프로세스 스케줄링 더보기
0_운영체제란? 운영체제(OS, Operating System) 사용자와 H/W 간 인터페이스 담당 여러분이 키보드를 입력하면 무슨 글자를 입력했는지 컴퓨터에 알려줘요. S/W와 H/W 간 실행 환경 제공 지금 보고있는 화면(웹 브라우저)을 모니터에 출력할 수 있도록 해줘요. 자원 관리 메모리, CPU 등의 자원을 어떻게 할당할지 결정해줘요. 운영체제 역할 사용자와 H/W 간 인터페이스 제공 사용자들이 데이터 공유 다중 사용자(Multi User) 다중 작업(Multi Tasking) 자원 스케줄링 입출력 보조 역할 오류 처리 운영체제 목적 사용자 편의성 제공 시스템 성능 향상 처리 능력 : 단위 시간당 처리하는 작업량 신뢰도 : 기능 수행 성공확률 실패 없이 기능을 수행할 수 있는 능력 응답시간 : 작업 요청 후 결과.. 더보기
0. JAVA란? # Java 유래 1991년 제임스 고슬링(James Gosling)과 Sun Microsystems 연구팀에 의해 만들어진 Programming 언어. 가정용 전자제품에 사용하기 위한 언어로 개발 CPU에 의존하지 않도록 가상 기계(Virtual Machine) 개념 도입 웹 프로그램 개발에 많이 사용되고 있는 언어 # Java Platform 프로그램이 실행되는 하드웨어나 소프트웨어 환경 자바 가상 기계(JVM, Java Virtual Machine)과 응용 프로그래밍 인터페이스(API, Application Programming Interface)로 구성 # Java 특징 Simple Object Oriented High Performance : JIT(Just-in-time) Compiler 개념.. 더보기