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
// | |
// NetworkManager.h | |
// | |
@import Foundation; | |
@interface NetworkManager : NSObject | |
- (void)fetchDataCompletion:(void(^)(NSString *))completion; | |
- (void)GET:(NSString *)path completion:(void(^)(NSData *))completion; |
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
// | |
// CloudsView.swift | |
// | |
// Swift 4.2 | |
// | |
import UIKit | |
@available(iOS 10.0, *) | |
class CloudsView: UIView { |
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
xcrun simctl status_bar `xcrun simctl list devices | grep "Booted" | sed -e 's/.* (\(.*\)) (Booted.*/\1/'` override --time "9:41" --batteryState charged --batteryLevel 100 --cellularBars 4 |
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
<html> | |
<head> | |
<style> | |
:root { | |
color-scheme: light dark; | |
} | |
body { | |
font-family: -apple-system; | |
font-size: 10pt; |
OlderNewer