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 Foundation | |
import SwiftUI | |
final class Contact: ObservableObject, Identifiable { | |
let id = UUID() | |
@Published var name: String | |
@Published var city: String | |
@Published var profile: String | |
init(name: String, city: String, profile: String) { |
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
Twigit Privacy Policy. | |
We don't collect data from the app. The app MixPanel SDK right now is disabled and is not working. |
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 Foundation | |
// Complete the kangaroo function below. | |
func kangaroo(x1: Int, v1: Int, x2: Int, v2: Int) -> String { | |
if v2 >= v1 { | |
return "NO" | |
} | |
let speedDifference = v1 - v2 | |
let initialPositionDifference = x2 - x1 |
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
APFS Container (1 found) | |
| | |
+-- Container disk1 6ED616D6-3F0A-4B14-8DD6-8A590924A195 | |
==================================================== | |
APFS Container Reference: disk1 | |
Capacity Ceiling (Size): 56134905856 B (56.1 GB) | |
Capacity In Use By Volumes: 27634737152 B (27.6 GB) (49.2% used) | |
Capacity Available: 28500168704 B (28.5 GB) (50.8% free) | |
| | |
+-< Physical Store disk0s3 FBD5D396-6138-419C-BF7F-81C12F0BCDA7 |
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
/dev/disk0 (internal, physical): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme *251.0 GB disk0 | |
1: EFI EFI 209.7 MB disk0s1 | |
2: Apple_HFS 193.9 GB disk0s2 | |
3: Apple_APFS Container disk1 56.1 GB disk0s3 | |
4: Apple_KernelCoreDump 655.4 MB disk0s4 | |
/dev/disk1 (synthesized): | |
#: TYPE NAME SIZE IDENTIFIER |
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
start size index contents | |
0 1 PMBR | |
1 1 Pri GPT header | |
2 32 Pri GPT table | |
34 6 | |
40 409600 1 GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B | |
409640 378644440 2 GPT part - 48465300-0000-11AA-AA11-00306543ECAC | |
379054080 262144 | |
379316224 109638488 3 GPT part - 7C3457EF-0000-11AA-AA11-00306543ECAC | |
488954712 1280000 4 GPT part - 5361644D-6163-11AA-AA11-00306543ECAC |
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
warning: option -f is not implemented, ignoring | |
<plist version="1.0"> | |
<dict> | |
<key>fsck_msg_type</key> <string>VERIFY</string> | |
<key>fsck_verbosity</key> <integer>0</integer> | |
<key>fsck_msg_number</key> <integer>101</integer> | |
<key>fsck_msg_string</key> <string>Checking volume.</string> | |
</dict> | |
</plist> | |
<plist version="1.0"> |
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
// | |
// AppDelegate.swift | |
// TryBackendReferenceWithRealm | |
// | |
// Created by pbrewczynski on 8/7/17. | |
// Copyright © 2017 pbrewczynski. All rights reserved. | |
// | |
import UIKit | |
import RealmSwift |
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
// | |
// AppDelegate.swift | |
// TryBackendReferenceWithRealm | |
// | |
// Created by pbrewczynski on 8/7/17. | |
// Copyright © 2017 pbrewczynski. All rights reserved. | |
// | |
import UIKit | |
import RealmSwift |
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
extension String { | |
var bannana : String { | |
let shortName = String(characters.dropFirst(1)) | |
return "\(self) \(self) Bo B\(shortName) Banana Fana Fo F\(shortName)" | |
} | |
} | |
let bananaName = "Jimmy".bannana // "Jimmy Jimmy Bo Bimmy Banana Fana Fo Fimmy" |