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 DispatchQueue { | |
| private static var _onceTracker = [String]() | |
| func once(file: String = #file, function: String = #function, line: Int = #line, _ block:() -> Void) { | |
| let token = file + ":" + function + ":" + String(line) | |
| once(token: token, block) | |
| } | |
| /// Executes a block of code, associated with a unique token, only once. The code is thread safe and will | |
| /// only execute the code once even in the presence of multithreaded calls. |
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
| English: A dog. | |
| Swedish: What? | |
| English: The dog. | |
| English: Two dogs. | |
| Swedish: Okay. We have: En hund, hunden, Två hundar, hundarna. |
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/zsh | |
| # Git branch cleanup script - removes local branches whose remotes were deleted | |
| # Usage: ./git_cleanup.sh [path-to-git-repo] | |
| set -e | |
| # Handle path parameter | |
| if [ $# -gt 1 ]; then | |
| echo "Usage: $0 [path-to-git-repo]" |
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
| # ----------------------------------------- | |
| # Create permanent environment variable | |
| # | |
| # $1 - variable name | |
| # $2 - variable definition | |
| # @requires: '~/.zshrc' or '~/.bashrc' | |
| # ----------------------------------------- | |
| function new_env_var { | |
| local detected_shell="$(ps -o comm= -p $$)" | |
| local rcfile=$(echo "${HOME}/.${detected_shell//-/}rc") |
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
| import UIKit | |
| public protocol DiffableDatasource: AnyObject { | |
| typealias Snapshot = NSDiffableDataSourceSnapshot<Section, Item> | |
| typealias SnapshotProvider = () -> Snapshot | |
| associatedtype View | |
| associatedtype Datasource | |
| associatedtype Section: Hashable & Sendable | |
| associatedtype Item: Hashable & Sendable |
OlderNewer