17년 2월 기준. License server에 해당주소 넣고 인증 http://jetbrains.tech/ Can't use Subversion command line client // svn에 command line client tools 추가 설치 후 경로 잡아줌 // ex)C:\Program Files\TortoiseSVN\bin\svn.exe ftp 서버 ctrl+ s 자동 저장 File-Settings-Deploymentoptions Upload changed files automatically to the default server탭의 On explicit save action (Ctrl+S) 변경 Default server is not configured가 뜰 경우 Tools-deploym..
17년 2월 기준. .gitattributes # Auto detect text files and perform LF normalization * text=auto # Custom for Visual Studio *.cs diff=csharp *.sln merge=union *.csproj merge=union *.vbproj merge=union *.fsproj merge=union *.dbproj merge=union # Standard to msysgit *.doc diff=astextplain *.DOC diff=astextplain *.docx diff=astextplain *.DOCX diff=astextplain *.dot diff=astextplain *.DOT diff=astextplai..
17년 3월 기준. // ui-view로 렌더링. template 연결 안될때 ui-view 위치 확인. .state('topology', { url: '/topology', templateUrl: 'templates/dashboard.html' }) .state('topology.regionId', { url: '/:regionId', templateUrl: 'templates/topology.regionId.html', controller: function ($stateParams) { console.log($stateParams.regionId); } }) // route 하위 경로 및 파라미터 설정. topology.regionId 하위경로를 나타내는 네이밍 지켜서 route, template 설..
21년 10월 기준. File-New // master password 및 database 생성. Add Entry // 아이디, 비밀번호, URL 입력 Ctrl+B 아이디 복사 Ctrl+C 비밀번호 복사 Auto-Type-Target Window-Add // 수정되어도 작동하게 *사이트명* 설정 Ctrl+Alt+A 아이디 패스워드 입력 및 엔터처리 Ctrl+Alt+Shift+A 패스워드만 입력(2.34버전엔 없는듯) user name, password중 하나만 입력도 가능, password만 넣어서 사용시 엔터처리 안됨. user name에 password를 넣으면 엔터처리까지 가능.(2차 비밀번호) Auto-Type에 패스워드 엔터만 설정 시 이전 기록이 남아서 겹치는 경우 이름을 다르게 해서 생성해..
17년 2월 기준. to_char(to_timestamp(createtime/1000), 'YYYY/MM/DD HH24:MI:SS') // bitint date타입 변환 SELECT * FROM TABLE_NAME LIMIT 10; // 처음 10개의 Row를 반환 SELECT * FROM TABLE_NAME LIMIT 10 OFFSET 0; // 처음(OFFSET 0) 10개의 Row를 반환 SELECT * FROM TABLE_NAME LIMIT 10 OFFSET 10; // 11번째 부터 10개의 Row를 반환 TO_CHAR(STARTTIME,'YYYY/MM') column "stat_call_hour.starttime" must appear in the GROUP BY clause or be use..
20년 4월 기준. echo -e "Test\n\nContent" > content sendmail test@test.com < content // sendmail yum install mailx // mail 설치 mail -s "Test" test@test.com // 명령어 실행, 내용 입력 후, Ctrl+D. ls -l /var/spool/mail // 받은 메일은 해당경로 ID폴더에 저장됨 echo "System OK" | mail -s "System Check" test@test.com cat result_system_check | mail -s "System Check" test@test.com // cat으로 사용 mail -a /etc/test.txt -s "subject" test@te..
21년 11월 기준. 설정-브라우저 디스플레이-즐겨찾기 모음 표시-항상 // 즐겨찾기 표시 익스플로러 주소옆 아이콘 작업표시줄로 드래그 // 작업표시줄 바로가기 추가 파일 인코딩 변경 지원 안함.(css나 js 같은거 다운 받아서 확인하는 수밖에 없는듯) 새 탭 페이지 열기 // 현재 열린 크롬의 탭까지 다 복사하는듯. 다음의 페이지를 열 수 있습니다. 페이지 about:blank // 이래야 빈페이지 열어짐. 설정-프로필-브라우저 데이터 가져오기-실행할 때마다 브라우저 데이터 가져오기-열린 탭 가져오기 해제 // 크롬 창 복제 해제 엣지 더블클릭으로 select 시, 검색 팝업 뜨는거 안뜨게 설정. ...-메뉴 숨기기-항상 메뉴 숨기기.
23년 11월 기준. GA4 App Stream 생성, Android▼ 왼쪽 상단 눌러서 Project로 변경 후, app 하위경로에 json 드래그 루트 수준(프로젝트 수준)(/build.gradle.kts) id("com.google.gms.google-services") version "4.3.15" apply false 모듈(앱 수준)(//build.gradle.kts) id("com.google.gms.google-services") depencies에 추가 Firebase BOM(bill of Matarials)는 관리패키지 implementation(platform("com.google.firebase:firebase-bom:32.3.1")) implementation("com.google...
24년 1월 기준. npm install --save @react-native-firebase/app npm install --save @react-native-firebase/analytics // npm firebase 설치. Android 패키지 이름 android\app\build.gradle에서 applicationId "com.reactnative" 확인후 입력. 앱 닉네임 reactnative 입력. 프로젝트 경로에서 keytool -J-Duser.language=en -list -v -alias androiddebugkey -keystore ./android/app/debug.keystore 입력해서 SHA1 확인후 입력. google-services.json android/app경로에 복..