Skip to content

Instantly share code, notes, and snippets.

View longvudai's full-sized avatar

Long Vu longvudai

View GitHub Profile
@longvudai
longvudai / macOS_SytemPrefs.md
Created October 12, 2024 02:03 — forked from rmcdongit/macOS_SytemPrefs.md
Apple System Preferences URL Schemes

macOS 10.15 System Preference Panes

Below are a list of System Preference pane URLs and paths that can be accessed with scripting to assist users with enabling macOS security settings without having to walk them through launching System Preferences, finding panes, and scrolling to settings. Not all panes have an accessible anchor and some are OS specific.

To find the Pane ID of a specific pane, open the System Preferences app and select the desired Preference Pane. With the pane selected, open the ScriptEditor.app and run the following script to copy the current Pane ID to your clipboard and display any available anchors:

tell application "System Preferences"
	set CurrentPane to the id of the current pane
	set the clipboard to CurrentPane
@longvudai
longvudai / json.swift
Created August 5, 2022 13:08 — forked from mbuchetics/json.swift
Decoding arbitrary JSON with the new Decoder in Swift 4
enum JSON: Decodable {
case bool(Bool)
case double(Double)
case string(String)
indirect case array([JSON])
indirect case dictionary([String: JSON])
init(from decoder: Decoder) throws {
if let container = try? decoder.container(keyedBy: JSONCodingKeys.self) {
self = JSON(from: container)
import Foundation
final class PersistenceSyncManager {
private let fileManager: FileManager = .default
private let sharedContainer: URL
private let sharedTargetPath: String = "YOUR-SHARED-FOLDER"
private var contentContainerURL: URL { sharedContainer.appendingPathComponent(sharedTargetPath) }
static let shared = PersistenceSyncManager()
import Firebase
import FirebaseAuth
extension FirebaseApp {
private static var didConfigForAppExtension = false
static func configureFirebaseForAppExtension(
extensionPlistName: String,
accessGroup: String,
force: Bool = false
import UIKit
/*:
DateComponentsFormatter: A formatter that creates string representations of quantities of time.
*/
let dateComponentsFormatter = DateComponentsFormatter()
/*:
A DateComponentsFormatter can be configured with an array of NSCalendarUnits. These components are then used in the output.
@longvudai
longvudai / SplitViewController.swift
Created February 3, 2022 08:01 — forked from max-potapov/SplitViewController.swift
UITabBarController inside Master View of UISplitViewController
//
// SplitViewController.swift
// Gist
//
// Created by Maxim Potapov on 17/12/2017.
// Copyright © 2017 Maxim Potapov. All rights reserved.
//
import UIKit
@longvudai
longvudai / UIFont+Helpers.swift
Created June 30, 2021 03:53 — forked from shaps80/Font.swift
A set of UIFont helpers that matches the equivalent SwiftUI Font API.
import UIKit
public extension UIFont {
enum Leading {
case loose
case tight
}
private func addingAttributes(_ attributes: [UIFontDescriptor.AttributeName: Any]) -> UIFont {
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = grantdavis
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = YES
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
@longvudai
longvudai / Person.swift
Last active March 18, 2020 18:10
ARC-medium
class Person {
let name: String
init(name: String) {
self.name = name
print("\(name) is being initialized")
}
deinit {
@longvudai
longvudai / MyController.swift
Created December 4, 2018 19:42
set preferredStatusBarStyle when view controller is presented
// in myViewController
class MyViewController: UIViewController {
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
override func awakeFromNib() {
super.awakeFromNib()
modalPresentationCapturesStatusBarAppearance = true //allow this VC to control the status bar appearance