로그인
회원가입
FrostK
노트
php header
관리자
0
8,219
글주소
2018-11-01 14:21:26
×
댓글등록
이름
비밀번호
목록
이전글
다음글
노트
정렬하기
날짜순
조회수
댓글수
제목+내용
제목
내용
회원명
회원아이디
mysql 종류별 count - 하나의 SQL 쿼리로 여러 카운트를 얻는 방법?
`sql SELECT a.distributor_id, (SELECT COUNT(*) FROM myTable WHERE level='personal' and distributor_id = a.distributor_id) as PersonalCount, (SELECT COUNT(*) FROM myTable WHERE level='exec' …
Date
2019-01-09
By
관리자
Views
11,161
mysql 종류별 count - 하나의 SQL 쿼리로 여러 카운트를 얻는 방법?
php 위도 경도 중심점 찾기
PHP Get Center Point from an array of Longitude, Latitudes `php'53.344104','lng'=>'-6.2674937'); $coords[]=array('lat' => '51.5081289','lng'=>'-0.128005'); print…
Date
2018-12-26
By
관리자
Views
8,565
php 위도 경도 중심점 찾기
SFTP 상위폴더 접근 제한하기
`shell >vi /etc/ssh/sshd_config Subsystem sftp /usr/lib/openssh/sftp-server Subsystem sftp internal-sftp Match User test ChrootDirectory /home/test ForceCommand internal-sftp …
Date
2018-12-23
By
관리자
Views
9,535
SFTP 상위폴더 접근 제한하기
Apache 인증으로 PHPMyAdmin의 접속인증 만들어 보기
`shell sudo htpasswd -c /etc/phpmyadmin/.htpasswd mydbadmin ` ` phpMyAdmin default Apache configuration 아래 skdmlelql와 같이 기본 접속 경로를 변경합니다. Alias /skdmlelql /usr/share/phpmyadmin
Date
2018-12-20
By
관리자
Views
8,864
Apache 인증으로 PHPMyAdmin의 접속인증 만들어 보기
IOS whose view is not in the window hierarchy!
error message : >Warning: Attempt to present < finishViewController: 0x1e56e0a0 >on < ViewController: 0x1ec3e000>whose view is not in the window hierarchy! `applescript (void)viewDidLoad { …
Date
2018-12-18
By
관리자
Views
9,174
IOS whose view is not in the window hierarchy!
Multiple commands produced error xcode 10
I found the solution for this build error, for anybody else having the same issue with Xcode 10 build system, follow the following steps to fix it: >1. In Xcode, go to File->Project/Workspace setting…
Date
2018-12-18
By
관리자
Views
8,740
Multiple commands produced error xcode 10
MSSQL 로그 축소 방법 (SQL2008 이후)
SQL2008버젼 부터의 로그 축소방법이 공유된 것이 없어 글을 올립니다. 아래의 쿼리로 보통 로그파일의 용량을 축소하지만, WITH TRUNCATE_ONLY, WITH NO_LOG 옵션은 SQL2008 이후 버젼에서는 지원되지 않습니다. BACKUP LOG MNET_BIlL_DB WITH TRUNCATE_ONLY 를 실행하면 아래와 같은 에…
Date
2018-12-11
By
관리자
Views
9,481
MSSQL 로그 축소 방법 (SQL2008 이후)
Android ACTION_SEND 의도에 맞는 특정 앱을 필터링하는 방법
`java public void shareIntentSpecificApps() { List
intentShareList = new ArrayList
(); Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND); shareIntent…
Date
2018-11-30
By
관리자
Views
10,150
Android ACTION_SEND 의도에 맞는 특정 앱을 필터링하는 방법
Android 다른 App으로부터 Data 받기
Manifest 수정 `xml
Date
2018-11-30
By
관리자
Views
8,428
Android 다른 App으로부터 Data 받기
Android Image to Bitmap
`java try { Image image = ? ByteBuffer buffer = image.getPlanes()[0].getBuffer(); byte[] bytes = new byte[buffer.capacity()]; buffer.get(bytes); Bitmap bitmapImage = BitmapFa…
Date
2018-11-29
By
관리자
Views
8,243
Android Image to Bitmap
Android full-screen StatusBar, NavigationBar 투명
`java getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN); // LOLLIPOP 이전 실행안됨. getWindow().clearFlags(WindowManager.LayoutPa…
Date
2018-11-27
By
관리자
Views
11,806
Android full-screen StatusBar, NavigationBar 투명
firebase 오류
This operation is not allowed. You must enable this service in the console. ERROR_OPERATION_NOT_ALLOWED 해결방법 Go to FireBase Console and enable Anonymous sign-in as shown in picture below.
Date
2018-11-23
By
관리자
Views
8,814
firebase 오류
맥OS 아파치 SSL 활성화
Local SSL websites on macOS Sierra These instructions will guide you through the process of setting up local, trusted websites on your own computer. These instructions are intended to be used on…
Date
2018-11-23
By
관리자
Views
8,899
맥OS 아파치 SSL 활성화
Android GPS Track
`java package org.ankit.gpslibrary; import android.Manifest; import android.content.Context; import android.content.pm.PackageManager; import android.location.Address; import android.location.…
Date
2018-11-13
By
관리자
Views
35,005
Android GPS Track
안드로이드 무선 디버깅
`shell USB연결후 포트 설정 $ adb tcpip 5555 restarting in TCP mode port: 5555 USB제거후 휴대폰 IP접속 $ adb connect 192.168.0.143:5555 connected to 192.168.0.143:5555 접속확인 $ adb devices List of devices …
Date
2018-11-13
By
관리자
Views
8,580
안드로이드 무선 디버깅
안드로이드 다음지도API 오류
화면 회전할때 아래와같은 오류가 발생. xml 오류 ` Caused by: android.view.InflateException: Binary XML file line #7: Binary XML file line #7: Error inflating class Caused by: android.view.InflateException: Binary …
Date
2018-11-12
By
관리자
Views
10,321
안드로이드 다음지도API 오류
android TextView Linkify
`java txt.setAutoLinkMask(Linkify.ALL); ` or `java protected void makeLinkClickable(SpannableStringBuilder strBuilder, final URLSpan span) { int start = strBuilder.getSpanStart(span); …
Date
2018-11-09
By
관리자
Views
8,898
android TextView Linkify
Android Thread, Handler, Looper를 통한 백그라운드 처리
서론 안드로이드의 UI는 기본적으로 메인스레드를 주축으로하는 싱글 스레드 모델로 동작하므로, 메인 스레드에서는 긴 작업을 피해야 합니다. 즉 긴 작업은 여분의 다른 스레드에서 실행하고 UI를 바꿀 때는 UI 스레드로 접근하도록 스레드가나 통신 방법을 사용해야합니다. 이 때 사용하는 것이 Message나 Runnable 객체를 받아와 다른 곳으로 전달해주…
Date
2018-11-06
By
관리자
Views
8,281
Android Thread, Handler, Looper를 통한 백그라운드 처리
Fragment를 이용하여 안드로이드 화면구성하기
만약 스마트 폰 앱을 개발할 때 세로모드(Portrait)에서는 단순하게 화면을 구성하지만 가로모드(Landscape) 화면 구성을 좀더 다양한 화면으로 구성 하고 싶다면 어떻게 할지 고민할 수 있다. 또는 해상도나 디바이스의 스크린크기, 디바이스 종류에 따라서 보여지는 것들을 다르게 구성하고 싶어할 수도 있다. 안드로이드 개발자들은 이러한 요구사항을 만족…
Date
2018-11-04
By
관리자
Views
8,442
Fragment를 이용하여 안드로이드 화면구성하기
링크들
image map 태그 위치 생성 http://maschek.hu/imagemap/imgmap/ 다이어그램 생성 https://www.draw.io/ .min.js / .min.css 풀기 https://beautifier.io/ json 뷰어 http://jsonviewer.stack.hu/ 무료 아이콘 https://ico…
Date
2018-11-02
By
관리자
Views
8,217
링크들
목록
처음
13
14
15
16
17
18
19
20
21
22
최근 게시물
fullPage extensions drop-effec…
three.js 경계선 부드럽게 보이도록 설정
게임메이커 data.win 파일 언팩
영웅모집 트레이너
도커 캐시 삭제
최근 댓글
가입어떻게하나요?
나이스 좋은 자료입니다 감사합니다 베타 유튜버가 사용하…
엘리온 낚시 메크로 판매합니다 https://open.…
회원가입이 안돼서
[email protected]
…
강의가능할까요
[email protected]
통계
방문자 :
5578 / 1627666
회원 :
1
게시글 :
432
댓글 :
18
수행시간 :
0.2707초
Access IP :
3.145.152.168
CPU Usage :
0.31%
DISK Usage :
39.98%