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
| /******************************************************************************/ | |
| /* Mednafen - Multi-system Emulator */ | |
| /******************************************************************************/ | |
| /* CDAccess.cpp: | |
| ** Copyright (C) 2011-2017 Mednafen Team | |
| ** | |
| ** This program is free software; you can redistribute it and/or | |
| ** modify it under the terms of the GNU General Public License | |
| ** as published by the Free Software Foundation; either version 2 | |
| ** of the License, or (at your option) any later version. |
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
| accessibility_enable = "false" | |
| accessibility_narrator_speech_speed = "5" | |
| ai_service_enable = "false" | |
| ai_service_mode = "1" | |
| ai_service_pause = "false" | |
| ai_service_source_lang = "0" | |
| ai_service_target_lang = "0" | |
| ai_service_url = "http://localhost:4404/" | |
| all_users_control_menu = "false" | |
| app_icon = "default" |
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
| import PackageDescription | |
| import Foundation | |
| import Swift | |
| extension PackageDescription.Product { | |
| public static func iOSApplication( | |
| name: Swift.String, | |
| targets: [Swift.String], | |
| bundleIdentifier: Swift.String? = nil, | |
| teamIdentifier: Swift.String? = nil, |
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
| /* | |
| Strings.strings | |
| Provenance | |
| Created by Joseph Mattiello on 8/16/21. | |
| Copyright © 2021 Provenance Emu. All rights reserved. | |
| */ | |
| /* Loading and item */ | |
| "Loading" = "Loading"; |
I hereby claim:
- I am joematt on github.
- I am jmattiello (https://keybase.io/jmattiello) on keybase.
- I have a public key ASD8C10kbjg_zc7WK27yd2I-CqHQsq61gs0Wom9er8INGgo
To claim this, I am signing this object:
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
| protocol SOAPElement : Codable { | |
| static var namespace : String { get } | |
| static var uri : String { get } | |
| } | |
| protocol WSSEElement : SOAPElement {} | |
| /* | |
| <wsse:Security> | |
| <wsse:UsernameToken> |
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
| - (void)enableFirebaseSyncCompletion:(void(^)(void))completion { | |
| // ------- This is the setup of the groups, factories etc ----------- | |
| // Create a new top level group, __block so we can pass it into child groups | |
| __block dispatch_group_t topGroup = dispatch_group_create(); | |
| // Type-defs make things easier to read | |
| typedef void (^ReturnedBlock)(void); | |
| typedef void (^ParamBlock)(ReturnedBlock); |
This script will update Info.plist of a target in XCode with the following
CFBundleVersionto the git commit countGitDateto the date of the last commitGitBranchto the current branch nameGitTagto the latest tag on current branch
Creates a .version file to track last update and appease XCode needing a non-mutable output path.
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
| import UIKit | |
| extension UIView { | |
| enum SALViewError : Error { | |
| case noSuperview | |
| } | |
| func anchorAllEdgesToSuperview() throws { | |
| guard let superview = superview else { throw SALViewError.noSuperview } |
NewerOlder





