공CD가 아닌데 디스크에 쓸 준비가 된 파일 목록이 나타날 때가 있다. 최악의 경우는 디스크에 쓸 준비가 된 파일 목록의 폴더명과 기존 CD의 폴더명이 중복되는 경우이다. 예를 들면 읽어들인 CD에 js 폴더가 있는데 디스크에 쓸 준비가 된 파일 목록에도 js 폴더가 있을 경우, 디스크에 쓸 준비가 된 파일 목록에서만 js 폴더가 보인다. 이래저래 복잡한 상황이다.결론:CD를 읽었는데 이전에 CD를 구울 때 작업했던 목록이 뜰 경우 CD 드라이브를 우클릭해서 임시 파일 제거 메뉴를 누르면 된다. 깔끔하게 디스크에 쓸 준비가 된 파일 목록만 지워진다.
${aMap.aAttr == 'A'}결과: "cannot convert M of type class java.lang.string to class java.lang.long ..."첫째 줄의 테스트 구문에서 위와 같은 에러가 발생했다. 디버깅했을 때 aAttr 값은 'A'였는데, 특이사항은 aAttr의 타입이 char 타입이었다. 검색해보니 char 타입인 경우 String 타입과 비교할 때 위와 같은 에러가 발생한다고 한다. 해결방법은 아래 코드로 변경해주는 것이다.${fn:contains(aMap.aAttr, 'A')}
출처: https://ourcodeworld.com/articles/read/140/top-5-best-code-syntax-highlighter-javascript-plugins개발블로그에서 가장 중요한 요소 중 하나가 문법강조(Code Highlight) 기능을 사용해서 코드를 올릴 수 있는가이다. 다음은 중요 기능이 있고, 사용하기 쉬우며, 테마를 고를 수 있는 문법강조 JS 플러그인들이며, VanillaJS 위에서 동작한다.1. Prism.js - http://prismjs.com/2. highlight.js - https://highlightjs.org/3. Rainbow - https://craig.is/making/rainbows4. SyntaxHighlighter - http://alexg..
쿠키제거 출처: https://stackoverflow.com/questions/10593013/delete-cookie-by-name function set_cookie(name, value) { document.cookie = name +'='+ value +'; Path=/;'; } function delete_cookie(name) { document.cookie = name +'=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;'; }
출처: https://stackoverflow.com/questions/18981909/how-to-show-a-running-progress-bar-while-page-is-loading페이지 로딩중 관련 JSNProgress http://ricostacruz.com/nprogress/ PACE http://github.hubspot.com/pace/docs/welcome/Onextrapixel http://onextrapixel.com/examples/youtube-like-ajax-loading-bar/index5.html
- Total
- Today
- Yesterday