일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- VAR
- boolean
- Let
- createElement
- const
- input
- htmlFor
- createtextnode
- appendChild
- 학습법 #집중력
- Openlayers
- Append
- FOR
- Today
- Total
목록IT (179)
Atomic Habits
JQuery오 ㅏ강합게 결합 / 반응형 웹 개발에 특화 프런트엔드 오픈 소스 툴킷 - w3c bootstrap https://www.w3schools.com/bootstrap/ - 리액트 전용 부트스트랩 https://react-bootstrap.github.io/ CSS {/* The following line can be included in your src/index.js or App.js file*/} import 'bootstrap/dist/css/bootstrap.min.css'; - 테마 https://react-bootstrap.github.io/getting-started/theming/
http://www.databaser.net/moniwiki/wiki.php/SQLLoader%EC%82%AC%EC%9A%A9%EB%B0%A9%EB%B2%95 DataBaser.Net: SQL Loader사용방법 Describe SQLLoader사용방법 here ============ SQL * Loader ============ 이 툴을 만지리라 생각하셨다면..이미 테이블에 대한 설계가 끝난 상태일 것입니다.. 난 아닌디....하시는 분은... 머..기냥 보시구여.. SQL* www.databaser.net ============ SQL * Loader ============ 이 툴을 만지리라 생각하셨다면..이미 테이블에 대한 설계가 끝난 상태일 것입니다.. 난 아닌디....하시는 분은... 머..기냥..
[ start.txt ] load data infile '/opt/oracle/departments.dat' // import할 데이터의 절대 경로 입력 가능 'test3.csv' // 여러 파일 입력 가능 'test4.csv' // cmd 창의 경로가 import할 데이터 파일이 있는 위치라면 '파일명.확장자' append into table hr.dept_loader fields terminated by ',' ( department_id ,department_name ,manager_id ,localtion_id ) [ cmd / linux 실행 ] c:\it\test\> sqlldr see/see control=start.txt direct=true log='log.txt' // 오라클 계정 / ..
오라클 sqlplus에서 spool 기능을 사용하여 결과를 텍스트로 저장하고 컬럼 조회 결과마다 컴마(,)로 출력하는 방법을 사용한다면 엑셀에서도 열어서 보기 편하게 볼수 있답니다. 데이터베이스 조회 결과를 "C:\spooltest.txt"로 저장하는 예제를 설명하도록 하겠습니다. UNIX AIX 등에서는 경로를 지정하지 않으면 sqlplus를 실행한 경로에 파일이 만들어 집니다 다음과 같이 오라클 예제 스키마인 scott로 접속해보도록 할께요. SQLPLUS scott/tiger sqlplus에서 DB에 접속하였으면 다음과 같이 입력해 주세요. set echo off set trimspool on set pagesize 0 set feedback off spool c:\spooltest.txt 스풀(s..
- 오라클 이전버전 설치하기 https://yeonyeon.tistory.com/11
export / import ====================================== - 오라클 export import 백업 복구 exp imp | 작성자 뽀얀여우 https://blog.naver.com/sswhite74/50114234318 - [Oracle | 오라클] DB 덤프/임포트 하기(심플) https://tenlie10.tistory.com/35 - oracle exp/imp 옵션 정리 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=crossb&logNo=117817151 - 오라클 30gb 정통 export import 테스트, 시간 측정 https://positivemh.tistory.com/449..
- 컴포넌트 리턴 방식이 아닌, 정해진 CSS효과를 클래스 네임으로 지정해서 적용한다. - https://tailwindcss.com/ - IntelliSense extension for VS Code를 이용하면 많은 클레스네임을 쉽게 확인하고 지정할 수 있다. - https://tailwindcss.com/docs/guides/create-react-app -
[MyIcon.jsx] import React from 'react' import { Icon } from "@material-ui/core"; import ICONS from '../../imgs/playbtn.svg'; // 방법1 const Logo = () => ( ); export default Logo; // 방법2 // const Logo = () => { // return ( // // // // ) // } // export default Logo; // 방법3 // export default function Logo() { // return ( // // // // ) // } [ShowIcon.jsx] import * as React from 'react'; import Loading..
Eclipse HTML 수정 즉시 반영(html, js, jsp ...) publish to the server (단축키 : Ctrl + Alt + P) VSCode 단축키 설정 - C k s 한줄 만들기- 아랫줄아래줄 끌어올리기 (Join Lines) - C f k (임의 지정) 정렬 - C k f 긴 라인 한 화면에 보기 - A z 전체 파일들 중에 찾기 - C S f 좌측 탐색창 숨김/해제 - C b 대문자 만들기 - S u p (Upper 임의 지정) 대문자 만들기 - S l o (Lower 임의 지정) 태그 변경 - S A r (updateTag 임의 지정) 들여쓰기 - tab 내어쓰기 - S tab 이전 작업부분으로 이동 - A +영역 펼치기 닫기 -C S [ / C S ] 괄호 범위 끝으로 ..
○ Exam GIthub 자료 - https://github.com/mui-org/material-ui/tree/master/examples/create-react-app How to use Download the example or clone the repo: curl https://codeload.github.com/mui-org/material-ui/tar.gz/master | tar -xz --strip=2 material-ui-master/examples/create-react-app cd create-react-app Install it and run: npm install npm start ○ https://mui.com/getting-started/usage/ - USAGE에 보면 추가할 ..