https://developer.github.com/early-access/graphql/explorer/
query {
viewer {
login
name
pullRequests(last: 10) {
totalCount
edges {
https://developer.github.com/early-access/graphql/explorer/
query {
viewer {
login
name
pullRequests(last: 10) {
totalCount
edges {
| /i(?:P(?:hone|od|ad)|Book|Mac|Cloud)/.exec("Apple iPhone 7") |
| (function(url) { | |
| // Create a new `Image` instance | |
| var image = new Image(); | |
| image.onload = function() { | |
| // Inside here we already have the dimensions of the loaded image | |
| var style = [ | |
| // Hacky way of forcing image's viewport using `font-size` and `line-height` | |
| 'font-size: 1px;', | |
| 'line-height: ' + this.height + 'px;', |
| { | |
| "sourceSpace": "XXX", | |
| "destinationSpace": "YYY", | |
| "sourceDeliveryToken": "AAA", | |
| "managementToken": "ZZZ", | |
| "syncTokenDir": "/tmp/contentful-sync", | |
| "rateLimit": 1, | |
| "rateLimitPeriod": 5000 | |
| } |
| void successfulAsserts(int x) { | |
| assert(true); | |
| assert(x != null); | |
| assert(x == 1); | |
| int foo = 1; | |
| assert(foo == 1); | |
| } | |
| void failingAssert() { | |
| assert(false); |
| // NOTE: The preferred way is to install lcov and use command `lcov --summary path/to/lcov.info` | |
| // Use this script only if you can't install lcov on your platform. | |
| // Usage: dart coverage.dart path/to/lcov.info | |
| import 'dart:io'; | |
| void main(List<String> args) async { | |
| final lcovFile = args[0]; | |
| final lines = await File(lcovFile).readAsLines(); |
| [✓] Flutter (Channel master, v0.10.2-pre.25, on Linux, locale en_US.UTF-8) | |
| • Flutter version 0.10.2-pre.25 at /home/antti/tools/flutter | |
| • Framework revision 0edbe726a1 (3 hours ago), 2018-10-22 10:29:00 -0700 | |
| • Engine revision 58cdd53f90 | |
| • Dart version 2.1.0-dev.7.1.flutter-b99bcfd309 | |
| [✓] Android toolchain - develop for Android devices (Android SDK 28.0.3) | |
| • Android SDK at /home/antti/Android/Sdk | |
| • Android NDK location not configured (optional; useful for native profiling support) | |
| • Platform android-28, build-tools 28.0.3 |
| #!/bin/sh | |
| # Project size evaluator for Flutter Create contest 2019. | |
| # More info: https://flutter.io/create | |
| MAX_SIZE=5120 | |
| SIZE=`find . -name "*.dart" | xargs cat | wc -c` | |
| if [ $SIZE -gt $MAX_SIZE ]; |
| # STEP 1 | |
| # To change non-root commit | |
| git rebase -i f154548^ | |
| # Alternatively, to change the root commit | |
| git rebase -i --root | |
| # STEP 2 | |
| # edit the commit you want to change by changing the line | |
| pick f154548 This is a commit message |
| #!/bin/sh | |
| adb shell setprop log.tag.Fabric DEBUG | |
| adb shell setprop log.tag.CrashlyticsCore DEBUG | |
| adb logcat -s flutter Fabric CrashlyticsCore FirebaseApp libcrashlytics FlutterCrashlytics |