This file contains 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
#!/bin/bash | |
# Set Script Variables | |
project="<Project File>" | |
target="<Target To Get Version From>" | |
branch="beta" # Default branch | |
dry_run=false # Default dry run setting | |
# Function to get the version number from the Xcode project | |
getVersion() { |
This file contains 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 Foundation | |
import Cocoa | |
var outlierRecalculationOccured = false | |
var calculatedOutliers: [Float] = [] | |
// Enter data to be used | |
let ogData: [Float] = [22, 19, 25, 27, 30, 22, 19, 16, 23, 25, 21, 27, 28, 24, 25, 30, 35, 23, 22, 27].sorted() | |
extension Float { | |
/// Rounds the Float to decimal places value |
This file contains 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
[ | |
{ | |
"name": "Safari", | |
"icon_url": "https://is1-ssl.mzstatic.com/image/thumb/Purple126/v4/f8/76/09/f876095c-4f99-f138-d380-0420e21c3c89/AppIcon-0-0-1x_U007emarketing-0-0-0-10-0-0-sRGB-0-0-0-GLES2_U002c0-512MB-85-220-0-0.png/540x540bb.jpg", | |
"url": "https://apps.apple.com/us/app/safari/id1146562112", | |
"url_button_name": "Get", | |
"bundle_id": "com.apple.mobilesafari" | |
} | |
] |
This file contains 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
# By default, SwiftLint uses a set of sensible default rules you can adjust: | |
disabled_rules: # rule identifiers turned on by default to exclude from running | |
- colon | |
- comma | |
- control_statement | |
- type_name | |
- trailing_whitespace | |
- identifier_name | |
- statement_position | |
- force_try |
This file contains 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
[ | |
{ | |
"image_url": "https://via.placeholder.com/150", | |
"name": "John Smith", | |
"bridge_location": "Coding Key Bridge", | |
"status": "Active" | |
}, | |
{ | |
"image_url": "https://via.placeholder.com/150", | |
"name": "Jane Doe", |