<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
CREATE FUNCTION "nanoid"("size" int4 DEFAULT 21) | |
RETURNS text | |
LANGUAGE plpgsql | |
STABLE | |
AS | |
$$ | |
DECLARE | |
id text := ''; | |
i int := 0; | |
urlAlphabet char(64) := 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_0123456789'; |
Homebrew build logs for emscripten on macOS 10.15.7 | |
Build date: 2021-01-11 15:26:17 |
// swift-tools-version:4.0 | |
// The swift-tools-version declares the minimum version of Swift required to build this package. | |
import PackageDescription | |
let package = Package( | |
name: "GameMaster", | |
dependencies: [ | |
// Dependencies declare other packages that this package depends on. | |
// .package(url: /* package url */, from: "1.0.0"), |
#!/bin/bash | |
realpath() { | |
path=`readlink $0` | |
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}" | |
} | |
realpath "$0" |
#!/bin/fish | |
# Get dates in seconds since epoch | |
set -x EXPIRES (date --date=(cat /etc/letsencrypt/live/api.fyrestead.com/cert.pem | openssl x509 -noout -enddate | awk -F "=" '{print $2}') +%s) | |
set -x TODAY (date +%s) | |
set -x SPAN (expr $EXPIRES - $TODAY) | |
# if the span is <= seven days ... | |
if test $SPAN -le 604800 | |
# renew the cert |
// After your application launches, register to handle Apple Events | |
func applicationDidFinishLaunching(_ aNotification: Notification) | |
{ | |
let appleEventManager = NSAppleEventManager.shared() | |
appleEventManager.setEventHandler(self, | |
andSelector: #selector(AppDelegate.handleGetURLEvent(_:withReplyEvent:)), | |
forEventClass: AEEventClass(kInternetEventClass), | |
andEventID: AEEventID(kAEGetURL)) | |
} |
Error: Contents/Sources/Scene.swift:73: cannot call value of non-function type 'Bundle' | |
Error: Contents/Sources/AccessibilityExtensions.swift:36: cannot call value of non-function type 'NotificationCenter' | |
Error: Contents/Sources/AccessibilityExtensions.swift:40: cannot call value of non-function type 'NotificationCenter' | |
Warning: Contents/Sources/AccessibilityExtensions.swift:44: 'asynchronously(group:qos:flags:execute:)' is deprecated: replaced by instance method 'DispatchQueue.async(group:qos:flags:execute:)' | |
Error: Contents/Sources/Actor.swift:404: cannot call value of non-function type 'Bool' | |
Error: Contents/Sources/ActorType.swift:27: cannot call value of non-function type 'FileManager' | |
Error: Contents/Sources/ActorType.swift:30: cannot call value of non-function type 'Bundle' | |
Error: Contents/Sources/ActorType.swift:34: cannot call value of non-function type 'Bundle' | |
Error: Contents/Sources/AnimationComponent.swift:108: method does not override any method from its superclass | |
Error: Contents/Sources/Anim |
#include "PocoUUIDWrap.h" | |
#include <Poco/UUID.h> | |
#include <Poco/UUIDGenerator.h> | |
using Poco::UUID; | |
using Poco::UUIDGenerator; | |
PocoUUID *PocoUUIDCreate(void) | |
{ |
~> brew install class-dump | |
==> Downloading https://github.com/nygard/class-dump/archive/3.5.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/class-dump-3.5.tar.gz | |
==> xcodebuild -configuration Release SYMROOT=build PREFIX=/usr/local/Cellar/class-dump/3.5 ONLY_ACTIVE_ARCH=YES | |
Last 15 lines from /Users/shon/Library/Logs/Homebrew/class-dump/01.xcodebuild: | |
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -gmodules -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-implicit-atomic-properties -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wshadow -Wno-four-char-constants -Wno-conversion -Wconstant |