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
/* | |
Using AWS-SDK-SWIFT to register push notification deveice token | |
https://github.com/awslabs/aws-sdk-swift | |
*/ | |
// import some others | |
import AWSSNS | |
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
// | |
// ZObjectRegistry.swift | |
// ZKit | |
// | |
// The MIT License (MIT) | |
// | |
// Copyright (c) 2024 Electricwoods LLC, Kaz Yoshikawa. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal |
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
// | |
// NSTextField+Blurred.swift | |
// ZKit | |
// | |
// The MIT License (MIT) | |
// | |
// Copyright (c) 2024 Electricwoods LLC, Kaz Yoshikawa. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal |
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
// | |
// Inspectable.swift | |
// Inspectables | |
// | |
// Created by Kaz Yoshikawa on 3/5/24. | |
// | |
// | |
// Overview: | |
// Inspectables a set of code help you implementing inspectable property values and its inspector value editing visual components, by using | |
// @InspectableValue, or @InspectableEnum property wrappers, then you may forcus writing property value editing components. |
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
// YObservable | |
// ZKit | |
// | |
// The MIT License (MIT) | |
// | |
// Copyright (c) 2016 Electricwoods LLC, Kaz Yoshikawa. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
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
// Swift 5.9 | |
// | |
// Following code demonstrate how to implemnt inspector-like view from abstruct protocol. | |
// Somehow, @Binding will not work in this case under Swift 5.9 | |
import SwiftUI | |
protocol Shape { | |
func view() -> AnyView |
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
extension UnsafePointer<UInt8> { | |
var string: String? { | |
return String(validatingUTF8: UnsafeRawPointer(self).assumingMemoryBound(to: CChar.self)) | |
} | |
} |
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
// AWS-SDK-Swift | |
// | |
// When you need to find if error is caused by resource not found,rather than other type of errors | |
// such as network error or access permissions related error. This is how to find, if this error | |
// is cause of resource not found. | |
// | |
// Note: | |
// I don't want to spend time for this next time, so I paste code snippet here for my future reference | |
func processHeadRequest(s3client: S3Client, bucket: String, key: String) async throws { |
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
// | |
// Data+Hexadecimal.swift | |
// | |
// The MIT License (MIT) | |
// | |
// Copyright (c) 2023 Electricwoods LLC, Kaz Yoshikawa. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
NewerOlder