Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
| load("@rules_cc//cc:cc_library.bzl", "cc_library") | |
| load("@rules_cc//cc:cc_shared_library.bzl", "cc_shared_library") | |
| load("@rules_cc//cc/common:cc_info.bzl", "CcInfo") | |
| load("@rules_cc//cc/common:cc_shared_library_info.bzl", "CcSharedLibraryInfo") | |
| def _cc_library_reexporter_impl(ctx): | |
| return [ | |
| ctx.attr.static_lib[CcInfo], | |
| ctx.attr.dynamic_lib[CcSharedLibraryInfo], | |
| ] |
| { | |
| "tools": [ | |
| { | |
| "name": "XcodeRead", | |
| "title": "Read", | |
| "description": "Reads the contents of a file within the Xcode project organization. Returns content in cat -n format with line numbers. Supports reading up to 600 lines by default with optional offset and limit parameters for large files.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "filePath": { |
swiftc main.swift -emit-module-path main.swiftmodule -emit-executable -enable-private-imports -Xfrontend -enable-implicit-dynamic./main -> prints From original bar()swiftc -emit-library inject.swift -o inject.dylib -I . -Xlinker -undefined -Xlinker suppress -Xlinker -flat_namespace -Xfrontend -disable-access-controlDYLD_INSERT_LIBRARIES=inject.dylib ./main -> prints From replacement bar()-Xfrontend -enable-implicit-dynamic removes you from having to add dynamic to everything you want to be replacable| addmedia | |
| addphoto | |
| addvideo | |
| appinfo | |
| boot | |
| bootstatus | |
| clone | |
| create | |
| darwinup | |
| delete |
-enforce-exclusivity=<value>SWIFT_ENFORCE_EXCLUSIVE_ACCESScheckedunchecked| Configuration | Compiler Flag Value | Build Setting Description | Build Setting Value | Notes |
|---|
| require 'spaceship' | |
| Spaceship::Portal.login | |
| Spaceship::Portal.select_team | |
| Spaceship::Portal.app.all.collect do |app| | |
| print "Delete #{ app.bundle_id }? [y/N]: " | |
| delete = gets.strip.downcase == "y" | |
| if delete | |
| puts "Deleting #{ app.bundle_id }" |
| /// So, lets talk about AppKit. The way this function works is by passing a delegate (which is required | |
| /// to be a NSObject, but here is typed as Any) which turns out to be the same type as `self`, a Selector, | |
| /// which in this case is `_something:didSomething:soContinue:` (not kidding), and some "contextInfo" | |
| /// (which is actually a block). While all of these arguments appear to be optional, passing nil through | |
| /// to the function call that `shouldCloseSelector` defines, or passing nil to super, will cause the app | |
| /// to crash. So then we need to call the function on `delegate` defined by `shouldCloseSelector`. | |
| /// | |
| /// According to the documentation the function signature for this selector looks like this: | |
| /// - (void)document:(NSDocument *)doc shouldClose:(BOOL)shouldClose contextInfo:(void *)contextInfo | |
| /// |
| #!/bin/bash | |
| set -euo pipefail | |
| xcrun altool --upload-app --type ios --file "path/to/foo.ipa" --username "$ITC_USER" --password "$ITC_PASSWORD" |
| import Foundation | |
| func set<T>(value: T, forKey key: String) { | |
| UserDefaults.standard.set(value, forKey: key) // this crashes because it's trying to store Optional<Date> | |
| } | |
| let date: Date! = Date() | |
| set(value: date, forKey: "key") |