일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 세부
- 어드벤스
- 엘든링
- hybride
- ubuntu
- poe2
- PostgreSQL
- Front-end
- 여행
- JS
- 뱀파이어서바이벌
- 스쿠버다이빙
- 야생의숨결
- 다이빙
- JavaScript
- 게임
- guide
- 오픈워터
- 공략
- WebView
- window10
- 페오엑
- docker
- 취미
- psql
- 씨홀스
- 개발툴
- Linux
- 젤다의전설
- window
- Today
- Total
목록RianShin (177)
Rianshin
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bHZ3pd/btqMhtPSoc9/kq7w8lYBR8ifiIjqtyi2Sk/img.png)
console 객체는 브라우저의 디버깅 콘솔(Firefox 웹 콘솔 등)에 접근할 수 있는 메서드를 제공합니다. 동작 방식은 브라우저마다 다르지만, 사실상 표준으로 여겨지는 기능도 여럿 있습니다. console 객체는 아무 전역 객체에서나 접근할 수 있습니다. 브라우징 문맥에선 Window, 워커에서는 WorkerGlobalScope이 속성으로 포함하고 있습니다. Window.console의 형태로 노출되어 있으므로 간단하게 console로 참조할 수 있습니다. console.log("링크를 열 수 없습니다") 메서드 console.assert() - 첫 번째 매개변수가 false인 경우 메시지와 스택 추적을 출력합니다. console.clear() - 콘솔의 내용을 지웁니다. console.count(..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bu1AFO/btqMeELoMed/12mKAkhJ0qwXCwxRwGa4r0/img.png)
자바스크립트 문서화를 위한 "jsdoc toolkit" 사용법 및 예제 1. jsdoc tookit-2.4.0.zip(현재 버전 기준)을 다운받아 적당한 위치에 압축을 해제한다. 2. jsdoc toolkit 실행 Mac OS 기준: 터미널 접근 후 해당 폴더(jsdoc tookit 루트 폴더)에 위치하여 아래 명령어를 실행한다. java -jar jsrun.jar app/run.js javascript_doc_test.js(jsdoc을 활용해 변환시킬 *.js 파일) t=templates/jsdoc -d="out"(이와 같이 디렉토리를 지정(-d="out")하면 현재 위치(jsdoc 루트 폴더)에 ".out" 폴더가 생성되며, 그 아래 index.html(root file), symbols(하위 fil..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bGxumb/btqMknPa3e8/58JW29mvnQsGpiCGcGmsf0/img.png)
Hello AngularJS AngularJS의 시작하기전에 Hello AngularJs를 출력하는 소스를 보자. [Other HTML] helloworld [AngularJS] {{greeting}} [AngularJS MVC] {{greeting}} AngularJS 기본 개념 AngularJS를 쉽게 이해하기 위해서 알아두어야 할 기본 개념으로 다음과 같이 5가지를 선정하였고 간단하게 설명하겠다. 1. Scope(AngularJS 2.0 update시 삭제 예정) - Scope는 모델 변경을 감지하고 표현하기위한 책임을 갖는다. - Scope는 DOM 구조와 가깝게 하이어라키 구조를 갖는다(하이어라키 구조는 아래의 그림을 참고^^;) Hello {{name}}! {{name}} 해당 소스에 대해서 ..
var Request = function() { this.getParameter = function(name) { var rtnval = ""; var nowAddress = unescape(location.href); var parameters = (nowAddress.slice(nowAddress.indexOf("?") + 1, nowAddress.length)).split("&"); for (var i = 0; i < parameters.length; i++) { var varName = parameters[i].split("=")[0]; if (varName.toUpperCase() == name.toUpperCase()) { rtnval = parameters[i].split("=")[1]; b..
var orgOpen = window.open; var openkakao; window.open = function (...args) { var getArgs = args; if(getArgs[0].indexOf('kakao.com') >= 0){ openkakao = orgOpen(...args); var timer = setInterval(function() { if(openkakao.closed) { if(document.querySelector("html").style.overflow == "hidden" || document.querySelector("body").style.overflow == "hidden"){ document.querySelector("html").removeAttribut..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/L6fw6/btqMehiA0J9/saVdxFUI7fw2nBeKHAzzw1/img.png)
Git config 설정 확인 git config --list Git username, email 변경 - git config 삭제 git config --unset user.name git config --unset user.email - git gloval 등록 git config --global user.name "RianShin" git config --global user.email "RianShin@gmail.com"
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bKd9gN/btqVIb6qk21/qKMhSaMRequokKBFkbL66k/img.png)
1. 준비사항 1.1 Apache 설치 레드마인(Redmine)을 설치하기전 Apache를 설치합니다. Apache를 설치하기 위해 다음 명령을 수행합니다. $ sudo apt-get install apache2 libapache2-mod-passenger 1.2 MySQL 설치 MySQL을 설치하기 위해 다음 명령을 수행합니다. $ sudo apt-get install mysql-server mysql-client MySQL 설치 중 root 사용자 패스워드를 묻습니다. 적당한 패스워드를 입력합니다. 2. 레드마인(Redmine) 설치 2.1 레드마인(Redmine) 설치 Redmine MySQL 버전을 설치하기 위해 다음 명령을 수행합니다. $ sudo apt-get install redmine re..