This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iPad4 Logs - sleep and wake - won't reconnect | |
default 20:03:02.201749+0100 UniversalControl 49292: Received event ID 'SYNC', XID 0x7DEFA421, 1 keys, from ri6a5ab08706 | |
default 20:03:02.204350+0100 UniversalControl IDS AE68CF68: Receive Message: clock: '[A9E91148: 5, AE68CF68: 8]', config: [S&R: '1BDE37E5', V: ''], connDevices: [S: '4FC946A0', R: '815C0AAA', V: ''], device: [S: 'FBC83C04', R: '64BAC239', V: ''], displayLayout: [S: 'BE77F54E', R: 'E5B604C6', V: ''], srcDevice: [S&R: '00000000', V: ''], syncDevices: [S&R: '94BE4528', V: ''] | |
default 20:03:02.204528+0100 UniversalControl IDS AE68CF68: Merge sync clock: [A9E91148: 5, AE68CF68: 7] -> [A9E91148: 5, AE68CF68: 8] | |
default 20:03:02.205691+0100 UniversalControl IDS AE68CF68/SYNC: Create Message (Barrier) | |
default 20:03:02.205890+0100 UniversalControl IDS AE68CF68/SYNC: Sending Message: broadcast, local=5->5, remote=7->8 | |
default 20:03:02.206485+0100 UniversalControl IDS AE68CF68/SYNC: Send 'broadcast', timeout=10.00s | |
default 20:03:02.206593+0100 UniversalCo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iPad 4 Logs - Successfully Connecting | |
default 20:03:02.201749+0100 UniversalControl 49292: Received event ID 'SYNC', XID 0x7DEFA421, 1 keys, from ri6a5ab08706 | |
default 20:03:02.204350+0100 UniversalControl IDS AE68CF68: Receive Message: clock: '[A9E91148: 5, AE68CF68: 8]', config: [S&R: '1BDE37E5', V: ''], connDevices: [S: '4FC946A0', R: '815C0AAA', V: ''], device: [S: 'FBC83C04', R: '64BAC239', V: ''], displayLayout: [S: 'BE77F54E', R: 'E5B604C6', V: ''], srcDevice: [S&R: '00000000', V: ''], syncDevices: [S&R: '94BE4528', V: ''] | |
default 20:03:02.204528+0100 UniversalControl IDS AE68CF68: Merge sync clock: [A9E91148: 5, AE68CF68: 7] -> [A9E91148: 5, AE68CF68: 8] | |
default 20:03:02.205691+0100 UniversalControl IDS AE68CF68/SYNC: Create Message (Barrier) | |
default 20:03:02.205890+0100 UniversalControl IDS AE68CF68/SYNC: Sending Message: broadcast, local=5->5, remote=7->8 | |
default 20:03:02.206485+0100 UniversalControl IDS AE68CF68/SYNC: Send 'broadcast', timeout=10.00s | |
default 20:03:02.206593+0100 UniversalControl ID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Switching on iPad Mini 6 - causes Air4 to disconnect immediately: | |
default 23:45:46.160490+0100 UniversalControl IDS A9E91148: Device Changed [AdvData Attrs RSSI] SF <BLE DuetSync WiFiP2P Owner ApplePay LocalDevice>, AL Screen(7) | |
default 23:45:52.131831+0100 UniversalControl IDS 09284383: Device Found SF <BLE Owner ApplePay LocalDevice>, Md iPad14,2, SV 340, AL Unknown(0) | |
default 23:45:52.148940+0100 UniversalControl IDS A9E91148/SYNC: Skipping Message Send: broadcast, local=11, remote=9 | |
default 23:46:02.203615+0100 UniversalControl IDS 09284383: Device Found SF <iWiFi DuetSync Owner>, Md iPad14,2, SV 360.4, AL Unknown(0) | |
default 23:46:16.939361+0100 UniversalControl P2P A9E91148/FDF9: Skipping idle timeout due to connection assertions (1) | |
default 23:46:24.980106+0100 UniversalControl Stream-50085: Abort reads: kConnectionErr (Read EOF) | |
default 23:46:24.980155+0100 UniversalControl 50085: ### Receive failed: kConnectionErr (Read EOF) | |
default 23:46:24.980197+0100 UniversalControl 50085: ### Server error: kNetw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on iPad | |
1) Turn on Cursor and Keyboard on iPad | |
2) Turn iPad off | |
on MacbookPro | |
1) Turn off UniversalControl | |
2) Kill UniversalControlProcess | |
3) Turn on UniversalControl | |
on iPad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
API_KEY = 'xxx' | |
SECRET_KEY = 'xxx' | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'cryptocompare' | |
gem 'binance-ruby' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'cryptocompare' | |
gem 'binance-ruby' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I'm trying to switch from :dalli_store to :mem_cache_store. | |
With :mem_cache_store, I get this: | |
``` | |
Rails.cache.fetch("zone#{zone.id}_latest_event") do | |
Event.where(zone: zone).desc(:starts_at).for_recording_create.limit(1).first | |
end | |
=> nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# frozen_string_literal: true | |
require_relative '../lib/xanview_resolve' | |
# Class to rsync Xanview timeagent/deploy code to various Xanview hosts | |
class XanviewRsyncFrom | |
def initialize | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# upnpc -l | |
upnpc : miniupnpc library test client. (c) 2005-2014 Thomas Bernard | |
Go to http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ | |
for more information. | |
List of UPNP devices found on the network : | |
desc: http://192.168.1.1:58528/rootDesc.xml | |
st: urn:schemas-upnp-org:device:InternetGatewayDevice:1 | |
Found valid IGD : http://192.168.1.1:58528/ctl/IPConn | |
Local LAN ip address : 192.168.1.48 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Anonymous UUID: 5295C8C7-5647-A0EB-9904-334716CE48E1 | |
Fri Oct 26 16:09:08 2018 | |
*** Panic Report *** | |
panic(cpu 0 caller 0xffffff7f892e85a8): nvme: "Fatal error occurred. CSTS=0x1 | |
. FW Revision=2B6QCXP7\n"@/BuildRoot/Library/Caches/com.apple.xbs/Sources/IONVMeFamily/IONVMeFamily-387.201.1/IONVMeController.cpp:5307 | |
Backtrace (CPU 0), Frame : Return Address | |
0xffffffa3c7f3ba10 : 0xffffff80065aca1d | |
0xffffffa3c7f3ba60 : 0xffffff80066e6b13 |
NewerOlder