일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- apple
- albumbook
- MFA
- MSYS2
- MYSQL
- 앱리소스
- SWIFT
- 2FA
- WebAuthn
- otpkey
- SwiftUI
- 앨범북
- Android
- OTP
- kmip
- Nodejs
- SSH
- fido
- 인증
- git
- appres
- css
- openssl
- SSL
- 안드로이드
- FIDO2
- Xcode
- OSX
- 앱스토어
- 애플
- Today
- Total
목록분류 전체보기 (790)
인디노트
https://developer.apple.com/documentation/storekit/in-app_purchase/testing_in-app_purchases_in_xcode?language=objc Apple Developer Documentation developer.apple.com
https://github.com/jankovicsandras/imagetracerjs jankovicsandras/imagetracerjs Simple raster image tracer and vectorizer written in JavaScript. - jankovicsandras/imagetracerjs github.com https://www.npmjs.com/package/imagetracerjs imagetracerjs raster image tracer and vectorizer, bitmap to SVG converter www.npmjs.com appres 에 적용해봐야겠습니다.
Apple 관련 앱을 개발하다보면 아카이브 단계에서 괴롭히는것이 Bitcode 가 Full 로 지원하지 않고 있다는 메시지일 경우가 많다. 개발 중에 빌드 단계에서는 전혀 잘 눈치채지 못하다가 꼭 아카이브 상황에서 발견하는 경우가 많기 때문이다. 어쨋든 iOS 는 Bitcode 를 꺼도 스토어에 등록은 시켜 주지만 watchOS, tvOS 와 같은것은 Full Bitcode 를 지원하지 않으면 리젝을 당하기 때문에 더욱 중요하다고 할 수 있다. 빌드 단계에서 Bitcode 를 사용하기 위해서는 User Defined Settings 에 BITCODE_GENERATION_MODE 를 bitcode 로 설정하여 컴파일 하는 것이다. 기본적으로 이 옵션은 marker 혹은 bitcode 이렇게 값을 줄 수 있..
3 번째부터 끝까지 let startIdx: String.Index = str.index(str.startIndex, offsetBy: 3) var result = String(str[startIdx...]) 처음부터 3번째 까지 let endIdx: String.Index = str.index(str.startIndex, offsetBy: 3) var result = String(str[...endIdx])
/* ##Device = Desktops ##Screen = 1281px to higher resolution desktops */ @media (min-width: 1281px) { } /* ##Device = Laptops, Desktops ##Screen = B/w 1025px to 1280px */ @media (min-width: 1025px) and (max-width: 1280px) { } /* ##Device = Tablets, Ipads (portrait), ##Screen = B/w 768px to 1024px */ @media (min-width: 768px) and (max-width: 1024px) { } /* ##Device = Tablets, Ipads (landscape) #..
developer.apple.com/documentation/storekit/in-app_purchase/offering_completing_and_restoring_in-app_purchases Apple Developer Documentation developer.apple.com Objective C Swift 의 iOS macOS tvOS 샘플 프로젝트 있음
github.com/nirix/swift-screencapture nirix/swift-screencapture A Swift framework to easily capture the screen on OS X. - nirix/swift-screencapture github.com AppDelegate.swift // // AppDelegate.swift // Example // // Created by Jack P. on 11/12/2015. // Copyright © 2015 Jack P. All rights reserved. // import Cocoa import AVKit import AVFoundation import ScreenCapture @NSApplicationMain class App..
Swift 에서 다른 ViewController 를 Open 하는 방법에 대해서 많은 자료를 검색 했지만 다음과 같은 방법이 가장 심플하다. func openScreenCaptureViewController() -> Void { let screenCaptureViewController = ScreenCaptureViewController(nibName: "ScreenCaptureViewController", bundle: nil) let screenCaptureViewWindow = NSWindow(contentViewController: screenCaptureViewController) screenCaptureViewWindow.makeKeyAndOrderFront(self) let windowVie..
워드프레스를 Linux 에 설치 중이다. MySQL 에 wordpress 라는 DB 와 wordpress 라는 user 를 생성하는 문구를 기록한다. mysql> drop user wordpress@192.168.0.200; Query OK, 0 rows affected (0.01 sec) mysql> create user wordpress@192.168.0.200 identified with mysql_native_password by 'password'; Query OK, 0 rows affected (0.01 sec) mysql> grant all privileges on wordpress.* to wordpress@192.168.0.200; Query OK, 0 rows affected (0.00..
info.php 위의 코드는 잘 된다. dbtest.php 이 코드를 실행하면 php 로그에 다음의 내용이 찍힌다. Call to undefined function mysql_connect() 다음 명령을 실행 해 보았다. # yum list php-mysql Last metadata expiration check: 1:22:33 ago on Wed 14 Apr 2021 12:25:56 AM PDT. Error: No matching Packages to list 패키지가 없단다. 그래서, 설치했다. PHP 설치는 sudo dnf install php php-fpm php-gd php-mysqlnd 를 이용하여 설치 했었다. 참고 : tecadmin.net/install-apache-php-fpm-cen..