일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- apple
- Xcode
- kmip
- 안드로이드
- fido
- 애플
- appres
- SwiftUI
- MYSQL
- OTP
- SWIFT
- git
- SSL
- 앨범북
- WebAuthn
- MFA
- 앱리소스
- 2FA
- Android
- 앱스토어
- 인증
- Nodejs
- FIDO2
- SSH
- css
- MSYS2
- openssl
- albumbook
- OSX
- otpkey
- Today
- Total
목록소스 팁 (172)
인디노트
퍼옴 : http://pyrasis.com/blog/entry/ServiceDeleteFlag
iOS Simulator is an integral part of any iOS development process. We just can’t ignore it. New Simulator from Xcode 9 brings a lot of useful tricks, which could make you even more productive. Finally, Apple recalled they have Simulator out there! Comparing to previous modest updates, this one seems like a big deal.So let’s break this down and list all features I found in new iOS simulator (some ..
지난장에서는 SERVICE_CONTROL_SESSIONCHANGE 를 받아서, 어떠한 이벤트가 떨어지는지 그리고 그러한 정보를 추출해서 필요한 로그를 남기는 작업을 진행하여 보았다. 그렇다면, 이번에는 누군가 컴퓨터에 로그인을 하면, 해당 정보를 출력해주는 환영인사를 남겨보자. 아래 그림은 MessageBox.exe 라는 유틸성 다이알로그를 하나 만들어 놓고, 사용자가 로그인을 하면 해당 정보를 추출하여, 메시지 박스를 띄워 주도록 구성되었다. 동작을 그려보면 다음과 같다. 대충 보면, 윈도우 시작프로그램에 MessageBox.exe를 등록해 놓고 뿌려주는것과 기능은 같다고 할 수 있겠지만 실제로 구현하는 레벨이 좀 다르다. 아무튼 여기서는 CreateProcessToDesktop 라고 하는 유틸성 함수..
Photos Framework 정리출처 : https://medium.com/@audrl1010/photos-framework-a92c92ff3c74Framework PhotosiCloud Photo Library 및 Live Photo 및 Photos 앱에 의해 관리되는 image 및 video asset을 가지고 작업합니다. 풀 크기의 asset 또는 thumbnail 이미지를 비동기적으로 가져오거나 cache 처리하며, 내용을 수정하고, 수정된 내용을 여러 장치에 동기화 합니다.개요iOS 및 macOS에서, Photos framework는 Photos앱을 위한 사진 편집 확장 기능을 지원하는 class를 제공합니다. iOS 및 tvOS에서, Photos framework는 Photos앱 및 iClo..
소스다운로드 > https://github.com/cpromise/UIAlertControllerExample이 예제에 사용된 소스 : initial commit을 다운로드 받으시면 됩니다.iOS8부터 alertView가 deprecated되었죠?우리는 기계적으로 애플의 노예이기 때문에 UIAlertController를 사용해야 합니다.절이 싫으면 중이 떠나야하는데.. 떠나면 이 추운 날에 굶어야하니까 일단 남아보도록 하죠.. UIAlertController에는 크게 3가지로 나뉩니다.동영상 한번 보고가실게요. 그럼 나눠보도록 할게요.1. No Button, No action.UIAlertController * alert= [UIAlertController alertControllerWithTitle:@..
Directory Structuredocumentations: Doxygen documentationdokan: dokan1.dll userspace librarydokan_control: userspace program dokanctl.exe, used for unmounting, listing mountpoints etc.dokan_fuse: userspace wrapper library dokanfuse1.dll implementing the FUSE API known from POSIX-OSes (Linux, MacOS, BSD...)dokan_np: userspace network provider dokannp1.dll, needed for mounting as network share or n..
출처: http://baccusf.tistory.com/45?category=209579 [Tomorrow is better than now] 카메라 롤과 일반 앨범 가져오기 PHFetchResult *smartAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary options:nil]; PHFetchResult *topLevelUserCollections = [PHCollectionList fetchTopLevelUserCollectionsWithOptions:nil]; "[PHCollectionLis..
BSTR CString CString BSTRToCString(BSTR bstr) { char* pbstr; USES_CONVERSION; // , convert를 위한 macro pbstr = OLE2A(bstr); // BSTR -> char return CString(bstr); } BSTR CStringToBSTR(CString str) { return str.AllocSysString(); // CString to BSTR } BSTR char* // BSTR to char* BSTR bstr char* pbstr; USES_CONVERSION; // , convert를 위한 macro pbstr = OLE2A(bstr); // BSTR -> char // char to BSTR TCHAR sz..
출처 : https://www.lesstif.com/pages/viewpage.action?pageId=6291508 개요빌드 사전 준비빌드Unix / Linux 빌드 방법Windows 용 빌드 방법TroubleShootingPre Compiled Binary 개요OpenSSL 은 Eric A. Young 이 만든 SSLeay 라이브러리를 기반으로 상용수준의 데이타암복호/SSL/TLS 라이브러리를 만들기 위한 프로젝트이다.Linux 라면 apt-get이나 yum 으로 한방에 설치 가능하지만 Un*x 나 Windows 에서는 컴파일 할 일이 가끔 생겨서 빌드 방법을 정리해 본다. 빌드 사전 준비C/C++ Compiler가 필요하다. Windows 에서는 Visual Studio 2010 Express 버전..
Reference from : https://www.codeproject.com/Articles/43586/File-System-Filter-Driver-Tutorial This tutorial will show you how to develop a simple file system filter driver.Download FsFilter.zip - 16.31 KBNote: This articles describes fundamentals of file system filter drivers and is very welcome to read. But for production consider using minifilter framework as it is more error-proof and availa..