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
import Cocoa | |
final class AppDelegate: NSObject, NSApplicationDelegate { | |
private var statusItem: NSStatusItem! | |
func applicationDidFinishLaunching(_ aNotification: Notification) { | |
statusItem = NSStatusBar.system.statusItem(withLength: 450) | |
let contentView = ContentView() | |
contentView.translatesAutoresizingMaskIntoConstraints = false | |
if let button = statusItem.button { |
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
import UIKit | |
extension UITableView { | |
func dequeue<Cell: UITableViewCell>( | |
_ reusableCellType: Cell.Type, | |
for indexPath: IndexPath, | |
identifier: String? = nil | |
) -> Cell { | |
let identifier = identifier ?? String(describing: reusableCellType) | |
register(reusableCellType, forCellReuseIdentifier: identifier) |
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
// LinkedIn Post: https://www.linkedin.com/posts/lucaswk_creating-rule-enforced-types-is-a-powerful-activity-7167473213868785665-tJRS?utm_source=share&utm_medium=member_desktop | |
// Ordinary way | |
extension [Double] { | |
var mean: Double? { | |
guard !isEmpty else { | |
return nil | |
} | |
guard let sum else { |
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
import XCTest | |
/// An extension for `XCTestCase` to express when a value is not relevant to the test outcome. | |
/// | |
/// By using the `arbitrary` method, you can indicate that a certain value provided to the test does not play a significant role in the test scenario. It helps to avoid the creation of distracting variables whose values are inconsequential, focusing on what really matters in the test. The term 'arbitrary' is chosen to signify that the value is placeholder and could be substituted for any other value without affecting the test's behavior. | |
/// | |
/// ## Topics | |
/// | |
/// - Reducing Noise in Tests | |
/// |
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
import SwiftUI | |
#if canImport(UIKit) | |
typealias PlatformColor = UIColor | |
#elseif canImport(AppKit) | |
typealias PlatformColor = NSColor | |
#endif | |
extension Color { | |
var rgba: (red: Double, green: Double, blue: Double, alpha: Double) { | |
var red = CGFloat() | |
var green = CGFloat() |
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
import SwiftUI | |
struct CustomButton { | |
let title: String | |
let url: URL | |
} | |
struct Profile { | |
let name: String | |
let headline: String |
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 Double { | |
func interpolated(to b: Double, at t: Double) -> Double { | |
self + (b - self) * (t * t) | |
} | |
} | |
extension [Color] { | |
func rgbaLerp(at t: Double) -> Color { | |
let position = t * Double(count - 1) | |
let i = Int(position) |
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
import SwiftUI | |
// MARK: - Lerp | |
extension Color { | |
func rgbaLerp(to endColor: Color, _ t: CGFloat) -> Color { | |
let a = rgba | |
let b = endColor.rgba | |
let red = a.r + (b.r - a.r) * t |
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
import XCTest | |
// # Setup | |
// Big array size: 1_000_000_000 (1 billion elements of 12345) | |
// Small array size: 2 [12345, 12345] | |
// Loop: 1_000_000 (1 million) times. | |
// Machine: Macbook Pro 2023 16" M2 Max 32gb | |
// # Results | |
// TLDR: Stored: 3% faster |
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 Collection where Element: Numeric { | |
var sum: Element { | |
reduce(0, +) | |
} | |
} |
NewerOlder