% /opt/homebrew/bin/ctags --version
Universal Ctags 6.1.0, Copyright (C) 2015-2023 Universal Ctags Team
Universal Ctags is derived from Exuberant Ctags.
Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
Compiled: Nov 30 2024, 05:11:31
URL: https://ctags.io/
Output version: 0.0
Optional compiled features: +wildcards, +regex, +gnulib_fnmatch, +gnulib_regex, +iconv, +option-directory, +xpath, +json, +interactive, +yaml, +case-insensitive-filenames, +packcc, +optscript, +pcre2
Swift's automatically provided memberwise initializer is a powerful feature. However, when an explicit initializer is present, Swift omits its memberwise initializer:
struct Person: Decodable {
let name: String
enum CodingKeys: CodingKey {
case name
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 ComposableArchitecture | |
import Dependencies | |
import SwiftUI | |
// Based on Isowords's `ComposableGameCenter.LiveKey.LocalPlayerClient.live`: | |
// https://github.com/pointfreeco/isowords/blob/main/Sources/ComposableGameCenter/LiveKey.swift#L80 | |
struct AuthClient { | |
enum AuthStatus { | |
case loggedIn |
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
#if canImport(UIKit) | |
import SnapshotTesting | |
import SwiftUI | |
public func assertCurrentDeviceSnapshot<SnapshotContent: View>( | |
for view: SnapshotContent, | |
precision: Float = 1, | |
record: Bool = false, | |
file: StaticString = #file, | |
testName: String = #function, |
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 Combine | |
import ComposableArchitecture | |
import SwiftUI | |
struct LoginFormState: Equatable { | |
var username: String = "" | |
var password: String = "" | |
var focusedField: Field? | |
enum Field: Hashable { |
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
~ % brew list | |
autoconf imagemagick mono qt the_silver_searcher | |
cmake jpeg node rbenv tmux | |
ctags libevent openssl rcm tree | |
freetype libpng pcre readline vim | |
gdbm libtiff pkg-config reattach-to-user-namespace xz | |
git libtool postgresql redis youtube-dl | |
heroku-toolbelt libyaml python ruby-build z | |
hub llvm python3 sqlite zsh |
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
# Laptop install from master, as of: https://github.com/thoughtbot/laptop/commit/8066ffa1b3f56e6b571d91979c30c0e2ba61498d | |
Changing your shell to zsh ... | |
Changing shell for wm. | |
Fixing OSX zsh environment bug ... | |
WARNING: Improper use of the sudo command could lead to data loss | |
or the deletion of important system files. Please double-check your | |
typing when using sudo. Type "man sudo" for more information. |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by PostgreSQL configure 9.3.5, which was | |
generated by GNU Autoconf 2.63. Invocation command line was | |
$ ./configure --disable-debug --prefix=/usr/local/Cellar/postgresql/9.3.5_1 --datadir=/usr/local/Cellar/postgresql/9.3.5_1/share/postgresql --docdir=/usr/local/Cellar/postgresql/9.3.5_1/share/doc/postgresql --enable-thread-safety --with-bonjour --with-gssapi --with-ldap --with-openssl --with-pam --with-libxml --with-libxslt --with-perl --with-tcl --with-ossp-uuid | |
## --------- ## | |
## Platform. ## |
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
clang called with: -E - | |
superenv executed: clang -E - -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/ossp-uuid/include -I/usr/local/opt/openssl/include -I/usr/local/opt/readline/include | |
clang called with: --version | |
superenv executed: clang -pipe -Os -march=native --version -isystem/usr/include/libxml2 -isystem/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers -I/usr/local/opt/ossp-uuid/include -I/usr/local/opt/openssl/include -I/usr/local/opt/readline/include -L/usr/local/opt/ossp-uuid/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries -Wl,-headerpad_max_install_names | |
clang called with: -v | |
superenv executed: clang -v | |
clang called with: -V |
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
2014-09-05 11:45:59 -0700 | |
./configure | |
--disable-debug | |
--prefix=/usr/local/Cellar/postgresql/9.3.5_1 | |
--datadir=/usr/local/Cellar/postgresql/9.3.5_1/share/postgresql | |
--docdir=/usr/local/Cellar/postgresql/9.3.5_1/share/doc/postgresql | |
--enable-thread-safety | |
--with-bonjour | |
--with-gssapi |
NewerOlder