| name | explain-diff-html |
|---|---|
| description | Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output. |
Please make me a rich, interactive explanation of the specified code change.
It should have these sections:
Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.
This sucks, but thankfully there are ways to work around it.
Before diving in: I encourage you to read this entire document, including the
| import lldb | |
| def __lldb_init_module(debugger, internal_dict): | |
| debugger.HandleCommand('command script add -f SwiftPrinter.printer pjson') | |
| def printer(debugger, command, result, internal_dict): | |
| debugger.HandleCommand('p print(String(data: try! JSONSerialization.data(withJSONObject:' + command + ', options: .prettyPrinted), encoding: .utf8 )!)') |
| // | |
| // Combine+WithLatestFrom.swift | |
| // | |
| // Created by Shai Mishali on 29/08/2019. | |
| // Copyright © 2019 Shai Mishali. All rights reserved. | |
| // | |
| import Combine | |
| // MARK: - Operator methods |
| struct Cart { | |
| private let action = PublishRelay<Action>() | |
| public let items: Observable<[Item]> | |
| init() { | |
| items = action | |
| .scan([Item]()) { items, action in | |
| switch action { | |
| case .add(let item): | |
| return items + [item] |
| #!/sbin/openrc-run | |
| description="node_exporter" | |
| : ${NODE_PIDFILE:=/var/run/node_exporter.pid} | |
| : ${NODE_USER:=root} | |
| depend() { | |
| need net | |
| need localmount |
| // The MIT License (MIT) | |
| // | |
| // Copyright (c) 2017 Alexander Grebenyuk (github.com/kean). | |
| import Foundation | |
| import RxSwift | |
| import RxCocoa | |
| extension ObservableType { |
| // | |
| // UserDefaults+Codable.swift | |
| // Converter UltraLight | |
| // | |
| // Created by Brent Royal-Gordon on 8/31/17. | |
| // Copyright © 2017 Architechies. All rights reserved. | |
| // MIT-licensed, go nuts with it. | |
| // | |
| import Foundation |
| // | |
| // PaginationNetworkLogic.swift | |
| // | |
| // Created by Daniel Tartaglia on 4/9/17. | |
| // Copyright © 2019 Daniel Tartaglia. MIT License | |
| // | |
| import RxSwift | |
| struct PaginationUISource { |
| #!/bin/sh | |
| rm -rf "/Applications/Adobe*" | |
| rm -rf "~/Library/Application Support/Adobe/" | |
| rm -rf "~/Library/Caches/Adobe*/" | |
| sudo rm -rf "/Applications/Utilities/Adobe*" | |
| sudo rm -rf "/Library/Application Support/Adobe/" | |
| sudo rm -rf "/Users/Shared/Adobe/" |