일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 맥
- 아이폰
- VISTA
- Mobile
- WSDL
- windows
- 오브젝티브C
- windows7
- 볼링
- 링크
- 7932
- c#
- Number
- 형식
- 윈도구7
- cagr48com
- WebService
- install
- 아이맥
- screen
- 윈도우즈7
- Objective-C
- 윈도구
- 퇴사
- mac
- ObjectiveC
- 애플
- 설치
- iPhone
- java
- Today
- Total
목록Development (143)
A colossal Dreamer: GR鐵塔-天生我材
AVAudioNode ↑ AVAudioUnit ↑ AVAudioUnitTimeEffect ↑ AVAudioUnitVarispeed(only rate), AVAudioUnitTimeEffect(pitch, overlap, rate) AVAudioUnitVarispeed 를 사용해보자 AVAudioPlayer → AVAudioUnitVarispeed → mainMixerNote 형태로 구성하면, AVAudioUnitVarispeed.rate 을 조종해서 재생속도를 조정할 수 있다. ref. stackoverflow
ContainerView(@state) ⨁ ContentView(@view) 로직과 상태와 View구성의 3대 SwiftUI 구성요소는 서로 성격이 다르지만, 하나의 ContentView 에 모두 우겨넣는 상황에 빠지면, 굉장히 뚠뚠한 ContentView 를 만나게 된다. 뚠뚠한 친구들의 특징은 재사용이 거의 불가능하다는 것. 재사용가능하게 구성하는 하나의 팁 ContainerView 에서만 @State, @ObservedObject 를 가지도록 제한하고, ContentView 에서는 @Bind 만 가지도록 강제하는 것. 이렇게 구성하면, ContentView 는 ViewModel 과의 interaction 이 VM→V 단방향으로만 이뤄지게 되고, V→VM 동작은 @Binding 을 경유해 Contai..
just press: [⌘] + [shift] + [.] ref: https://nordlocker.com/blog/how-to-show-hidden-files-mac/ How to show hidden files on Mac Apple hides certain files for a reason — tinkering with hidden files may interfere with your Mac's performance. But if you know what you're looking for, finding the folders is easy. Check out our tutorials on finding hidden files on a Mac. nordlocker.com
스위프트플레이그라운드에서 코코아팟을 사용하려면. 매번 애가 많이 쓰여서 이참에 정리하고 넘어가고자 함. 방법은 2가지 있는 듯. 1. ruby gem cocoapods-playgrounds
first of all; add filename or pattern to ".gitignore" file now remove from git tracking git rm -r --cached git rm --cached And commit this ref: https://stackoverflow.com/questions/1274057/how-do-i-make-git-forget-about-a-file-that-was-tracked-but-is-now-in-gitignore How do I make Git forget about a file that was tracked, but is now in .gitignore? I put a file that was previously being tracked by..
Like this: public struct Demand { public static let unlimited: Self = .init(demand: UInt(Int.max) + 1) public static func max(_ value: Int) -> Self { .init(demand: UInt(value)) } private var _demand: UInt private init(demand: UInt) { _demand = demand } } Demand 값은 양수만 갖는다. Demand 는 양수외에 특이값 무제한 이라는 속성도 가질 수 있다. 이런 경우 외부 노출값은 Int 형식으로 사용하고, 내부값을 UInt 를 사용하여, Int 형식의 범위에는 포함되지 않고, UInt 로만 표현 가능한 값..
면접 그 합격 때문에 그 입사 때문에 내가 지금껏 살아서 오늘 오늘이 지나서 그 팀장 다시 볼 수 없게 되면 회고할 수 없게 되면 어쩌죠 그 많은 회사에 왜 하필 우리 만나서 개발 하고 팀장 먼저 떠나요 우리가 만들고 우리가 함께한 카톡 잊진 못할 거야 다시 3년은 함께 하자는 말도 내 목숨처럼 한 그 약속도 해줄수 없어서 난 지킬 수 없어서 미안하단 말도 해줄 수 없을 것 같아 코드 그 리뷰 때문에 그 회고 때문에 내가 지금껏 살아서 오늘 오늘이 지나서 풀리퀘 다시 할 수 없게 되면 회고할 수 없게 되면 어쩌죠 다시 3년은 함께 하자는 말도 내 목숨처럼 한 그 약속도 해줄수 없어서 난 지킬 수 없어서 미안하단 말도 해줄 수 없을 것 같아 카톡 그 면접 때문에 그 합격 때문에 내가 지금껏 살아서 오늘, ..
다시 시작할 너에게 혹시 네 code가 짐이 된다면 모두 다 revert 하면돼 어렴풋한 commit 하나 남아있지 않도록 훗날 네곁에 누군가 ref-check 해오면, 이젠 다 revert 했단 말 대신 처음부터 너의 commit 한 개 없다 말해줄께 ~ 😝😛😜🤪 - 1999년 발매곡의 후렴부 개사인데요. 이 곡은 무엇 일까요 ?
지원자의 사고의 흐름을 살펴 동료들과 함께 처리할 업무 성과를 가늠해보는 자리
Swift 실행환경에서 날짜 성분 출력하는 예제 import Foundation let now = Date() let calendar = Calendar.current print("era:", calendar.component(.era, from: now)) print("year:", calendar.component(.year, from: now)) print("yearForWeekOfYear:", calendar.component(.yearForWeekOfYear, from: now)) print("quarter:", calendar.component(.quarter, from: now)) print("month:", calendar.component(.month, from: now)) print("..