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
public extension FileManager { | |
func makeTree(atPath path: String, level: Int) throws -> [String] { | |
var strings = [String]() | |
let items = try self.contentsOfDirectory(atPath: path) | |
for item in items.sorted(by: { ($0 as NSString).lastPathComponent < ($1 as NSString).lastPathComponent }) { | |
var isDirectory: ObjCBool = false | |
let itemPath = (path as NSString).appendingPathComponent(item) | |
if self.fileExists(atPath: itemPath, isDirectory: &isDirectory) && isDirectory.boolValue { | |
strings.append("+ " + (item as NSString).lastPathComponent) |
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
#!/bin/bash | |
# ================================ | |
# Script: setup.sh | |
# Description: Installs essential developer tools and Swift compiler on Ubuntu 24.04.1 LTS ARM64. | |
# Usage: sudo bash setup.sh | |
# ================================ | |
# Exit immediately if a command exits with a non-zero status | |
set -e |
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
/* | |
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 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
// | |
// 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 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
// | |
// 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 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
// | |
// 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 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
// 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 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
// 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 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 UnsafePointer<UInt8> { | |
var string: String? { | |
return String(validatingUTF8: UnsafeRawPointer(self).assumingMemoryBound(to: CChar.self)) | |
} | |
} |
NewerOlder