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
// | |
// ConfigurationOperator.swift | |
// | |
// Created by Matthew L. Judy on 2024/3/21. | |
// | |
/// Configuration Operator: | |
/// Provides an expressive way to instantiate, configure, and assign an object | |
/// in a single perceived step, reducing the boilerplate necessary to achieve |
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 Date | |
{ | |
var startOfMonth : Date? | |
{ | |
let calendar = Calendar.current | |
let components = calendar.dateComponents([.year, .month], from: self) | |
let firstDayDate = calendar.date(from: components) | |
return firstDayDate | |
} |
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
Thank you for contacting General Mills with your inquiry. We have enclosed all information we have available regarding the Fruit Corners line of products. | |
We hope you find this information helpful. Please let us know if we can help you again | |
Sincerely, | |
Katie Gafler | |
Consumer Services | |
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
#!/usr/bin/zsh | |
# | |
# mktsusbstick | |
# Configure a specific disk as a ThinStation USB Stick | |
# | |
### | |
# CONFIGURATION | |
# |
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
tok_split_gte=false | |
utf8_byte=false | |
utf8_force=false | |
indent_cmt_with_tabs=false | |
indent_align_string=false | |
indent_braces=false | |
indent_braces_no_func=false | |
indent_braces_no_class=false | |
indent_braces_no_struct=false | |
indent_brace_parent=false |
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
OTHER_CFLAGS = -Weverything -Wno-gnu -Wno-objc-missing-property-synthesis -Wno-undef -Wno-sign-compare -Wno-switch-enum -Wno-receiver-is-weak -Wno-direct-ivar-access -Wno-arc-repeated-use-of-weak -Wno-assign-enum -Wno-vla -Wno-documentation -Wno-documentation-unknown-command -Wno-padded -Wno-cstring-format-directive | |
// Software Versions | |
// Xcode: 7.2.1 | |
// Apple LLVM version 7.0.2 (clang-700.1.81) | |
// Target: x86_64-apple-darwin14.5.0 |