This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@propertyWrapper struct DecodableConfiguration<T, ConfigurationProvider> : Decodable where T : DecodableWithConfiguration, ConfigurationProvider : DecodingConfigurationProviding, T.DecodingConfiguration == ConfigurationProvider.DecodingConfiguration { | |
var wrappedValue: T | |
init(wrappedValue: T) { | |
self.wrappedValue = wrappedValue | |
} | |
init(wrappedValue: T, from configurationProvider: ConfigurationProvider.Type) { | |
self.wrappedValue = wrappedValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub SaveAsSeparatePDFs() | |
'Updated by LukLuca 9-11-2020 | |
Dim xPathStr As Variant | |
Dim xDictoryStr As String | |
Dim xFileDlg As FileDialog | |
Dim xStartPage, xEndPage, xPages As Long | |
Dim xStartPageStr, xEndPageStr, xPagesStr As String | |
Dim xScaledEndPage As Long | |
Set xFileDlg = Application.FileDialog(msoFileDialogFolderPicker) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Reboot with CMD+R pressed to boot into macOS Recovery | |
2) Open Terminal from Utilities menu | |
3) Type: mv /Volumes/Macintosh\ HD/System/Library/Extensions/AppleThunderboltNHI.kext /Volumes/Macintosh\ HD/System/Library/Extensions/AppleThunderboltNHI.kext.BAK | |
4) Reboot and fuhgedaboudit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) reboot with CMD+R pressed. | |
2) open Terminal | |
3) csrutil disable | |
4) reboot in normal mode | |
5) sudo mv /System/Library/Extensions/AppleThunderboltNHI.kext /System/Library/Extensions/AppleThunderboltNHI.kext.BAK | |
6) reboot with CMD+R pressed | |
7) csrutil enable | |
8) reboot and forget about problem |