본문 바로가기
반응형

Programming95

변화된 모던 C++, 심층분석 - 불어오는 변화의 바람 C++98 to C++11/14 [멜팅팟 세미나 with C++ Korea] 변화된 모던 C++, 심층분석https://mva.microsoft.com/ko/training-courses/-with-c-korea-c--10300?l=3dpwkJd6_4904984382 Why C++ 대중성: 4,3,2위권으로 C++ 사용 순위가 유지되고 있음. 범용 성 :게임,엔지니어링,프레임워크,비즈니스,임베딩.... 다양한 분야에 활용됨. 고성능 : C++ 설계원칙 2가지 - Leave no room for lower-level language below c++ - What you don't use you don't pay for(Zero-overhead principle) 발전, 개선중단 성능 Power Size Experience Cross Pl.. 2016. 1. 1.
Regular expressions 정규표현 식 Regular expressions 정규표현 식 http://regexr.com/ 정규표현식 작성 http://regexone.com/ http://zvon.org/comp/r/tut-Regexp.html#Pages~Contents Page 1 Regular expressions are case sensitive. Therefore Case 1 will find the specified text, but Case 2 will not. Source Hello, world!Case 1 Regular Expression:HelloFirst match:Hello, world!All matches:Hello, world!Case 2 Regular Expression:helloFirst match:Hello, wo.. 2015. 9. 28.
파일명 일괄 변경 파워쉘 PS > get-childitem . | rename-item -NewName {$_.Name -replace $_.Name, $_.Name.tolower()}PS > get-childitem . | rename-item -NewName {$_.Name -replace " ", "_"} 디자이너가 Android Resource 파일명을 항상 대문자까지 포함해서 생성해주는 경우가 많다.. 한두개가 아닌 경우에 처리를 위해 팔자에 없던 파워쉘 명령을 찾아둠... 2015. 6. 24.
TumblrRip 0.5 – 동영상 저장 추가 텀블러에서 동영상 다운로드 하는 기능 추가 2015. 6. 11.
Android Studio에서 Package 자동 Import (이클립스 Ctrl+Shit+O) & 자동 키맵핑 바꾸기 File -> Settings -> Editor -> General -> Auto Import -> Java change Insert imports on paste value to All markAdd unambigious imports on the fly option as checked 키맵핑 바꾸기 File -> Settings -> KeyMap Android Studio -> Preferences -> KeyMap (Mac) change keymaps settings to eclipse so that you can use the short cut keys like in eclipse. http://stackoverflow.com/questions/16615038/what-is-the-shortcut.. 2015. 5. 26.
Android Studio 1.0.1 첫 에러 발생 처리 Error:Execution failed for task ':app:processDebugResources'. 안드로이드 스튜디오 정싱 버전이 발표된걸 보고 함 써 봐야겠다는 생각에이번 플젝중 비교적 간단한 APP을 진행하기로 함. 일단 안드로이드 플젝 생성후 바로 실행 하면 나타나는 에러 Error:Execution failed for task ':app:processDebugResources'. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: D:\JAVA\adt-bundle-windows-x86_64-20131030\sdk\build-tools\21.0.0\aapt.exe package -f --no-crunch -I D:\JAVA\adt-bundle-windows-x86_64-20131030\sdk\platform.. 2014. 12. 20.
안드로이드 달력 처리 자료 https://github.com/yesyo/android-datepicker https://github.com/tyczj/ExtendedCalendarView https://github.com/square/android-times-square Hi visit all given links, hope will help you 1.https://github.com/inteist/android-better-time-picker 2.https://github.com/derekbrameyer/android-betterpickers 3.http://www.androiddevelopersolutions.com/2013/05/android-calendar-sync.html 4.http://www.androidviews.. 2014. 12. 17.
PHP] DB에 File을 저장 http://www.xpressengine.com/tiptech_php/19376345 http://www.koreaphp.co.kr/tip_board/board_read.php?page=2&block=1&no=61&cate=43&parent=61- DB에 File을 저장 BLOB type을 이용하여 DB에 직접 저장 - Server의 지정된 Directory에 저장 파일의 위치와 이름만 DB에 저장 별도의 입출력 루틴이 필요하지 않다는 장점 파일의 수가 많아지면 관리가 힘듬 File의 실제 위치와 DB의 정보 불일치 가능성 File의 이름 충돌 - 디비 구조 CREATE TABLE gallery( id INT NOT NULL auto_increment, image BLOB NOT NULL, title .. 2014. 9. 23.
EventBus for Android http://greenrobot.github.io/EventBus/ https://github.com/greenrobot/EventBus 이벤트를 주로 핸들러로 처리 하다보면 activity, fragment등 이벤트 발생 영역과 처리 코드 사이를 연결 시켜주기 위해 고민했었는데.. 심플하고 안정적으로 처리 할수 있을거 같은 라이브러리다. 사용전... 2014. 7. 15.
네이버 맵 안드로이드에서 사용하기 네이버 맵 안드로이드에서 사용하기 튜토리얼 http://developer.naver.com/wiki/pages/Tutorial_Andriod Key 발급 https://developer.naver.com/openapi/register.nhn API 설명 http://developer.naver.com/wiki/pages/Android 안드로이드용 네이버 지도 라이브러리 (nmaps.jar : 샘플 프로젝트에 포함) 2014. 6. 28.
매크로 함수 매크로 함수 장점 - 자료형에 독립적, 실행속도 향상 단점 - 구현과 디버깅이 어렵다. 사용조건 -함수의 크기가 작아야 한다. 그렇지 않을 경우 실행 파일의 크기가 커지게됨 2014. 6. 2.
안드로이드 서비스 실행 (다른 App 구동할 때) 사용자가 다른 앱들을 사용할 때 application의 일부 기능을 백그라운드에서 유지 해야 하는경우 백그라운드 작업을 할 수 있는 Service class 생성 main application에서 서비스를 시작한다. @Override public void onCreate(Bundle savedInstanceState) { Intent theIntent = new Intent(this, GpsService.class); Button startButton = (Button) findViewById(R.id.startButton); startButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { start.. 2014. 4. 25.
반응형