귀차니즘의 길(181)
-
[MAMP]mysql password 설정
경로 : /Applications/MAMP/bin/phpMyAdmin/config.inc.php파일 열어서 87라인 비밀번호 수정! 86 $cfg['Servers'][$i]['user'] = 'root'; // MySQL user 87 $cfg['Servers'][$i]['password'] = '1111'; // MySQL password (only needed mysql경로(MAMP용) /Applications/MAMP/Library/bin./mysql -uroot -p 엔터root 입력(초기비밀번호) mysql> use mysql; 엔터mysql> update user set Password = password('1111') where User = 'root'; 엔터mysql> FLUSH PRIVI..
2014.09.18 -
[android]이어폰 연결 감지
import android.content.IntentFilter; import android.content.BroadcastReceiver; private static IntentFilter mIntentFilter = new IntentFilter(Intent.ACTION_HEADSET_PLUG); private static BroadcastReceiver mBroadcastReceiver= null; //onCreate안에mBroadcastReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { AudioManager audio = (AudioManager)getSystemS..
2014.09.16 -
[php] error_reporting
error_reporting 는 디버깅 기능과 오류 처리기능을 제공. 속성 설명 E_ALL 모든 에러 메시지 E_ERROR 실행오류 E_RECOVERABLE_ERROR 치명적인 실행오류 E_WARNING 심각하지 않은 실행오류 E_PARSE 컴파일 구문오류 E_NOTICE 일반적인 코드, 변수 오류 E_CORE_ERROR 젠드엔진의 심각한 오류 E_CORE_WARNING 젠드엔진의 심각하지 않은 오류 E_COMPILE_ERROR 젠드엔진의 심각한 컴파일오류 E_COMPILE_WARNING 젠드엔진의 심각하지 않은 컴파일오류 E_USER_ERROR 사용자가 만든 오류 메시지 E_USER_WARNING 사용자가 만든 경고 메시지 E_USER_NOTICE 사용자가 만든 통보 메시지 E_DEPRECATED 향후..
2014.09.16 -
[android] 자주 사용되는 안드로이드 Permission 들
uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> uses-permission android:name="android.permission.INTERNET" /> uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> sdcard write -->uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" /> uses-permission andr..
2014.09.16 -
[android] facebook Feed 담벼락
로그인 세션 기타 등등의 기능은 제외하고 FeedDialog의 소스 코드만 삽입 함 - Handler mHandler = new Handler(Looper.getMainLooper());mHandler.postDelayed(new Runnable() {@Overridepublic void run() { Bundle params = new Bundle();params.putString("name", "네임");params.putString("link", "링크URL");params.putString("picture", "사진 90x90");params.putString("description", "설명"); WebDialog feedDialog = (new WebDialog.FeedDialogBuilder..
2014.09.16 -
[android]파일 삭제 & 폴더 삭제
//파일 & 폴더 삭제public static void removeDir(String dirName) {String mRootPath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + dirName; File file = new File(mRootPath);File[] childFileList = file.listFiles();for(File childFile : childFileList){if(childFile.isDirectory()) {removeDir(childFile.getAbsolutePath()); //하위 디렉토리}else {childFile.delete(); //하위 파일}} file.delet..
2014.09.15