Skip to content
View Catherine-K-George's full-sized avatar
Block or Report

Block or report Catherine-K-George

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. How to deliver single & batch messag... How to deliver single & batch messages to a specified Amazon SQS Queue in Swift
    1
    import AWSSQS
    2
    
                  
    3
    class SQS {
    4
        func send(_ model: Encodable, to queueURL: String) -> () {
    5
            
  2. Swift - Dispatch Work Item to show s... Swift - Dispatch Work Item to show search bar typeahead results
    1
    import UIKit
    2
    
                  
    3
    class SearchViewController: UIViewController {
    4
        
    5
        private var searchWorkItem: DispatchWorkItem?
  3. Swift AWS Cognito exception handler ... Swift AWS Cognito exception handler with customized descriptions
    1
    import AWSCognitoIdentityProvider
    2
    
                  
    3
    extension Error {
    4
        var customizedDescription: String {
    5
            let nsError = self as NSError
  4. UILabel extension with ReadMore/ Rea... UILabel extension with ReadMore/ ReadLess action
    1
    import UIKit
    2
    
                  
    3
    enum TrailingContent {
    4
        case readmore
    5
        case readless
  5. File upload to AWS S3 with pre-signe... File upload to AWS S3 with pre-signed URL iOS/Swift 5
    1
    import AWSS3
    2
    
                  
    3
    class AWSS3Uploader {
    4
        
    5
        /// Creates a upload request for uploading the specified file to a presigned remote URL
  6. UILabel extension to truncate & high... UILabel extension to truncate & highlight a keyword in a large sentence, add ellipsis to left & right of label
    1
    extension UILabel {
    2
        
    3
        private var attributes: [NSAttributedString.Key: Any] {
    4
            return [.font: self.font ?? UIFont.systemFont(ofSize: 15)]
    5
        }