<html style="width:97%;height:100%;">
<head><script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script></head>
<body style="width:100%;height:100%;">
<div id="chart-container" style="width:100%;height:100%;">
<canvas id="chart" />
</div>
<script>var config = {"type":"bar","data":{"datasets":[{"label":"Cancelled","data":[49.0,45.0,25.0,16.0,36.0,32.0,22.0],"backgroundColor":"#F859AC","stack":"Stack 0"},{"label":"Paid","data":[17.0,22.0,33.0,23.0,4.0,35.0,20.0],"backgroundColor":"#11BFBF","stack":"Stack 0"},{"label":"Timed Out","data":[42.0,20.0,7.0,33.0,22.0,14.0,18.0],"backgroundColor":"#1C60DD","stack":"Stack 0"}],"labels":["1","2","3","4","5","6","7"]},"options":{"responsive":true,"maintainAspectRatio":false,"legend":{"position":"top"},"animation":{"animateScale":true},"scales":{"x":{"stacked":true},"y":{"stacked":true}}}};
window.onload = function() {
1. TrackError() goes to appcenter logs
2. Which do get flushed even when no error happens
3. Once per 3 seconds
So the exceptions are forwarded to the native code
- https://github.com/microsoft/appcenter-sdk-dotnet/blob/eae9b16913d322e08ea61ca9979f5c88024a85f2/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Crashes.cs#L89
- https://github.com/microsoft/appcenter-sdk-dotnet/blob/f99275c673516af1cc7d47c0ec91ae187ef966f2/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS/Crashes.cs#L76
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
[ | |
{ | |
"txid" : "70edfb7e1fd581a9b6c66bc2c964914939c75c3cf53750cfa494d93020eafd0e", | |
"vout" : 0 | |
} | |
] | |
{ | |
"2N8xphn3BkDjmEck9UEZP1mcUYyxkZuv3es" : 49 |
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
var yellowColor = Color.ParseColor("#f6c046"); | |
// set left icon color | |
Toolbar.NavigationIcon.SetTint(yellowColor); | |
// set text color | |
Toolbar.SetTitleTextColor(yellowColor); | |
Toolbar.SetSubtitleTextColor(yellowColor); |
- Search by app id
Process: <app id>
E AndroidRuntime: <app id>
E AndroidRuntime: android.runtime.JavaProxyThrowable:
E AndroidRuntime: FATAL EXCEPTION:
--------- beginning of crash
tombstone
keyword
- https://www.youtube.com/watch?v=JYrpEAz_A1U
- https://github.com/codepath/android_guides/wiki/Working-with-the-TextView
- http://androidkt.com/autosizing-textviews/
- https://www.journaldev.com/22399/android-auto-sizing-textview
- https://developer.android.com/guide/topics/ui/look-and-feel/autosizing-textview
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
pragma solidity ^0.4.23; | |
contract AdkSplitterForTwo | |
{ | |
event LogBeginSplit(); | |
event LogEndSplit(); | |
event LogSamePersonRevert(); | |
event LogTransferToFirstReceiverBegin(); |
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
#define KINDOF_CAST(arg) ((__kindof typeof(arg))(arg)) | |
// By Scherbinin Anatoly from the cocoa chat ("Какао-чат: Cocoa, Xcode, objective C") |
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
/****************************************************************************** | |
Online C++ Compiler. | |
Code, Compile, Run and Debug C++ program online. | |
Write your code in this editor and press "Run" button to compile and execute it. | |
*******************************************************************************/ | |
#include <iostream> |
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
function confirmEtherTransaction(txHash, confirmations = 10) { | |
setTimeout(async () => { | |
// Get current number of confirmations and compare it with sought-for value | |
const trxConfirmations = await getConfirmations(txHash) | |
console.log('Transaction with hash ' + txHash + ' has ' + trxConfirmations + ' confirmation(s)') | |
if (trxConfirmations >= confirmations) { | |
// Handle confirmation event according to your business logic |
NewerOlder