목록개발 (48)
뉴질랜드 다이어리(NZ Diary) 라빠
Mysql 의 특수한 형식중 하나가 TIMESTAMP 이다. 여러가지 옵션으로 다양하게 TIMESTAMP 값을 이용할 수 있는데이 값을 UNIX Timestamp 로 변환하는 쉬운 방법은 SELECT UNIX_TIMESTAMP(yourField); 혹은 $timestamp = strtotime($mysqltime); 이다.
요즘 App을 개발하다보면 지도를 활용하는 어플이 많습니다. 특히 현재 위치에서 다른 위치 사이의 거리를 계산해야 하는 경우가 있는데요.. Google API를 사용할 경우, distanceBetween과 같은 메소드를 활용할 수도 있을 겁니다. 오늘 정리할 내용은 MySQL 쿼리를 활용해서 두 위치 사이의 거리를 계산하는 겁니다. 오랜만에 보는 몇가지 수학함수를 사용하면 간단히 결과가 나오네요.. 다음과 같이 가정하고 쿼리를 만들어 보도록 하겠습니다. 현재 위치 위도 : nowLat 경도 : nowLng 지정 위치 위도: setLat 경도: setLng > select (6371 * acos( cos( radians(nowLat) ) * cos( radians( setLat ) ) * cos( radi..
Android 개발시 Action Bar 를 사용하는 다양한 방법들 http://www.androidhive.info/2013/11/android-working-with-action-bar/
white#ffffffwhitesmoke#f5f5f5mintcream#f5fffaazure#f0ffffghostwhite#f8f8ffaliceblue#f0f8ffsnow#fffafafloralwhite#fffaf0ivory#fffff0seashell#fff5eehoneydew#f0fff0oldlace#fdf5e6beige#f5f5dccornsilk#fff8dclinen#faf0e6papayawhip#ffefd5wheat#f5deb3blanchedalmond#ffebcdmoccasin#ffe4b5bisque#ffe4c4navajowhite#ffdeadlightyellow#ffffe0lightgoldenrodyellow#fafad2lemonchiffon#fffacdpalegoldenrod#eee8aalave..
Android™ 1.5 android.R.drawable Icon ResourcesThis is a list of resources in Android 1.5's android.R.drawable that might be useful as icons in your Android applications. You can use them like this:int icon = android.R.drawable.arrow_down_float;You can of course copy these into your own res/drawable/ directory, but it's nice to have a reference of icons you can use directly. There are other acces..
출처 : http://kwon37xi.egloos.com/1634694데이터베이스 접속mysql -u 사용자명 -p dbname설치 직후에는 root 사용자에 비밀번호가 없으므로 다음과 같이 접속하여 MySQL을 관리할 수 있다.mysql -u root mysql비밀번호 변경MySQL을 설치한 직후에는 root 계정에 암호가 지정되어 있지 않다. 다음 세가지 방법으로 비밀번호를 변경 할 수 있다.# mysqladmin 이용mysqladmin -u root password 새비밀번호# update문 이용mysql -u root mysql----mysql> UPDATE user SET password=password('새비밀번호') WHERE user='root';mysql> FLUSH PRIVILEGES;..
프로가드가 많이 바뀌었다..요즘적용을 안하다보니... 최신기준으로 수정 작성함 기본 프로젝트 생성을 하면 proguard-project.txt = 프로가드 세팅 파일project.properties = 프로젝트 세팅파일 project.properties 프로젝트 세팅파일에 프로가드 사용 여부 주석을 해제 하자#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt해제방법은 # 을 삭제 안드로이드 signkey 로 바이너리를 만들면 자동으로 Proguard 설정되어짐 확인방법은 android proguard 폴더 아래 4개의 File 생성되야 적용된것임 dump.txt : 어플리케이션에서 사용중인 클래스들의 내부..
문자지정 . 사용예제 . 은 아무 문자나 1개를 가리킨다. 하지만 "줄바꿈 문자"는 제외된다. ==================================== Find h.t Replace 123 Source hat halt hit heat hot Result 123 halt 123 heat 123 ==================================== Find h..t Replace 1234 Source hat halt hit heat hot Result hat 1234 hit 1234 hot ==================================== 문자지정 [ ] 사용예제 [ ] 은 그 안에 있는 문자중 아무것 1개를 가리킨다. [abc] a,b,c 중 아무것이나 1개 [1234..