I hereby claim:
- I am dcow on github.
- I am dcow (https://keybase.io/dcow) on keybase.
- I have a public key ASAnKGCPssH60ii0G9d7R5MbpaNrVv2_8kNEAA-G65i94Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving). | |
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: en0::IO80211Interface::postMessage bssid changed | |
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: en0: 802.11d country code set to 'X0'. | |
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 144 149 153 157 161 165 | |
May 14 16:15:02 dcows-MacBook-Pro symptomsd[240]: -[NetworkAnalyticsEngine _writeJournalRecord:fromCellFingerprint:key:atLOI:ofKind:lqm:isFaulty:] Hashing of the primary key failed. Dropping the journal record. | |
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: IO80211AWDLPeerManager::setAwdlElectionMetric can't set election metric (60) ret=6 | |
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: AirPort: Link Down on awdl0. Reason 1 (Unspecified). | |
May 14 16:15:02 dcows-MacBook-Pro kernel[0]: IO80211AWDLPeerManager::setAwdlElectionMetric can't |
Flow 0.12 -> 1.0 migration guide | |
StateParceler -> KeyParceler | |
Flow.Dispatcher -> Dispatcher | |
flowDelegate.onNewIntent(Intent) -> Flow.onNewIntent(Intent, Activity) | |
flowDelegate.onResume()[other lifecycle] -> InternalLifecycleIntegration/InternalContextWrapper | |
Path -> "key" ... (not full story, keys are trivial now) | |
Flow.Traversal -> Traversal | |
Flow.TraversalCallback -> TraversalCallback | |
MortarScoper via FlowServicves |
"Embedded" Android
http://www.slideshare.net/opersys/embedded-android-workshop-with-nougat
... android history and platform overview
libc
Thanksgiving
for n in [1,2,4,8] | |
make -jn >jno 2>jne |
public class OverloadedConstructor { | |
String value; | |
public OverloadedConstructor(int value) { | |
this.value = Integer.toString(value); | |
} | |
public OverloadedConstructor(String value) { | |
this.value = value; |
package com.example.android.view; | |
import android.graphics.Canvas; | |
import android.graphics.ColorFilter; | |
import android.graphics.Paint; | |
import android.graphics.Rect; | |
import android.graphics.RectF; | |
import android.graphics.drawable.Drawable; | |
import android.util.DisplayMetrics; |