일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Xcode
- 인증
- albumbook
- SSH
- fido
- openssl
- Nodejs
- MSYS2
- WebAuthn
- 2FA
- css
- FIDO2
- MFA
- SSL
- 애플
- OSX
- apple
- SWIFT
- git
- 앱리소스
- OTP
- kmip
- 안드로이드
- appres
- otpkey
- Android
- 앱스토어
- 앨범북
- SwiftUI
- MYSQL
- Today
- Total
목록소스 팁 (172)
인디노트
api 와 implementation에 대한 요약 설명api는 의존성에 추가하는 모듈이 의존하고 있는 다른 모듈 까지 접근이 가능합니다. 예 ) ModuleX 에서 LibraryA 를 api project(path: ':LibrayA')로 의존성에 추가하면 ModuleX에서 LibraryC 클래스를 접근 할 수 있습니다.implementation는 의존성에 추가하는 모듈 외 추가하는 모듈이 의존하는 다른 모듈에는 접근이 불가능 합니다. 즉 위에 상황을 보자면 implementation project(path: ':LibraryA')로 의존성에 추가하면 ModuleX에서 LibraryC 클래스에는 접근할 수 없습니다.위에서 보았듯이 이로 인한 차이가 발생하여 빌드 속도의 개선이 있을 수 있습니다. TL;D..
https://github.com/Trinea/android-common
今回の概要アプリ上にパーセンテージを表示する際、一番簡単なのは、UILabel を使って数値を表示する方法でしょう。ただ、もっとカッコよく、分かりやすく表示したいとなると、やはりグラフ表示となるのではないでしょうか。そこで、今回ご紹介するのは、このような円弧グラフを簡単に実現する MBCircularProgressBar です。イスラエルの Mati Bot さんが作成されました。この OSS を Xcode プロジェクトに組み込み、円形プログレスバーを表示し、さらにプロパティを変更して様々なビジュアル表現をするところまでご紹介します。プロジェクト作成 と pod installまずは、Single View Application テンプレートを使ってプロジェクトを作成します。次に、プロジェクトフォルダ上に Podfile を作成します。12use_frameworks!pod "..
Broadcast와 Multicast하나의 컴퓨터에서 또 다른 하나의 컴퓨터에 데이타를 보내는 것을 Unicast라 하고, 하나의 컴퓨터에서 네트워크 상의 모든 컴퓨터에 데이타를 보내는 것을 Broadcast라 한다. 또한, 한 컴퓨터에서 네트워크 상의 다수의 컴퓨터들에게 데이타를 보내는 것을 Multicast라 한다.Broadcast와 Multicast를 사용하기 위해서는 UDP 프로토콜을 사용해야 한다. (TCP는 이러한 기능을 제공하지 않는다)UDP에서 Broadcast를 사용하기 위해서는 전송 타겟 IP를 "255.255.255.255"로 설정하면 된다. Broadcast는 서브네트워크 내의 모든 컴퓨터에 데이타를 전달하는 기능으로 일반적으로 한 라우터 내에서만 사용된다.UDP에서 Multicas..
We’ve made a few improvements to our extensibility model in IE8 RC1 based on feedback we’ve received both internally and externally.WebBrowser (WebOC) Rendering Mode ChangesAbout a year ago, I posted an entry talking about WebBrowser Control Rendering Modes in IE8. You may recall that applications using the WebBrowser Control (also known as the WebOC, or Trident hosts) can use a Feature Control ..
이미지?12345678910111213UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];// 이미지를 카메라 롤에 저장UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil); // 저장한 이후에 실행 될 메소드- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo { if (error) { NSLog(@"error: %@", [error localizedDescr..
좋아, 문제를 설명했는데 가능한 해결책은 다음과 같다.@implementation MyWindowController volatile BOOL pageStillLoading; - (void) runInBackground:(id)arg { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; // Simmulate web page loading sleep(5); // This will not wake up the runloop on main thread! pageStillLoading = NO; // Wake up the main thread from the runloop [self performSelectorOnMainThread:@selector(w..
Data ClassXCode KeyRaw Info.plist KeyApple MusicPrivacy - Media Library Usage DescriptionNSAppleMusicUsageDescriptionBluetoothPrivacy - Bluetooth Peripheral Usage DescriptionNSBluetoothPeripheralUsageDescriptionCalendarPrivacy - Calendars Usage DescriptionNSCalendarsUsageDescriptionCameraPrivacy - Camera Usage DescriptionNSCameraUsageDescriptionContactsPrivacy - Contacts Usage DescriptionNSConta..
퍼온글 : http://home.zany.kr:9003/board/bView.asp?bCode=52299899&aCode=14068 JDK 1.7.0_67 환경에서 Spring RestTemplate (org.springframework.web.client) 을 사용하여 (또는 Apache HttpClient 와 같은 Http 클라이언드 라이브러리 등...) https 서버에 Rest Call 할 때 아래와 같은 오류 발생. Caused by: java.lang.RuntimeException: Could not generate DH keypair Caused by: java.security.InvalidAlgorithmParameterException: Prime size must be multiple ..
public static String readFromSSLUrl(String url) { String responseMessage = ""; InputStream is = null; InputStreamReader isr = null; BufferedReader br = null; StringBuffer sb = new StringBuffer(); // 이 부분이 https부분입니다.*************************** System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol"); com.sun.net.ssl.internal.ssl.Provider provider = new com.sun.ne..