일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- 커맨드공부
- 디미터 법칙
- 폭포수 모형
- 에자일 모형
- was SQLRecoverableException
- avax.net.ssl.SSLHandshakeException:
- java.sql.SQLRecoverableException
- mysql 튜닝
- OpenAPI
- 명령어공부
- 스크럼기법
- vue
- 시스템 파악
- was버그
- 프로토타입 모형
- Bandit Level 6 → Level 7
- 클린코드
- 나선형 모형
- Law of Demeter
- Bandit Level 5
- table scan
- SQLRecoverableException
- Bandit Level 6
- 시스템 파악 정리
- 변수명 짓는법
- springboot
- pl/sql
- CSS
- 인증서만료에러
- plsql
- Today
- Total
목록분류 전체보기 (96)
개발햄비
아래와 같은 오류 발생 internal/modules/cjs/loader.js:615 throw err; ^ Error: Cannot find module 'semver' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:613:15) at Function.Module._load (internal/modules/cjs/loader.js:539:25) at Module.require (internal/modules/cjs/loader.js:667:17) at require (internal/modules/cjs/helpers.js:20:18) at Object. (/Users/ihanbi/Desktop/vue_SpringBoot/fro..
3 3 1 1 2 2 4 4 5 5 6 6 7 7 1 2 3 4 5 6 7 8 9 10 11 1 1 1 1 1 1 1 1 1 1 1
HTML 코드 Exchange_Rate Favorites Sent Draft CSS input[type="checkbox"]#menu_state { display: none; } input[type="checkbox"]:checked ~ nav { width: 250px; } input[type="checkbox"]:checked ~ nav label[for="menu_state"] i::before { content: "\f053"; } input[type="checkbox"]:checked ~ nav ul { width: 100%; } input[type="checkbox"]:checked ~ nav ul li a i { border-right: 1px solid #2f343e; } input[typ..
#display block 1 1 1 spanBox에 display : block 을 지정해줍니다 그러면 속성에 의해서 옆에 다른 spanBox가 오지못하도록 block (블럭)해버립니다 때문에 사진과 같이 세로열을 가지게 됩니다 #inline-block 1 1 1 spanBox에 display : inline-block 을 지정해줍니다 그러면 속성에 의해서 가로열을 가지게 됩니다 서로서로 붙습니다. 하지만 옆에 더이상 있을 공간이 없을 경우 밑으로 내려가게 됩니다. #inline display: inline 속성은 기존의 설정값을 지웁니다. 1 1 1
_API 소개 _ 환율 정보를 제공하는 API입니다. API 정보 Query API https://earthquake.kr:23490/query/대상통화 예시 코드 const exchange = document.querySelector(".js-Exchange") const JPYKRW = "JPYKRW" const KRW_EXCHANGE = 100 // 날씨 취득하기 function getExchange() { // API 호출 패스 fetch( `https://earthquake.kr:23490/query/${JPYKRW}` ) .then(function (response) { // fetch작업이 끝날 때까지 기다림. return response.json() }) .then(function (jso..
const data \= new Uint8Array(Buffer.from('Hello Node.js')); fs.writeFile('message.txt', data, (err) \=> { if (err) throw err; console.log('The file has been saved!'); }); create if (pathname === '/create') { fs.readdir('./data',function( error,filelist){ var templat = makeInfo('Web - create',filelist,\` \`); // 200은 성공했다는 의미 response.writeHead(200)..
module.exports 안에 tamplat을 넣고 선언 후 module.exports = { html : function(tatle,list,body,data){ return \` Web ${list} ${data} ${body} \`; },list :function(filelist){ var list = ''; var i = 0 while (i< filelist.length) { list = list + \`${filelist\[i\]}\`; i= i + 1; } list = list + ''; return list } }부르고자 하는 js파일에 들어간다 (참고로 현재 디렉토리 / lib / templat.,js을 만들었다) var templat = require(..