개발자료(219)
-
[PHP] PHPExcel
Cafe24 호스팅 프로젝트 진행중 Excel을 생성해야 하는 건이 있어서 사용하게 됨. PHPExcel은 Github에 등록된 오픈소스이며, 2017년 공식적으로 사용이 중단되어 더이상 개발이 진행되지 않는 프로젝트입니다. PhpSpreadsheet를 사용하기를 권장하고 있지만 Cafe24에 설치 없이 코드만으로 강제적으로 적용시 여러가지 설정오류들이 발생해 PHPExcel을 사용하게 되었음. # PHPExcel https://github.com/PHPOffice/PHPExcel GitHub - PHPOffice/PHPExcel: ARCHIVED ARCHIVED. Contribute to PHPOffice/PHPExcel development by creating an account on GitHub...
2023.04.27 -
Apple System Status
애플 시스템이 정상적으로 동작하는지 확인할수 있는 사이트 스토어 등록 등 애플 서비스 사용및 연동중 오류가 발생하면 아래 사이트를 먼저 확인하면 좋을것 같다. https://www.apple.com/hk/en/support/systemstatus/ Apple - Support - System Status www.apple.com
2023.04.26 -
Javascript Video Tag
◉ 비디오 스트리밍 지원 여부 function isSupportVideo(){ obj = document.createElement('video'); return obj.canPlayType; //obj.canpPlayType("video/mp4"); } ◉ Parameters type 감지할 오디오/비디오 유형(및 선택적으로 코덱)을 지정 / 코덱을 포함한 값을 지정 video/ogg video/mp4 video/webm audio/mpeg audio/ogg audio/mp4 video/ogg; codecs="theora, vorbis" video/mp4; codecs="avc1.4D401E, mp4a.40.2" video/webm; codecs="vp8.0, vorbis" audio/ogg; codec..
2023.04.06 -
클립보드 Clipboard
@ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { final android.content.ClipboardManager cm; final android.content.ClipData clipData; cm = (android.content.ClipboardManager)context.getSystemService(Context.CLIPBOARD_SERVICE); clipData = android.content.ClipData.newPlainText("text label", "클립보드에 저장되는 값"); cm.setPrimaryClip(clipData); } else { final android.text.ClipboardManager cm; ..
2022.12.27 -
TalkBack(Accessibility) 활성화 여부
활성화 확인 int accessibilityEnabled = 0; try { accessibilityEnabled = Settings.Secure.getInt(context.getApplicationContext().getContentResolver(), Settings.Secure.ACCESSIBILITY_ENABLED); // accessibilityEnabled = 0:Off, 1:On } catch (Settings.SettingNotFoundException e) { } 활성화된 서비스 확인 String strEnabledServices = ""; if (accessibilityEnabled == 1) { strEnabledServices = Settings.Secure.getString(con..
2022.11.20 -
Devices Status Processing 상태
Registration is being processed for these devices. They may become available for development and ad hoc distribution in 24 to 72 hours. Changes to device availability will appear in the Status column. 이 장치에 대한 등록을 처리 중입니다. 24~72시간 내에 개발 및 임시 배포가 가능해질 수 있습니다. 장치 가용성에 대한 변경 사항은 상태 열에 나타납니다. 지금까지 개발하면서 본적이 없었던 상태이다. 우선 결과를 기다려 봐야겠다.
2022.11.20