CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자
- 이 문서는 CMake를 주관적으로 서술합니다
- 이 문서를 통해 CMake를 시작하기엔 적합하지 않습니다
https://cgold.readthedocs.io/en/latest/ 3.1 챕터까지 따라해본 이후 기본사항들을 속성으로 익히는 것을 돕기위한 보조자료로써 작성되었습니다
| // | |
| // TokenAcquisitionService.swift | |
| // | |
| // Created by Daniel Tartaglia on 16 Jan 2019. | |
| // Copyright © 2024 Daniel Tartaglia. MIT License. | |
| // | |
| import Foundation | |
| import RxSwift |
CMake를 왜 쓰는거죠?
좋은 툴은 Visual Studio 뿐입니다. 그 이외에는 전부 사도(邪道)입니다 사도! - 작성자
| <# | |
| .SYNOPSIS | |
| Script to Initialize my custom powershell setup. | |
| .DESCRIPTION | |
| Script uses scoop | |
| .NOTES | |
| **NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted. | |
| Author: Mike Pruett | |
| Date: October 18th, 2018 |
| #!/bin/sh | |
| # To run, download the script or copy the code to a '.sh' file (for example 'flutterrepair.sh') and run like any other script: | |
| # sh ./flutterrepair.sh | |
| # or | |
| # sudo sh flutterrepair.sh | |
| echo "Flutter Repair (by jeroen-meijer on GitHubGist)" | |
| echo Cleaning project... |
| // | |
| // UserDefaults.swift | |
| // | |
| // Created by Shaps Benkau on 24/05/2018. | |
| // Copyright © 2018 152percent Ltd. All rights reserved. | |
| // | |
| import Foundation | |
| #if os(iOS) |
| /** | |
| * An [Observer] for [Event]s, simplifying the pattern of checking if the [Event]'s content has | |
| * already been handled. | |
| * | |
| * [onEventUnhandledContent] is *only* called if the [Event]'s contents has not been handled. | |
| */ | |
| class EventObserver<T>(private val onEventUnhandledContent: (T) -> Unit) : Observer<Event<T>> { | |
| override fun onChanged(event: Event<T>?) { | |
| event?.getContentIfNotHandled()?.let { value -> | |
| onEventUnhandledContent(value) |
| In console: | |
| git config credential.helper | |
| You will see: osxkeychain | |
| git config credential.helper sourcetree | |
| Then if you perform git config credential.helper again | |
| You will see: sourcetree |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| // The MIT License (MIT) | |
| // | |
| // Copyright (c) 2017 Alexander Grebenyuk (github.com/kean). | |
| import Foundation | |
| import RxSwift | |
| import RxCocoa | |
| extension ObservableType { |