Skip to content

Instantly share code, notes, and snippets.

View Koze's full-sized avatar
:octocat:
Refactoring

Koze Koze

:octocat:
Refactoring
View GitHub Profile
@Koze
Koze / UIFont+EKDayOccurrenceView.h
Last active February 7, 2020 14:00
This API seems to be private use. You can directly import header <EventKitUI/UIFont+EKDayOccurrenceView.h>
//
// UIFont+EKDayOccurrenceView.h
// EventKitUI
//
// Created by harry-dev on 4/18/19.
// Copyright © 2019 Apple Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@Koze
Koze / EventKitUIBundle.h
Last active October 15, 2019 06:00
This API seems to be private use. You can directly import header <EventKitUI/EventKitUIBundle.h>
//
// EventKitUIBundle.h
// EventKitUI
//
// Created by Greg Novick on 2/26/08.
// Copyright 2008 Apple Computer, Inc. All rights reserved.
//
#import <EventKitUI/EventKitUIDefines.h>
#import <Foundation/Foundation.h>
import Foundation
extension RawRepresentable {
init?(rawValue: Self.RawValue?) {
guard let rawValue = rawValue else {
return nil
}
self.init(rawValue: rawValue)
}
}
@Koze
Koze / speechVoices.tsv
Last active June 16, 2024 04:12
List of AVSpeechSynthesisVoice.speechVoices() on iOS Device
Language Name Quality Identifier Class
ar-SA Maged Default com.apple.ttsbundle.Maged-compact AVSpeechSynthesisVoice
cs-CZ Zuzana Default com.apple.ttsbundle.Zuzana-compact AVSpeechSynthesisVoice
da-DK Sara Default com.apple.ttsbundle.Sara-compact AVSpeechSynthesisVoice
de-DE Anna Default com.apple.ttsbundle.Anna-compact AVSpeechSynthesisVoice
de-DE Helena Default com.apple.ttsbundle.siri_female_de-DE_compact AVSpeechSynthesisVoice
de-DE Martin Default com.apple.ttsbundle.siri_male_de-DE_compact AVSpeechSynthesisVoice
el-GR Melina Default com.apple.ttsbundle.Melina-compact AVSpeechSynthesisVoice
en-AU Catherine Default com.apple.ttsbundle.siri_female_en-AU_compact AVSpeechSynthesisVoice
en-AU Gordon Default com.apple.ttsbundle.siri_male_en-AU_compact AVSpeechSynthesisVoice
@Koze
Koze / speechVoices.tsv
Created September 29, 2019 13:53
List of AVSpeechSynthesisVoice.speechVoices() on iOS Simulator
Language Name Identifier
ar-SA Maged com.apple.ttsbundle.Maged-compact
cs-CZ Zuzana com.apple.ttsbundle.Zuzana-compact
da-DK Sara com.apple.ttsbundle.Sara-compact
de-DE Anna com.apple.ttsbundle.Anna-compact
el-GR Melina com.apple.ttsbundle.Melina-compact
en-AU Karen com.apple.ttsbundle.Karen-compact
en-GB Daniel com.apple.ttsbundle.Daniel-compact
en-IE Moira com.apple.ttsbundle.Moira-compact
en-IN Rishi com.apple.ttsbundle.Rishi-compact
@Koze
Koze / CIFilter.csv
Last active October 16, 2019 04:11
CIFilter Changes iOS 12 - iOS 13
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
iOS 13.1.3
CIAccordionFoldTransition
CIAdditionCompositing
CIAffineClamp
CIAffineTile
CIAffineTransform
CIAreaAverage
CIAreaHistogram
CIAreaMaximum
CIAreaMaximumAlpha
@Koze
Koze / added.txt
Last active March 31, 2019 13:31
library diff of Pages 7.3 and 8.0
/System/Library/PrivateFrameworks/ClassKit.framework/Versions/A/ClassKit (compatibility version 1.0.0, current version 144.0.27)
/System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit (compatibility version 1.0.0, current version 113.0.0)
@rpath/TSKit.framework/Versions/A/TSKit (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSStyles.framework/Versions/A/TSStyles (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSUtility.framework/Versions/A/TSUtility (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSCoreSOS.framework/Versions/A/TSCoreSOS (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSPersistence.framework/Versions/A/TSPersistence (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSTables.framework/Versions/A/TSTables (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSApplication.framework/Versions/A/TSApplication (compatibility version 1.0.0, current version 1.0.0)
@rpath/TSAccessibility.framework/Versions/A/TSAccessi
@Koze
Koze / Pages7.3.txt
Created March 31, 2019 13:04
otool -L /Applications/Pages.app/Contents/MacOS/Pages
/Applications/Pages.app/Contents/MacOS/Pages:
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate (compatibility version 1.0.0, current version 4.0.0)
/System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication (compatibility version 1.0.0, current version 425.220.25)
/System/Library/Frameworks/Accounts.framework/Versions/A/Accounts (compatibility version 1.0.0, current version 1.0.0)
/System/Library/PrivateFrameworks/AppleAccount.framework/Versions/A/AppleAccount (compatibility version 1.0.0, current version 1.0.0)
/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit (compatibility version 1.0.0, current version 1.0.0)
/System/Library/PrivateFrameworks/AuthKitUI.framework/Versions/A/AuthKitUI (compatibility version 1.0.0, current version 1.0.0)
/usr/lib/libcompression.dylib (compatibility version 1.0.0, current version 1.0.0)
/usr/lib/libDiagnosticMessagesClient.dylib (compatibility version 1.0.0, current version 107.0.0)
/usr/lib/libic
@Koze
Koze / CaseIterable+Index.swift
Last active July 16, 2020 10:17
index of CaseIterable enum
/*
Copyright (c) 2018 Kazume Koze
Released under the MIT license
https://opensource.org/licenses/mit-license.php
*/
//
// CaseIterable+Index.swift
//
//
@Koze
Koze / Home.tsv
Last active June 10, 2018 12:41
Linked libraries of News, Stocks, Voice Memos and Home app with 10.14 Beta (18A293u).
We can make this file beautiful and searchable if this error is corrected: It looks like row 9 should actually have 3 columns, instead of 2. in line 8.
library path compatibility version current version
/System/iOSSupport/System/Library/Frameworks/ContactsUI.framework/Versions/A/ContactsUI 1.0.0 33.0.0
/System/iOSSupport/System/Library/Frameworks/MapKit.framework/Versions/A/MapKit 1.0.0 14.0.0
/System/iOSSupport/System/Library/Frameworks/MessageUI.framework/Versions/A/MessageUI 1.0.0 3445.100.9
/System/iOSSupport/System/Library/Frameworks/MobileCoreServices.framework/Versions/A/MobileCoreServices 1.0.0 921.2.0
/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Versions/A/UIKit 1.0.0 61000.0.0
/System/iOSSupport/System/Library/PrivateFrameworks/Accessibility.framework/Versions/A/Frameworks/AccessibilityUI.framework/Versions/A/AccessibilityUI 1.0.0 1.0.0
/System/iOSSupport/System/Library/PrivateFrameworks/Accessibility.framework/Versions/A/Frameworks/AccessibilityUIUtilities.framework/Versions/A/AccessibilityUIUtilities 1.0.0 1.0.0
/System/iOSSupport/System/Library/PrivateFrameworks/AccessibilityUtilities.framework/Versions/A/AccessibilityUtilities 1