Skip to content

Instantly share code, notes, and snippets.

View plu's full-sized avatar
🏠
Working from home

Johannes Plunien plu

🏠
Working from home
  • Kleinanzeigen
  • Germany
View GitHub Profile
I2cWatchdog:232074585 | I2cSlave:105044135 | I2cWatch:232074585 | I2cRecovery:1449 | KeyMatrix:228521015 | UsbReport:25294777 | Time:26802443 | UsbGeneric:0 | UsbBasic:25288110 | UsbMedia:14 | UsbSystem:0 | UsbMouse:0
I2cWatchdog:232078283 | I2cSlave:105045817 | I2cWatch:232078283 | I2cRecovery:1449 | KeyMatrix:228524705 | UsbReport:25295177 | Time:26802855 | UsbGeneric:1 | UsbBasic:25288510 | UsbMedia:14 | UsbSystem:0 | UsbMouse:0
I2cWatchdog:232082924 | I2cSlave:105047926 | I2cWatch:232082924 | I2cRecovery:1449 | KeyMatrix:228529329 | UsbReport:25295679 | Time:26803370 | UsbGeneric:2 | UsbBasic:25289012 | UsbMedia:14 | UsbSystem:0 | UsbMouse:0
I2cWatchdog:232087537 | I2cSlave:105050023 | I2cWatch:232087537 | I2cRecovery:1449 | KeyMatrix:228533939 | UsbReport:25296178 | Time:26803885 | UsbGeneric:3 | UsbBasic:25289511 | UsbMedia:14 | UsbSystem:0 | UsbMouse:0
I2cWatchdog:232090550 | I2cSlave:105051179 | I2cWatch:232090550 | I2cRecovery:1450 | KeyMatrix:228537304 | UsbReport:25296673 | Time:26804395 | UsbGener
GoogleAnalytics.xcframework
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/libGoogleAnalytics.a
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAITrackedViewController.h
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAI.h
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAILogger.h
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAIEcommerceProductAction.h
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAIEcommerceProduct.h
GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GoogleAnalytics.h
Packages/GoogleAnalytics
Packages/GoogleAnalytics/README.md
Packages/GoogleAnalytics/Package.swift
Packages/GoogleAnalytics/GoogleAnalytics.xcframework
Packages/GoogleAnalytics/GoogleAnalytics.xcframework/ios-i386_x86_64-simulator
Packages/GoogleAnalytics/GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/libGoogleAnalytics.a
Packages/GoogleAnalytics/GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers
Packages/GoogleAnalytics/GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAITrackedViewController.h
Packages/GoogleAnalytics/GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAI.h
Packages/GoogleAnalytics/GoogleAnalytics.xcframework/ios-i386_x86_64-simulator/Headers/GAILogger.h
jenkins@macmini42 print_arch % pwd
/Users/jenkins/joplunien/print_arch
jenkins@macmini42 print_arch % cat Sources/print_arch/main.swift
#if arch(arm64)
print("arm64")
#elseif arch(x86_64)
print("x86_64")
#else
print("something else")
#endif
Guideline 5.2.1 - Legal - Intellectual Property
Thank you for resubmitting your app. We have continued the review and would like to provide our findings.
The seller and company names associated with your app do not reflect the source of the information in your app or by a recognized institution, such as a hospital, insurance company, pharmacy, non-governmental organization, or university, as required by Guideline 5.2.1 of the https://developer.apple.com/app-store/review/guidelines/#intellectual-property">App Store Review Guidelines.
Next Steps
Your app must be published under a seller name and company name that reflects the institution name. If you have developed this app on behalf of a client, please advise your client to add you to the development team of their Apple Developer account. If your client does not yet have an Apple Developer account, they can enroll in the Apple Developer Program through the Apple Developer website.
public struct UIKitConfiguration<T: UIView> {
public let apply: (T) -> Void
public init(_ apply: @escaping (T) -> Void) {
self.apply = apply
}
}
import Foundation
class A {
init(completion: @escaping () -> Void) {}
}
class B {
init(a: A) {}
}
grafana:
container_name: grafana
image: grafana/grafana
restart: always
environment:
- VIRTUAL_HOST=grafana.plunien.com
- LETSENCRYPT_HOST=grafana.plunien.com
- LETSENCRYPT_EMAIL=plu@pqpq.de
ports:
- 3000:3000
@plu
plu / door.js
Created December 24, 2018 08:10
var request = require('request');
var Service, Characteristic;
module.exports = function(homebridge) {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
homebridge.registerAccessory('homebridge-httpdoor', 'Httpdoor', DoorAccessory);
}
function DoorAccessory(log, config) {