3시 15분에, 아날로그시계의 분침과 시침 사이의 각도는 몇 도인가? 7.5도 // 설명을 하자면, 우선 각 시침 사이의 각도를 떠올려 보자. 360도를 4등분하면 90도, 90도 안에 3개의 시침이 있으므로 각 시침은 30도이다. 그러므로 3시와 4시 사이는 30도이다. 이제 분침인 15분의 각도를 생각해보자. 15분은 360도 분침 중의 정확히 1/4을 지났다. 그러므로 3시와 4시 사이의 시침 역시 1/4을 지나야 함을 알 수 있다. 그러므로 30/4 = 7.5로 정확한 값을 도출해낼 수 있다. - '당신은 구글에서 일할 만큼 똑똑한가?'에서 발췌한 문제. 풀이 및 설명은 내가 함.
네이버 서치 어드바이저(https://searchadvisor.naver.com) 우측 상단 웹마스터 도구-사이트 등록 사이트 소유확인-HTML 태그 // 티스토리에 태그 추가해서 인증. 관리-꾸미기-스킨 편집-html 편집 // 에 태그 추가 검증-URL 검사 미수집 문서입니다. 페이지가 검색될 수 있게 수집 요청해보세요. 수집 요청 누르면 요청-웹 페이지 수집으로 요청됨. 웹마스터 도구-사이트 관리-웹 페이지 수집-수집 요청 URL 입력(https://id.tistory.com) 웹 페이지 수집 요청. 웹마스터 도구-사이트 관리-요청-사이트맵 제출.(https://id.tistory.com/sitemap.xml) 사이트맵을 등록.
크롬 확장도구 Stylish https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe/related?hl=ko 설치후, Editor에 도메인 youtube.com, 아래 스크립트 추가. https://userstyles.org 빈페이지에서 확장 실행안됨. 사이트 접속해야만 수정 가능. @import url(//fonts.googleapis.com/earlyaccess/notosanskr.css); .html5-video-player .captions-text span { font-family: 'Noto Sans KR', sans-serif!important; font..
Firebase 문서에 따르면 앱은 대략 1시간 동안의 이벤트를 모아서 일괄 업로드(배터리 절약 및 네트워크 데이터 사용량을 줄이기 위함). 때문에 DebugView를 사용. https://developer.android.com/studio/releases/platform-tools // 설치 속성-고급 시스템 설정-환경 변수-시스템 변수-Path에 경로(D:\Utility\ADB) 추가 cmd에서 adb 입력해서 확인 adb devices // 장치 확인 adb shell setprop debug.firebase.analytics.app PACKAGE_NAME // 디버그 모드 활성화 adb shell setprop debug.firebase.analytics.app .none. ..
2017년 2월 기준. // ng-model은 value 지정 안됨. // ng-switch-when안에 닫히지 않은 div는 사용할 수 없음 angular.module('app', []) .controller('MainCtrl', ['$scope', function ($scope) {...}]) .controller('UserCtrl', ['$scope', function ($scope) {...}]); var app = angular.module('app', []); app.controller('MainCtrl', ['$scope', function ($scope) {...}]); app.controller('UserCtrl', ['$scope', function ($scope) {...}]); //..
npm install -g bower // 트위터에서 만든 front-end용 패키지 매니저. npm으로 설치. bower install // bower.json 패키지 설치 bower list // bower 리스트 bower search // bower 검색 bower install angular-bootstrap --save // angular-bootstrap 설치. save 옵션으로 bower.json 업데이트 bower install angular-ui-router#0.2.7 --save // angular-ui-router 버전 옵션줘서 설치 bower update // bower.json 업데이트 bower install font-awesome --save // font-awesome 설치..
https://www.npmjs.com/package/wiredep // Wire Bower dependencies to your source code. $ node > require('wiredep')({ src: 'index.html' }); index.html modified. { packages: { jquery: { main: [Object], type: [Object], name: 'jquery', dependencies: {} } }, js: [ 'bower_components/jquery/dist/jquery.js' ] } // js를 주입시키는 npm
npm install -g yo // yo 설치 npm install -g bower // 해당 프로젝트 폴더 bower 설치 npm install -g grunt-cli // 해당 프로젝트 폴더 grunt 설치 chmod g+rwx /usr/local/etc/test chmod g+rwx /root/.npm // 권한 문제시 설정 npm install -g generator-webapp // generator-webapp 설치 npm cache clean // npm 관련 설치 캐쉬 클린 yo webapp // webapp 설치 npm install -g generator-angular // generator-angular 설치 npm install generator-karma // 해당 프로젝트 폴더..