Skip to content

Instantly share code, notes, and snippets.

View xiao99xiao's full-sized avatar

Xiao Xiao xiao99xiao

  • Rakuraku Tech
  • Saitama, Japan
View GitHub Profile
@dkun7944
dkun7944 / ContentView.swift
Created July 31, 2023 03:36
AirDrop iOS 17 Swift.Shader Animation
//
// ContentView.swift
// Airdrop Demo
//
// Created by Daniel Kuntz on 7/30/23.
//
import SwiftUI
struct ContentView: View {
@steventroughtonsmith
steventroughtonsmith / UIView+Tooltips.h
Last active December 23, 2023 11:05
WIP tooltips for Mac Catalyst
//
// UIView+Tooltips.h
// Crossword
//
// Created by Steven Troughton-Smith on 13/09/2019.
// Copyright © 2019 Steven Troughton-Smith. All rights reserved.
//
#import <UIKit/UIKit.h>
@Qata
Qata / JSON.swift
Last active April 18, 2019 00:27
A JSONDecoder that wraps a JSONParser that isomorphically preserves the values of floating point numbers by treating all numbers as strings until instantiation of the exact type.
import Foundation
public indirect enum JSON: Equatable {
case null
case string(String)
case number(String)
case bool(Bool)
case dictionary([String: JSON])
case array([JSON])
}
@mremond
mremond / MobileProvision.swift
Created November 9, 2018 09:11
Read mobile provisioning profile from Swift
//
// MobileProvision.swift
// Fluux.io
//
// Created by Mickaël Rémond on 03/11/2018.
// Copyright © 2018 ProcessOne.
// Distributed under Apache License v2
//
import Foundation
@namuan
namuan / setup_webdav.md
Last active November 11, 2024 18:20
Setting up WebDAV server on Mac

Make sure that Mac Firewall allows incoming connection

cd <dir>
# Start WebDAV server
sudo wfsctl start
# Check status
sudo wfsctl start
# Share current directory
sudo wfsctl share $PWD
@tualatrix
tualatrix / ShareNavigationController.swift
Created April 13, 2018 08:44
Perfect presentation animation of iOS Share Extensions's Navigation Controller
//
// ShareNavigationController.swift
//
// Created by Tualatrix Chou on 2018/04/13.
//
// Use as the root navigation controller
import UIKit
class ShareNavigationController: UINavigationController {
@rmhsilva
rmhsilva / MacOS trackpad.md
Last active March 29, 2025 04:49
Accessing raw multitouch trackpad data (MacOS)
@mminer
mminer / MyService.swift
Last active April 23, 2024 23:00
Components of XPC service.
import Foundation
class MyService: NSObject, MyServiceProtocol {
func upperCaseString(_ string: String, withReply reply: @escaping (String) -> Void) {
let response = string.uppercased()
reply(response)
}
}
@nitrag
nitrag / GPSExif.swift
Last active October 14, 2023 22:50
Generate Metadata Exif for GPS
//
// Generate EXIF GPS metadata
// Swift 3
// Exif Version 2.2.0.0 supports decimal degrees
import Foundation
import CoreLocation
import ImageIO
extension CLLocation {