일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Linux
- window10
- JS
- hybride
- poe2
- 스쿠버다이빙
- ubuntu
- 다이빙
- 뱀파이어서바이벌
- guide
- Front-end
- window
- docker
- JavaScript
- 공략
- 젤다의전설
- 취미
- 오픈워터
- 페오엑
- 씨홀스
- 여행
- 개발툴
- 야생의숨결
- PostgreSQL
- psql
- WebView
- 게임
- 세부
- 엘든링
- 어드벤스
- Today
- Total
목록Develop (118)
Rianshin
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..
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"
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..
IOS >= 9.0부터 touch이벤트 내에서 window.open 사용 X touch event 대신 click event로 쓸것.
:::내부::: :::외부::: ▶ 버튼에 스크립트 삽입 ▶ 버튼에 스크립트 삽입 ▶ 외부에서 가져오기 :::Window객체::: window.defaultStatus▶ 상태 표시줄에 표시할 문자열의 초기 값 설정 window.frames▶ 창에 포함된 프레임을 배열 형태로 지정 window.opener▶ 오픈메소드를 사용해서 새 상츨 열었을 경우, 새 창을 열도록 한 문서를 가리킴 window.parent▶ 상위 프레임을 가리킴 window.self▶ 현재 작업중인창 window.top▶ 프레임이 설정되기 전에 상태로 돌아감 window.classes▶ 문서 안에 정의된 모든 스타일시트의 정보를 갖음 window.tags▶ 모든 태그의 정보를 나타냄 window.screenX▶ 창의 x좌표 반환 win..
https://colorscripter.com/s/V0ntYWJ 공유된 코드 - Color Scripter 저작권자 : boarderrian@gmail.com 코드 설명 : facebook login colorscripter.com FB.login(function(response){ console.log(JSON.stringify(response, null, 8)) FB.api('/me', {fields: 'email, id'}, function(response) { response.sns_type = "facebook" response.email = response.id; console.log('[FB userInfo]' + JSON.stringify(response, null, 8)); if(resp..