Caution
Doesn't work unless you have the value for clipt
, which I don't know how to derive.
Inputs:
- YouTube video URL:
https://www.youtube.com/watch?v=<V_ID>
- YouTube clip URL:
https://youtube.com/clip/<C_ID>?si=<SI>
Caution
Doesn't work unless you have the value for clipt
, which I don't know how to derive.
Inputs:
https://www.youtube.com/watch?v=<V_ID>
https://youtube.com/clip/<C_ID>?si=<SI>
[*] | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.{swift,h,m}] | |
indent_style = space | |
indent_size = 4 | |
# Other properties Xcode 16 supports, as per https://developer.apple.com/documentation/xcode-release-notes/xcode-16-release-notes | |
# |
extension String { | |
enum RandomStringGenerationError: Error { | |
case secRandomCopyBytesFailed(status: Int32) | |
} | |
/// Returns a cryptographically secure string generated with characters from the given `Set<Character>` and with length | |
/// `length`. | |
/// | |
/// - Complexity: O(n) where n is the given `length`. |
// I find hard-wrapping better because it makes it easier to diff changes over | |
// long line **without** relying on the tool of choice supporting | |
// soft-wrapping. Change at the end of a "long" line | |
// Change at the end of a "long" line | |
-Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequatypo. | |
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. | |
// Change with 80 characters hard-wrap | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor |
import SwiftUI | |
struct ExampleView: View { | |
var body: some View { | |
VStack { | |
Text("Title").bold() | |
Text("Subtitle") | |
} | |
} | |
} |
extension Date { | |
static func with(calendar: Calendar = .current, year: Int, month: Int, day: Int) -> Date { | |
// Because the `calendar` value is non-nil, it's safe to force unwrap the `date` value | |
DateComponents(calendar: calendar, year: year, month: month, day: day).date! | |
} | |
} |
# | |
# Proper version | |
# | |
WRAP_EMOJI = "🌯" | |
lane :test do |options| | |
UI.message wrap_in_emoji("Hello, World!") | |
end | |
def wrap_in_emoji(string) |
#!/bin/bash | |
# I run this only on macOS | |
set -ex | |
ISSUE=3708 | |
ROOT_DIR=/tmp/repro-$ISSUE | |
rm -rf $ROOT_DIR |
This:
heading 1 | heading 2 | heading 3
--- | --- | ---
abc | bcd | cde
def | efg | fgh
becomes this: