CODEX ANTIHACK V5

  • 관리자
  • 0
  • 8,588
  • 글주소
  • 2019-01-09 15:23:01
captcha

노트

  1. 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' …
    Date2019-01-09By관리자Views11,043
    mysql 종류별 count - 하나의 SQL 쿼리로 여러 카운트를 얻는 방법?
  2. 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…
    Date2018-12-26By관리자Views8,448
    php 위도 경도 중심점 찾기
  3. 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 …
    Date2018-12-23By관리자Views9,415
    SFTP 상위폴더 접근 제한하기
  4. Apache 인증으로 PHPMyAdmin의 접속인증 만들어 보기

    `shell sudo htpasswd -c /etc/phpmyadmin/.htpasswd mydbadmin ` ` phpMyAdmin default Apache configuration 아래 skdmlelql와 같이 기본 접속 경로를 변경합니다. Alias /skdmlelql /usr/share/phpmyadmin
    Date2018-12-20By관리자Views8,746
    Apache 인증으로 PHPMyAdmin의 접속인증 만들어 보기
  5. 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 { …
    Date2018-12-18By관리자Views9,060
    IOS whose view is not in the window hierarchy!
  6. 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…
    Date2018-12-18By관리자Views8,626
    Multiple commands produced error xcode 10
  7. MSSQL 로그 축소 방법 (SQL2008 이후)

    SQL2008버젼 부터의 로그 축소방법이 공유된 것이 없어 글을 올립니다. 아래의 쿼리로 보통 로그파일의 용량을 축소하지만, WITH TRUNCATE_ONLY, WITH NO_LOG 옵션은 SQL2008 이후 버젼에서는 지원되지 않습니다. BACKUP LOG MNET_BIlL_DB WITH TRUNCATE_ONLY 를 실행하면 아래와 같은 에…
    Date2018-12-11By관리자Views9,367
    MSSQL 로그 축소 방법 (SQL2008 이후)
  8. Android ACTION_SEND 의도에 맞는 특정 앱을 필터링하는 방법

    `java public void shareIntentSpecificApps() { ListintentShareList = new ArrayList(); Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND); shareIntent…
    Date2018-11-30By관리자Views10,035
    Android ACTION_SEND 의도에 맞는 특정 앱을 필터링하는 방법
  9. Android 다른 App으로부터 Data 받기

    Manifest 수정 `xmlDate2018-11-30By관리자Views8,315
    Android 다른 App으로부터 Data 받기
  10. 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…
    Date2018-11-29By관리자Views8,128
    Android Image to Bitmap
  11. 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…
    Date2018-11-27By관리자Views11,693
    Android full-screen StatusBar, NavigationBar 투명
  12. 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.
    Date2018-11-23By관리자Views8,697
    firebase 오류
  13. 맥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…
    Date2018-11-23By관리자Views8,781
    맥OS 아파치 SSL 활성화
  14. 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.…
    Date2018-11-13By관리자Views34,889
    Android GPS Track
  15. 안드로이드 무선 디버깅

    `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 …
    Date2018-11-13By관리자Views8,465
    안드로이드 무선 디버깅
  16. 안드로이드 다음지도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 …
    Date2018-11-12By관리자Views10,207
    안드로이드 다음지도API 오류
  17. android TextView Linkify

    `java txt.setAutoLinkMask(Linkify.ALL); ` or `java protected void makeLinkClickable(SpannableStringBuilder strBuilder, final URLSpan span) { int start = strBuilder.getSpanStart(span); …
    Date2018-11-09By관리자Views8,781
    android TextView Linkify
  18. Android Thread, Handler, Looper를 통한 백그라운드 처리

    서론 안드로이드의 UI는 기본적으로 메인스레드를 주축으로하는 싱글 스레드 모델로 동작하므로, 메인 스레드에서는 긴 작업을 피해야 합니다. 즉 긴 작업은 여분의 다른 스레드에서 실행하고 UI를 바꿀 때는 UI 스레드로 접근하도록 스레드가나 통신 방법을 사용해야합니다. 이 때 사용하는 것이 Message나 Runnable 객체를 받아와 다른 곳으로 전달해주…
    Date2018-11-06By관리자Views8,165
    Android Thread, Handler, Looper를 통한 백그라운드 처리
  19. Fragment를 이용하여 안드로이드 화면구성하기

    만약 스마트 폰 앱을 개발할 때 세로모드(Portrait)에서는 단순하게 화면을 구성하지만 가로모드(Landscape) 화면 구성을 좀더 다양한 화면으로 구성 하고 싶다면 어떻게 할지 고민할 수 있다. 또는 해상도나 디바이스의 스크린크기, 디바이스 종류에 따라서 보여지는 것들을 다르게 구성하고 싶어할 수도 있다. 안드로이드 개발자들은 이러한 요구사항을 만족…
    Date2018-11-04By관리자Views8,326
    Fragment를 이용하여 안드로이드 화면구성하기
  20. 링크들

    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…
    Date2018-11-02By관리자Views8,101
    링크들