Created: February 17, 2022 12:12 PM
- 2022-02-18: Initial Draft
- 2022-03-03: Update for feedback from LikerLand: Rename query interfaces, Include ISCN version at first mint in metadata, Clarify relation to ISCN
| import sys | |
| import os | |
| import plistlib | |
| from pprint import pprint | |
| def get_acknowledgements(path='.'): | |
| paths = [] | |
| for root, dirs, files in os.walk("."): | |
| if 'Pods' in root: |
| #!/bin/sh | |
| echo "-- Removing exited containers --\n" | |
| docker ps --all --quiet --filter="status=exited" | xargs --no-run-if-empty docker rm --volumes | |
| echo "\n\n-- Removing images created older than a week --\n" | |
| docker images | grep -v "minute\|hour\|day" | awk '{print $3}' | xargs docker rmi |
| 'use strict'; | |
| const _ = require('lodash'); | |
| const skygear = require('skygear'); | |
| const skygearCloud = require('skygear/cloud'); | |
| const { getContainer } = require('./container'); | |
| const { | |
| fetchSchema, | |
| getReferenceType | |
| } = require('./schema'); |
| Detected MIME: application/octet-stream | |
| Uploading: CHANGELOG.md as CHANGELOG.md | |
| Compressing: README.md | |
| Detected MIME: text/plain; charset=utf-8 | |
| Uploading: /var/folders/b2/cfpkp76j4bb1b65_00rkfyqm0000gn/T/oursky559651827 as README.md | |
| Compressing: a.log | |
| Compressing: bower.json | |
| Detected MIME: text/plain; charset=utf-8 | |
| Uploading: /var/folders/b2/cfpkp76j4bb1b65_00rkfyqm0000gn/T/oursky721252509 as bower.json | |
| Detected MIME: text/plain; charset=utf-8 |
| Error: AccessDenied Access Denied <nil> | |
| AccessDenied Access Denied 403 | |
| Compressing: README.md | |
| Compressing: a.log | |
| Compressing: bower.json | |
| Detected MIME: text/plain; charset=utf-8 | |
| Uploading: /var/folders/b2/cfpkp76j4bb1b65_00rkfyqm0000gn/T/oursky996853161 as bower.json | |
| Detected MIME: application/octet-stream | |
| Uploading: CHANGELOG.md as CHANGELOG.md | |
| Detected MIME: text/plain; charset=utf-8 |
| import logging | |
| log = logging.getLogger(__name__) | |
| log.info("I am application log") |
| - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
| [[FBSDKApplicationDelegate sharedInstance] application:application didFinishLaunchingWithOptions:launchOptions]; | |
| SKYContainer *container = [SKYContainer defaultContainer]; | |
| [container configAddress:SKYGEAR_ENDPOINT]; | |
| [container configureWithAPIKey:SKYGEAR_APIKEY]; | |
| [container loadAccessCurrentUserRecordIDAndAccessToken]; | |
| container.delegate = self; | |
| void (^registerDevice)(void) = ^void(void) { |
I hereby claim:
To claim this, I am signing this object:
| import logging | |
| import json | |
| import requests | |
| class SlackHandler(logging.Handler): # Inherit from logging.Handler | |
| def __init__(self, domain, token, channel, name='LOGGER'): | |
| logging.Handler.__init__(self) | |
| self.domain = domain |